/* ==========================================================================
   Public site: header, footer, hero, tracking, sections
   ========================================================================== */

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 18, 32, 0.96);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 24px;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    color: #c7d1e2; font-size: 0.92rem; font-weight: 500;
    padding: 9px 14px; border-radius: 6px; transition: color .15s, background .15s;
}
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(255,255,255,.06); text-decoration: none; }

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

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .2s; }

/* Mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(11,18,32,.6); opacity: 0; visibility: hidden; transition: .25s; z-index: 200; }
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
    position: fixed; top: 0; right: 0; height: 100%; width: 300px; max-width: 85vw;
    background: var(--navy-2); z-index: 201; transform: translateX(100%);
    transition: transform .28s ease; padding: 24px; overflow-y: auto;
    box-shadow: -20px 0 50px rgba(0,0,0,.3);
}
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.drawer__close { background: none; border: 0; color: #fff; font-size: 1.6rem; cursor: pointer; line-height: 1; }
.drawer nav a { display: block; color: #c7d1e2; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-weight: 500; }
.drawer nav a:hover { color: var(--gold); text-decoration: none; }
.drawer .btn { margin-top: 20px; }

/* Hero */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--navy); }
/* Hero trust badges */
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.88rem; color: #cdd6e4; font-weight: 500; }
.hero__trust svg { color: var(--gold); }

/* Reusable media frame */
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Coverage media with floating live panel */
.coverage-media { position: relative; margin-bottom: 28px; }
.coverage-media > img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.coverage-panel { background: rgba(16,27,45,.92); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 20px; backdrop-filter: blur(6px); }
.coverage-panel--float { position: absolute; left: 20px; right: 20px; bottom: -28px; }
.coverage-panel__head { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: #9fb0c9; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.dot-live { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(32,166,106,.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(32,166,106,.2); } 50% { box-shadow: 0 0 0 7px rgba(32,166,106,.05); } }
.coverage-lane { display: grid; grid-template-columns: 1fr auto 1fr auto; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: .85rem; }
.coverage-lane:last-child { border-bottom: 0; }
.coverage-lane__from, .coverage-lane__to { color: #e6ecf4; font-weight: 600; }
.coverage-lane__to { text-align: right; }
.coverage-lane__line { color: var(--gold); }
.coverage-lane__status { font-size: .68rem; color: var(--gold-bright); background: rgba(242,169,0,.12); padding: 3px 8px; border-radius: 999px; white-space: nowrap; }

/* Partner chips */
.partner-chip { font-weight: 700; color: var(--muted); font-size: 1.05rem; letter-spacing: .02em; opacity: .8; }

/* Process steps with connector */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.process-step { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; }
.process-step__num { width: 40px; height: 40px; border-radius: 10px; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-weight: 800; margin-bottom: 14px; }
.process-step h3 { font-size: 1.05rem; }
.process-step p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* Split feature rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split + .split { margin-top: 64px; }
.split--reverse .split__media { order: 2; }

/* Contact info tiles */
.contact-tile { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-tile:last-child { border-bottom: 0; }
.contact-tile__icon { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 10px; background: rgba(242,169,0,.12); color: var(--gold); display: grid; place-items: center; }
.contact-tile strong { display: block; }
.contact-tile span { color: var(--muted); font-size: 0.92rem; }

@media (max-width: 900px) {
    .process-grid { grid-template-columns: 1fr 1fr; }
    .split, .split--reverse .split__media { grid-template-columns: 1fr; order: 0; }
}
@media (max-width: 560px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* About highlights list */
.about-highlights { display: flex; flex-direction: column; gap: 12px; }
.about-highlight { display: flex; align-items: center; gap: 12px; font-size: 0.98rem; color: var(--text); }
.about-highlight svg { flex: 0 0 auto; color: var(--gold); background: rgba(242,169,0,.12); padding: 8px; width: 36px; height: 36px; border-radius: 9px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; }
.hero__inner { position: relative; z-index: 2; padding: 96px 0 120px; max-width: 720px; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.75rem); margin-bottom: 20px; }
.hero p { font-size: 1.2rem; color: #dbe3ef; max-width: 560px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Tracking widget */
.track-widget {
    background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    padding: 28px; color: var(--text);
}
.track-widget--overlap { margin-top: -64px; position: relative; z-index: 5; }
.track-widget h3 { margin-bottom: 6px; }
.track-widget .sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }
.track-form { display: flex; gap: 12px; }
.track-form .input { font-size: 1.05rem; padding: 15px 16px; }
.track-result { margin-top: 18px; }

/* Service cards */
.service-card { display: block; padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); transition: .2s; height: 100%; color: inherit; }
.service-card:hover { text-decoration: none; box-shadow: var(--shadow); transform: translateY(-3px); border-color: #d3dae4; }
.service-card__icon { width: 48px; height: 48px; border-radius: 10px; background: var(--navy); color: var(--gold); display: grid; place-items: center; margin-bottom: 16px; }
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { color: var(--navy); margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.service-card__meta { margin-top: 14px; font-size: 0.85rem; color: var(--gold); font-weight: 600; }

/* Feature list */
.feature { display: flex; gap: 16px; }
.feature__icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 10px; background: rgba(242,169,0,.14); color: var(--gold); display: grid; place-items: center; }
.feature h3 { margin-bottom: 4px; font-size: 1.1rem; }
.feature p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.section--navy .feature p { color: #9fb0c9; }

/* Stats */
.stat-item { text-align: center; }
.stat-item .num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--gold); line-height: 1; }
.stat-item .label { margin-top: 8px; color: #9fb0c9; font-size: 0.95rem; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--navy-2), var(--navy)); border-radius: var(--radius-lg); padding: 56px; text-align: center; color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #b9c4d6; max-width: 560px; margin: 0 auto 28px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FAQ accordion */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.accordion__item + .accordion__item { border-top: 1px solid var(--border); }
.accordion__q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 24px; font-size: 1.02rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.accordion__q .chev { transition: transform .2s; flex: 0 0 auto; color: var(--muted); }
.accordion__item.open .chev { transform: rotate(180deg); }
.accordion__a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.accordion__a-inner { padding: 0 24px 20px; color: var(--muted); }

/* Footer — minimal, professional */
.site-footer { background: var(--navy); color: #9fb0c9; padding: 32px 0; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 20px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: #b5c1d6; font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.84rem; align-items: center; }
.footer-meta { display: flex; align-items: center; gap: 16px; }
.footer-meta a { color: #8093ad; }
.footer-meta a:hover { color: var(--gold); text-decoration: none; }
.footer-social { display: inline-flex; gap: 8px; margin-left: 4px; }
.footer-social a { width: 30px; height: 30px; border-radius: 7px; background: rgba(255,255,255,.06); display: grid; place-items: center; }
.footer-social a:hover { background: var(--gold); color: var(--navy); }

/* Page hero (interior) */
.page-hero { background: var(--navy); color: #fff; padding: 72px 0; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #b9c4d6; max-width: 620px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 0.85rem; color: #8fa0ba; margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-bright); }

@media (max-width: 980px) {
    .main-nav, .header-actions .btn { display: none; }
    .nav-toggle { display: block; }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .cta-band { padding: 40px 24px; }
}
@media (max-width: 640px) {
    .section { padding: 56px 0; }
    .track-form { flex-direction: column; }
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .footer-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero__inner { padding: 64px 0 88px; }
    .coverage-panel--float { position: static; margin-top: 16px; left: auto; right: auto; }
    .coverage-media { margin-bottom: 0; }
}
