:root {
  --navy: #071a33;
  --navy-2: #0b2444;
  --navy-3: #102f58;
  --blue: #1f63b7;
  --blue-2: #2d78cb;
  --sky: #dcecff;
  --ink: #142033;
  --muted: #657186;
  --line: #dfe5ed;
  --soft: #f3f6f9;
  --white: #ffffff;
  --success: #1d9b59;
  --shadow: 0 24px 60px rgba(5, 25, 50, .16);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; background: #fff; color: #000; padding: 10px 14px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.emergency-bar { background: #041225; color: #d9e8fb; font-size: .82rem; border-bottom: 1px solid rgba(255,255,255,.09); }
.emergency-bar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.emergency-bar__actions { display: flex; gap: 24px; }
.contact-link { text-decoration: none; font-weight: 700; }
.contact-link:hover { color: #fff; }
.contact-label { font-weight: 500; color: #9bb5d6; }

.site-header { position: absolute; z-index: 100; top: 38px; left: 0; right: 0; color: #fff; }
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: grid; place-items: center; width: 116px; height: 72px; padding: 6px 10px; background: #fff; border-radius: 12px; box-shadow: 0 16px 30px rgba(0,0,0,.17); }
.brand img { width: 92px; height: 58px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 27px; font-size: .92rem; font-weight: 650; }
.primary-nav a { text-decoration: none; color: #dce8f7; }
.primary-nav a:hover { color: #fff; }
.primary-nav .nav-cta { padding: 11px 18px; color: #fff; background: var(--blue); border-radius: 999px; box-shadow: 0 8px 25px rgba(31,99,183,.3); }
.nav-toggle { display: none; width: 46px; height: 42px; padding: 9px; border: 1px solid rgba(255,255,255,.25); border-radius: 9px; background: rgba(255,255,255,.06); }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: #fff; }

.hero { position: relative; overflow: hidden; min-height: 745px; color: #fff; background:
  radial-gradient(circle at 76% 35%, rgba(41,111,194,.28), transparent 25%),
  linear-gradient(120deg, #06172d 0%, #0b223e 58%, #102e52 100%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 95px; background: linear-gradient(to bottom, transparent, rgba(0,0,0,.14)); }
.hero-grid-overlay { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to right, transparent, #000 35%, #000); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; min-height: 745px; padding-top: 128px; padding-bottom: 70px; }
.eyebrow, .section-kicker { margin: 0 0 12px; color: var(--blue); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { color: #9dc8f8; }
.eyebrow span { display: inline-block; width: 34px; height: 2px; margin-right: 10px; vertical-align: middle; background: var(--blue-2); }
.hero h1 { max-width: 740px; margin: 0; font-size: clamp(3rem, 6vw, 5.55rem); line-height: .96; letter-spacing: -.055em; }
.hero__strapline { margin: 23px 0 9px; color: #83b8f3; font-size: clamp(1.15rem, 2.2vw, 1.55rem); font-weight: 800; }
.hero__intro { max-width: 650px; margin: 0; color: #d7e2ef; font-size: 1.08rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.button { min-height: 64px; display: inline-flex; align-items: center; gap: 13px; padding: 12px 20px; border: 1px solid transparent; border-radius: 11px; text-decoration: none; line-height: 1.25; font-size: .83rem; font-weight: 650; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 13px 30px rgba(0,0,0,.2); }
.button strong { font-size: .96rem; }
.button__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.18); font-size: 1rem; }
.button--primary { color: #fff; background: var(--blue); }
.button--whatsapp { color: #fff; background: var(--success); }
.button--white { color: var(--navy); background: #fff; }
.button--outline-light { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }
.hero__note { max-width: 670px; margin: 15px 0 0; color: #9eb2ca; font-size: .77rem; }

.hero__visual { position: relative; min-height: 490px; }
.route-art { position: absolute; z-index: 0; width: 142%; max-width: none; left: -34%; top: -13%; opacity: .9; }
.logo-panel { position: absolute; z-index: 2; width: min(100%, 490px); right: 0; top: 46px; padding: 23px; border: 1px solid rgba(255,255,255,.17); border-radius: 26px; background: rgba(255,255,255,.96); box-shadow: 0 30px 80px rgba(0,0,0,.34); transform: rotate(1.3deg); }
.logo-panel::before { content: "AOG PRIORITY"; position: absolute; top: 16px; right: 18px; z-index: 2; padding: 7px 10px; color: #fff; background: var(--blue); border-radius: 99px; font-size: .62rem; font-weight: 850; letter-spacing: .14em; }
.logo-panel img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.response-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; background: rgba(5,21,42,.92); box-shadow: 0 18px 40px rgba(0,0,0,.3); backdrop-filter: blur(12px); }
.response-card strong { display: block; color: #fff; }
.response-card span { display: block; color: #a9bdd5; font-size: .72rem; line-height: 1.35; }
.response-card--time { left: -22px; top: 250px; padding: 15px 18px; }
.response-card--time strong { color: #79b8ff; font-size: 1.65rem; }
.response-card--time span { max-width: 92px; }
.response-card--direct { right: -22px; bottom: 9px; padding: 15px 17px; }
.response-card__dot { width: 10px; height: 10px; border-radius: 50%; background: #41d286; box-shadow: 0 0 0 7px rgba(65,210,134,.13); }

.feature-strip { position: relative; z-index: 10; margin-top: -52px; }
.feature-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.feature-card { display: flex; align-items: center; gap: 17px; min-height: 118px; padding: 23px; color: #fff; background: var(--navy); border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.feature-card:first-child { border-radius: 14px 0 0 14px; }
.feature-card:last-child { border-radius: 0 14px 14px 0; }
.feature-card__number { display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; color: #fff; background: var(--blue); border-radius: 50%; font-size: .75rem; font-weight: 800; }
.feature-card h2 { margin: 0 0 4px; font-size: 1rem; }
.feature-card p { margin: 0; color: #aebed2; font-size: .83rem; }

.section { padding: 104px 0; }
.section--intro { padding-top: 128px; }
.section--muted { background: var(--soft); }
.section--dark { color: #fff; background: linear-gradient(130deg, var(--navy), #0e2c50); }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.split h2, .section-heading h2, .coverage-copy h2, .faq-intro h2, .carry-panel h2, .personal-service h2, .final-cta h2 { margin: 0; font-size: clamp(2.15rem, 4vw, 3.7rem); line-height: 1.05; letter-spacing: -.045em; }
.prose { font-size: 1.05rem; }
.prose p:first-child { margin-top: 0; }
.prose p:last-child { margin-bottom: 0; }
.section-heading { display: flex; justify-content: space-between; gap: 55px; align-items: end; margin-bottom: 42px; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); }
.section-heading--light > p { color: #b6c6d8; }
.section-kicker--light { color: #83b8f3; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(9,34,67,.055); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(9,34,67,.1); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; min-width: 48px; height: 38px; padding: 0 10px; color: var(--blue); background: #e8f2fd; border-radius: 9px; font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.service-card h3 { margin: 20px 0 9px; font-size: 1.13rem; line-height: 1.25; }
.service-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.carry-grid { display: grid; grid-template-columns: 1.22fr .78fr; gap: 25px; align-items: stretch; }
.carry-panel { padding: 45px; border-radius: 24px; }
.carry-panel--primary { color: #fff; background: linear-gradient(140deg, #0b2749, #123e70); box-shadow: var(--shadow); }
.carry-panel--limits { border: 1px solid #e2e7ee; background: #f8fafc; }
.carry-panel h3 { margin: 12px 0 18px; font-size: 1.55rem; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 22px; padding: 0; margin: 30px 0; list-style: none; }
.check-list li { position: relative; padding-left: 25px; color: #e2ebf6; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #76b7ff; font-weight: 900; }
.carry-panel--primary > p:last-child { color: #aebed2; font-size: .88rem; }
.limit-badge { display: inline-block; padding: 6px 10px; color: #8a4e08; background: #fff0d9; border-radius: 99px; font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.carry-panel--limits p { color: var(--muted); }

.process-grid { counter-reset: process; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; padding: 0; margin: 48px 0 0; list-style: none; }
.process-grid li { position: relative; min-height: 255px; padding: 26px 22px; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; background: rgba(255,255,255,.045); }
.process-grid li::after { content: ""; position: absolute; top: 44px; left: calc(100% + 2px); width: 10px; height: 1px; background: rgba(255,255,255,.3); }
.process-grid li:last-child::after { display: none; }
.process-grid li > span { display: grid; place-items: center; width: 39px; height: 39px; color: #fff; background: var(--blue); border-radius: 50%; font-weight: 850; }
.process-grid h3 { margin: 22px 0 10px; font-size: 1.02rem; }
.process-grid p { margin: 0; color: #b5c5d6; font-size: .84rem; }

.coverage-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 55px; align-items: center; }
.coverage-copy > p:not(.section-kicker) { max-width: 700px; color: var(--muted); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.tag-cloud span { padding: 8px 12px; color: #224161; background: #edf4fb; border: 1px solid #d9e7f6; border-radius: 999px; font-size: .82rem; font-weight: 650; }
.handover-card { padding: 34px; border: 1px solid #cfe0f4; border-radius: 20px; background: #eff7ff; }
.handover-card__icon { display: grid; place-items: center; width: 44px; height: 44px; color: #fff; background: var(--blue); border-radius: 12px; font-size: 1.4rem; font-weight: 800; }
.handover-card h3 { margin: 21px 0 12px; font-size: 1.35rem; }
.handover-card p { color: #52657a; }
.handover-card p:last-child { margin-bottom: 0; }

.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.client-grid div { padding: 19px 20px; color: #24415f; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: 8px; font-weight: 700; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 15px; }
.benefit-grid strong { color: var(--blue); font-size: 1.55rem; }
.benefit-grid h3 { margin: 12px 0 7px; }
.benefit-grid p { margin: 0; color: var(--muted); }

.personal-service { padding: 75px 0; color: #fff; background: linear-gradient(115deg, var(--blue), #154b89); }
.personal-service__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.personal-service p:not(.section-kicker) { color: #e0ecfa; }

.faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 25px; }
.faq-intro > p:not(.section-kicker) { color: var(--muted); }
.text-link { color: var(--blue); font-weight: 800; text-decoration: none; cursor: pointer; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; cursor: pointer; padding: 22px 45px 22px 0; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 2px; top: 17px; display: grid; place-items: center; width: 31px; height: 31px; color: var(--blue); background: #edf4fb; border-radius: 50%; font-size: 1.2rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: -4px 45px 22px 0; color: var(--muted); }

.final-cta { padding: 82px 0; color: #fff; background: linear-gradient(125deg, #06182f, #0c315b); }
.final-cta__inner { display: flex; justify-content: space-between; gap: 60px; align-items: center; }
.final-cta__inner > div:first-child { max-width: 650px; }
.final-cta__inner p:not(.section-kicker) { color: #c8d7e8; }
.final-cta__actions { display: flex; flex-direction: column; min-width: 290px; gap: 10px; }

.site-footer { padding: 58px 0 90px; color: #b7c6d8; background: #041225; font-size: .88rem; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr 1fr .7fr; gap: 45px; }
.footer-brand img { width: 128px; height: 80px; padding: 7px; object-fit: contain; background: #fff; border-radius: 9px; }
.footer-brand strong { color: #fff; }
.site-footer h2 { margin: 0 0 12px; color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.mobile-action-bar { display: none; }

.legal-page { min-height: 100vh; background: var(--soft); }
.legal-header { padding: 18px 0; background: var(--navy); }
.legal-header__inner { display: flex; align-items: center; justify-content: space-between; }
.legal-header img { width: 115px; height: 72px; padding: 7px; object-fit: contain; background: #fff; border-radius: 9px; }
.legal-header a { color: #fff; text-decoration: none; font-weight: 700; }
.legal-content { max-width: 850px; margin: 55px auto; padding: 45px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.legal-content h1 { margin-top: 0; font-size: 2.6rem; }
.legal-content h2 { margin-top: 34px; }
.legal-content p, .legal-content li { color: #536174; }
.legal-notice { padding: 14px 16px; color: #784b0d; background: #fff3dc; border-left: 4px solid #e6a13a; }

@media (max-width: 1040px) {
  .primary-nav { gap: 17px; font-size: .83rem; }
  .hero__grid { gap: 35px; }
  .service-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid li::after { display: none; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .emergency-bar__inner > span { display: none; }
  .emergency-bar__inner { justify-content: center; }
  .site-header { top: 38px; }
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; top: 83px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; color: #fff; background: rgba(4,18,37,.98); border: 1px solid rgba(255,255,255,.13); border-radius: 13px; box-shadow: 0 25px 50px rgba(0,0,0,.3); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px 13px; }
  .primary-nav .nav-cta { margin-top: 4px; text-align: center; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; padding-top: 155px; padding-bottom: 112px; }
  .hero__copy { max-width: 720px; }
  .hero__visual { min-height: 475px; margin-top: -20px; }
  .logo-panel { left: 50%; right: auto; transform: translateX(-50%) rotate(1deg); }
  .response-card--time { left: 2%; }
  .response-card--direct { right: 2%; }
  .feature-strip { margin-top: -60px; }
  .feature-strip__grid { grid-template-columns: 1fr; gap: 8px; }
  .feature-card, .feature-card:first-child, .feature-card:last-child { border-radius: 12px; }
  .section { padding: 80px 0; }
  .section--intro { padding-top: 100px; }
  .split, .carry-grid, .coverage-grid, .personal-service__inner, .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .faq-intro { position: static; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta__inner { display: block; }
  .final-cta__actions { margin-top: 28px; min-width: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  body { padding-bottom: 64px; }
  .emergency-bar__actions { gap: 12px; font-size: .74rem; }
  .contact-label { display: none; }
  .brand { width: 98px; height: 62px; }
  .brand img { width: 80px; height: 49px; }
  .nav-wrap { min-height: 78px; }
  .hero__grid { padding-top: 136px; padding-bottom: 105px; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .hero__actions, .final-cta__actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; justify-content: flex-start; }
  .hero__visual { min-height: 385px; }
  .logo-panel { width: 92%; top: 32px; padding: 16px; }
  .response-card--time { top: 226px; left: 0; }
  .response-card--direct { right: 0; bottom: 6px; }
  .feature-card { min-height: 105px; padding: 19px; }
  .service-grid, .benefit-grid, .client-grid, .process-grid { grid-template-columns: 1fr; }
  .carry-panel { padding: 30px 24px; }
  .check-list { grid-template-columns: 1fr; }
  .section { padding: 67px 0; }
  .section-heading h2, .coverage-copy h2, .faq-intro h2, .carry-panel h2, .personal-service h2, .final-cta h2, .split h2 { font-size: 2.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom a { display: inline-block; margin-top: 8px; }
  .mobile-action-bar { position: fixed; z-index: 500; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; height: 64px; background: #fff; box-shadow: 0 -8px 24px rgba(0,0,0,.14); }
  .mobile-action-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; font-weight: 850; }
  .mobile-action-bar a:first-child { color: #fff; background: var(--blue); }
  .mobile-action-bar a:last-child { color: #fff; background: var(--success); }
  .legal-content { margin: 25px auto; padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
