/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; padding: 16px 0; transition: background .25s ease, box-shadow .25s ease, padding .25s ease; }
.site-header.is-scrolled { padding: 10px 0; background: rgba(7,26,45,.88); box-shadow: 0 10px 35px rgba(0,0,0,.12); backdrop-filter: blur(18px); }
.site-header__inner { min-height: 56px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; min-width: 156px; }
.brand img { width: 164px; max-height: 42px; object-fit: contain; object-position: left center; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; padding: 6px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius-pill); }
.desktop-nav > a, .dropdown-toggle { padding: 10px 14px; border: 0; background: transparent; border-radius: var(--radius-pill); color: #fff; font-size: .9rem; font-weight: 600; cursor: pointer; }
.desktop-nav > a:hover, .dropdown-toggle:hover { background: rgba(255,255,255,.09); }
.product-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 14px); left: 0; width: 300px; padding: 10px; background: #fff; color: var(--text); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-soft); display: none; }
.product-dropdown.is-open .dropdown-menu { display: grid; }
.dropdown-menu a { display: grid; grid-template-columns: 40px 1fr; gap: 10px; align-items: center; padding: 12px; border-radius: 12px; }
.dropdown-menu a:hover { background: var(--surface-soft); }
.dropdown-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--blue-100); color: var(--blue-600); font-weight: 800; }
.dropdown-copy strong { display: block; font-size: .9rem; }
.dropdown-copy span { display: block; margin-top: 3px; font-size: .75rem; color: var(--text-muted); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-login { color: #fff; font-size: .9rem; font-weight: 600; padding: 10px 6px; }
.nav-toggle { display: none; width: 46px; height: 46px; place-items: center; margin-left: auto; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; cursor: pointer; }
.nav-toggle__lines, .nav-toggle__lines::before, .nav-toggle__lines::after { width: 18px; height: 2px; background: currentColor; border-radius: 2px; content: ""; display: block; position: relative; }
.nav-toggle__lines::before { position: absolute; top: -6px; }
.nav-toggle__lines::after { position: absolute; top: 6px; }
.nav-drawer { position: fixed; inset: 0; z-index: 990; padding: 96px 20px 30px; background: var(--navy-950); color: #fff; overflow: auto; }
.nav-drawer[hidden] { display: none; }
.mobile-nav { display: grid; gap: 8px; }
.mobile-nav > a, .mobile-nav details > summary { padding: 14px 2px; font-size: 1.05rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.10); cursor: pointer; list-style: none; }
.mobile-nav details > summary::-webkit-details-marker { display: none; }
.mobile-products { display: grid; gap: 6px; padding: 8px 0 14px 14px; }
.mobile-products a { padding: 10px 0; color: rgba(255,255,255,.82); }
.mobile-actions { display: grid; gap: 10px; margin-top: 26px; }

/* Buttons */
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 20px; border: 1px solid transparent; border-radius: var(--radius-pill); font-size: .94rem; font-weight: 700; line-height: 1; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--pink-600); color: #fff; box-shadow: 0 12px 30px rgba(229,0,90,.26); }
.btn--primary:hover { background: var(--pink-500); }
.btn--navy { background: var(--navy-950); color: #fff; }
.btn--light { background: #fff; color: var(--navy-950); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.btn--outline { color: var(--navy-950); border-color: var(--border); background: #fff; }
.btn--sm { min-height: 42px; padding: 10px 16px; font-size: .86rem; }

/* Cards and badges */
.card { padding: 28px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.card--dark { background: var(--navy-900); color: #fff; border-color: rgba(255,255,255,.08); }
.card--soft { background: var(--surface-soft); box-shadow: none; }
.icon-chip { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--blue-100); color: var(--blue-600); }
.icon-chip svg { width: 26px; height: 26px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; border-radius: var(--radius-pill); font-size: .78rem; font-weight: 600; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pink-500); }
.metric { padding: 26px; border-radius: var(--radius-md); background: #fff; border: 1px solid var(--border); }
.metric strong { display: block; margin-bottom: 8px; font-size: clamp(1.8rem,3vw,2.6rem); letter-spacing: -.04em; color: var(--navy-950); }
.metric span { color: var(--text-muted); font-size: .88rem; }

/* Internal hero */
.hero-internal { position: relative; padding: 170px 0 88px; background: radial-gradient(circle at 70% 15%, rgba(41,87,255,.20), transparent 34%), linear-gradient(145deg, var(--navy-950), var(--navy-800)); color: #fff; overflow: hidden; }
.hero-internal::after { content: ""; position: absolute; inset: auto -10% -80px; height: 180px; background: #fff; border-radius: 50% 50% 0 0 / 30% 30% 0 0; opacity: .08; }
.hero-internal__content { position: relative; z-index: 1; max-width: 820px; margin-inline: auto; text-align: center; }
.hero-internal .lead { color: rgba(255,255,255,.72); }
.hero-internal .eyebrow { color: #fff; opacity: .7; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; align-items: stretch; }
.pricing-card { position: relative; display: flex; flex-direction: column; padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-card); }
.pricing-card--featured { background: linear-gradient(155deg, var(--navy-950), var(--navy-800)); color: #fff; transform: translateY(-10px); }
.pricing-card__badge { align-self: flex-start; margin-bottom: 22px; padding: 7px 10px; border-radius: var(--radius-pill); background: var(--pink-600); color: #fff; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.pricing-card__price { margin: 12px 0 20px; font-size: 1.05rem; font-weight: 700; color: var(--text-muted); }
.pricing-card--featured .pricing-card__price, .pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,.72); }
.feature-list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 12px; }
.feature-list li { position: relative; padding-left: 26px; font-size: .9rem; line-height: 1.5; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--pink-600); font-weight: 800; }
.pricing-card .btn { margin-top: auto; }
.billing-toggle { width: fit-content; display: flex; gap: 4px; margin: 0 auto 36px; padding: 5px; border: 1px solid var(--border); border-radius: var(--radius-pill); background: #fff; }
.billing-toggle button { border: 0; padding: 10px 16px; background: transparent; color: var(--text-muted); border-radius: var(--radius-pill); cursor: pointer; font-weight: 700; }
.billing-toggle button.is-active { background: var(--navy-950); color: #fff; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md); }
.comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; background: #fff; }
.comparison-table th, .comparison-table td { padding: 17px 18px; border-bottom: 1px solid var(--border); text-align: left; font-size: .9rem; }
.comparison-table th { background: var(--surface-soft); font-weight: 700; }

/* FAQ */
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 18px; background: #fff; overflow: hidden; }
.faq-button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; background: transparent; text-align: left; font-weight: 700; cursor: pointer; }
.faq-button::after { content: "+"; flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-soft); color: var(--navy-950); }
.faq-button[aria-expanded="true"]::after { content: "−"; }
.faq-panel { padding: 0 22px 20px; color: var(--text-muted); }
.faq-panel[hidden] { display: none; }

/* Forms */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: 14px 15px; background: #fff; color: var(--text); transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-400); box-shadow: 0 0 0 4px rgba(102,165,255,.12); outline: none; }
.field textarea { min-height: 150px; resize: vertical; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: var(--text-muted); }
.checkbox-row input { margin-top: 3px; }

/* Prefooter + Footer */
.prefooter-cta { margin-top: 20px; padding: 0 0 30px; background: var(--surface); }
.prefooter-cta__box { display: grid; grid-template-columns: 1.4fr auto; gap: 28px; align-items: center; padding: 48px; border-radius: var(--radius-lg); background: radial-gradient(circle at 85% 20%, rgba(242,10,104,.20), transparent 32%), linear-gradient(140deg, var(--navy-950), var(--navy-800)); color: #fff; overflow: hidden; }
.prefooter-cta__box p { max-width: 680px; color: rgba(255,255,255,.7); }
.prefooter-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.site-footer { padding: 70px 0 24px; background: var(--navy-950); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 42px; }
.footer-brand p { max-width: 330px; color: rgba(255,255,255,.62); font-size: .9rem; }
.footer-title { margin: 0 0 16px; font-size: .82rem; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.48); }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.76); }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.45); font-size: .78rem; }
.brand { padding: 7px 10px; border-radius: 14px; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.footer-brand .brand { width: fit-content; margin-bottom: 18px; }
