:root {
    --navy: #0a1830;
    --navy-2: #102446;
    --blue: #2563eb;
    --blue-2: #38bdf8;
    --teal: #0ea5a4;
    --emerald: #16a34a;
    --orange: #f97316;
    --amber: #f59e0b;
    --violet: #7c3aed;
    --text: #16243a;
    --muted: #61708a;
    --line: #dfe7f2;
    --white: #ffffff;
    --shell: #f7f8fb;
    --shadow: 0 24px 60px rgba(14, 31, 58, 0.12);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 18%),
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.06), transparent 20%),
        linear-gradient(180deg, #f8fafc 0%, #f6f8fb 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(10, 24, 48, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #7dd3fc;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(14, 165, 164, 0.14));
    border: 1px solid rgba(125, 211, 252, 0.24);
}

.brand-text {
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--white);
}

.brand-text span { color: #4cc9ff; }

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
}

.nav-dropdown {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: -18px;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
}

.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-caret {
    width: 10px;
    height: 10px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.72;
}

.nav-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 280px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(8, 22, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
}

.nav-menu strong {
    display: block;
    color: var(--white);
    font-size: 14px;
}

.nav-menu span {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn,
.btn-outline,
.btn-ghost,
.btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover,
.btn-outline:hover,
.btn-ghost:hover,
.btn-phone:hover { transform: translateY(-2px); }

.btn {
    padding: 15px 22px;
    color: var(--white);
    background: linear-gradient(135deg, #2563eb 0%, #0ea5a4 52%, #f59e0b 100%);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.2);
}

.btn-outline,
.btn-ghost,
.btn-phone {
    padding: 14px 22px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-ghost { background: rgba(255, 255, 255, 0.04); }

.btn-phone { background: rgba(255, 255, 255, 0.03); }

.phone-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-nav { display: none; }

.hero {
    padding: 68px 0 40px;
    background:
        radial-gradient(circle at left top, rgba(56, 189, 248, 0.2), transparent 28%),
        radial-gradient(circle at 78% 16%, rgba(249, 115, 22, 0.18), transparent 20%),
        linear-gradient(135deg, #08162a 0%, #11284d 54%, #14294c 100%);
    color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 30px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(94, 234, 212, 0.28);
    background: linear-gradient(135deg, rgba(14, 165, 164, 0.18), rgba(37, 99, 235, 0.16));
    color: #c6f8f2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    letter-spacing: -0.05em;
}

h1 {
    margin-top: 22px;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 0.98;
}

h1 span {
    background: linear-gradient(135deg, #67e8f9 0%, #60a5fa 32%, #fbbf24 68%, #fb7185 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    max-width: 620px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 600;
}

.hero-points div {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-points div::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--amber);
}

.hero-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.hero-media {
    position: relative;
    min-height: 420px;
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 24, 48, 0.14), rgba(10, 24, 48, 0.58));
}

.hero-panel {
    padding: 22px;
    background: linear-gradient(180deg, rgba(10, 24, 48, 0.84), rgba(16, 36, 70, 0.88));
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.panel-item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-label {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.panel-item strong {
    display: block;
    margin-top: 10px;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    color: var(--white);
}

.panel-item span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.5;
}

.section {
    padding: 72px 0 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.section-kicker {
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-top: 14px;
    font-size: clamp(34px, 4.8vw, 56px);
    line-height: 1.04;
}

.section-heading p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.benefits,
.faq-grid,
.link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: 24px;
    margin-top: 42px;
}

.card,
.faq,
.link-card,
.cta-band {
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff, #fffdf9);
    box-shadow: 0 16px 32px rgba(16, 42, 76, 0.06);
}

.card {
    padding: 28px;
}

.benefit-card {
    padding: 26px;
}

.benefit-card h3,
.faq h3,
.link-card h3,
.card h3 {
    font-size: 24px;
    line-height: 1.15;
}

.benefit-card p,
.faq p,
.link-card p,
.card p,
.card li {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.benefit-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 164, 0.06));
    color: var(--blue);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(245, 158, 11, 0.06));
    color: var(--orange);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(14, 165, 164, 0.05));
    color: var(--emerald);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
}

.stack {
    display: grid;
    gap: 18px;
}

.card ul {
    margin: 18px 0 0;
    padding-left: 18px;
}

.card li + li { margin-top: 10px; }

.service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.pill-link {
    padding: 10px 14px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
}

.faq {
    padding: 24px;
}

.faq h3 { font-size: 22px; }

.faq p { margin-top: 12px; }

.link-card {
    padding: 26px;
}

.link-card a {
    display: inline-flex;
    margin-top: 16px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
}

.cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 18px;
    align-items: center;
    padding: 26px 28px;
    margin-top: 44px;
    background:
        radial-gradient(circle at 16% 18%, rgba(56, 189, 248, 0.16), transparent 20%),
        radial-gradient(circle at 82% 38%, rgba(249, 115, 22, 0.16), transparent 18%),
        linear-gradient(135deg, #08172b, #12335b);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.08);
}

.cta-band h3 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
}

.cta-band p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.cta-box {
    min-width: 220px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.cta-box strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
}

.cta-box span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

.site-footer {
    margin-top: 24px;
    background:
        radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.12), transparent 18%),
        linear-gradient(180deg, #07172b, #0b203c);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.3fr) minmax(220px, 1fr) repeat(2, minmax(220px, 1fr));
    gap: 28px;
    align-items: start;
    padding: 38px 0 24px;
}

.footer-brand p,
.footer-col a,
.footer-col div {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.8;
}

.footer-brand {
    max-width: 320px;
}

.footer-contact a,
.footer-contact div {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.footer-contact {
    padding: 0;
}

.footer-contact strong {
    display: block;
    margin-bottom: 12px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
}

.footer-col a {
    display: inline-block;
}

.footer-title {
    margin-bottom: 12px;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

@media (max-width: 1080px) {
    .hero-grid,
    .content-grid,
    .benefits,
    .faq-grid,
    .link-grid,
    .footer-grid,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .nav,
    .nav-actions { display: none; }

    .mobile-nav { display: block; }

    .mobile-nav details { position: relative; }

    .mobile-nav summary {
        list-style: none;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.04);
        color: var(--white);
        cursor: pointer;
    }

    .mobile-nav summary::-webkit-details-marker { display: none; }

.mobile-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: 250px;
        display: grid;
        gap: 14px;
        padding: 18px;
        border-radius: 18px;
        background: rgba(8, 22, 42, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    color: var(--white);
}

.mobile-panel-group {
    display: grid;
    gap: 8px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-panel-group:first-child {
    padding-top: 0;
    border-top: none;
}

.mobile-panel-title {
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mobile-panel-group a {
    line-height: 1.45;
}

.hero-media,
.hero-media img { min-height: 320px; }
}

@media (max-width: 760px) {
    .hero-actions,
    .hero-points {
        flex-direction: column;
        align-items: flex-start;
    }

    .panel-grid { grid-template-columns: 1fr; }
    .card,
    .benefit-card,
    .faq,
    .link-card,
    .cta-band { padding: 22px; }
}
