.contact-modal[hidden] { display: none; }
.contact-modal { position: fixed; z-index: 10000; inset: 0; display: grid; place-items: center; padding: 20px; font-family: Inter, "Segoe UI", Arial, sans-serif; }
.contact-modal__backdrop { position: absolute; inset: 0; border: 0; background: rgba(3, 7, 16, .78); backdrop-filter: blur(12px); cursor: default; }
.contact-modal__panel { position: relative; width: min(560px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: clamp(24px, 4vw, 42px); border: 1px solid rgba(83, 214, 255, .3); border-radius: 24px; color: #f7f9ff; background: radial-gradient(circle at 90% 5%, rgba(64, 80, 255, .2), transparent 35%), #0d1424; box-shadow: 0 35px 100px rgba(0, 0, 0, .55); }
.contact-modal__close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: #fff; background: transparent; font-size: 24px; cursor: pointer; }
.contact-modal__eyebrow { margin: 0 0 12px; color: #58dff2; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-modal h2 { margin: 0; font-size: clamp(30px, 6vw, 48px); line-height: 1; letter-spacing: -.045em; }
.contact-modal__lead { margin: 16px 0 26px; color: #aab5ca; font-size: 14px; line-height: 1.6; }
.contact-modal__form { display: grid; gap: 17px; }
.contact-modal__field { display: grid; gap: 8px; }
.contact-modal__field span { color: #cbd4e4; font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.contact-modal input, .contact-modal textarea { width: 100%; border: 1px solid rgba(170, 195, 235, .2); border-radius: 12px; outline: 0; padding: 14px 15px; color: #fff; background: rgba(255,255,255,.045); font: 14px/1.4 inherit; resize: vertical; }
.contact-modal input:focus, .contact-modal textarea:focus { border-color: #58dff2; box-shadow: 0 0 0 3px rgba(88,223,242,.1); }
.contact-modal__submit { min-height: 52px; border: 1px solid rgba(88,223,242,.55); border-radius: 12px; color: #fff; background: linear-gradient(110deg, rgba(38,197,220,.25), rgba(100,71,255,.28)); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.contact-modal__submit:disabled { opacity: .55; cursor: wait; }
.contact-modal__status { min-height: 22px; margin: 0; color: #aab5ca; font-size: 13px; line-height: 1.5; }
.contact-modal__status[data-state="success"] { color: #70edbd; }
.contact-modal__status[data-state="error"] { color: #ffb1b8; }
.contact-modal__status a { color: inherit; font-weight: 700; }
body.contact-modal-open { overflow: hidden; }
@media(max-width: 520px) { .contact-modal { padding: 10px; }.contact-modal__panel { max-height: calc(100vh - 20px); border-radius: 18px; }.contact-modal__close { top: 9px; right: 9px; } }
