:root {
  --navy: #0f2f57;
  --blue: #1f6fb7;
  --blue-2: #eaf4ff;
  --gold: #c99a2e;
  --gold-2: #fff7df;
  --ink: #17324d;
  --muted: #5b6f82;
  --line: #d9e4ef;
  --white: #ffffff;
  --soft: #f7fbff;
  --shadow: 0 18px 45px rgba(15, 47, 87, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(31, 111, 183, 0.22);
}

.brand-small {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
}

.nav-links a {
  padding: 10px 9px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--blue-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 11px 22px rgba(31, 111, 183, 0.22);
}

.btn:hover {
  background: #195f9f;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.btn.is-loading::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 9px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn.gold {
  background: var(--gold);
  color: #1d2630;
  box-shadow: 0 11px 22px rgba(201, 154, 46, 0.25);
}

.btn.ghost {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 47, 87, 0.92) 0%, rgba(15, 47, 87, 0.76) 42%, rgba(15, 47, 87, 0.26) 100%),
    url("adw-hero.png") center / cover no-repeat;
}

.hero .section-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  width: min(720px, 100%);
  color: var(--white);
  padding: 48px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.1;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.35rem, 4.35vw, 4.05rem);
  letter-spacing: 0;
}

.hero p {
  width: min(680px, 100%);
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.audience-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(680px, 100%);
  margin-top: 22px;
}

.booking-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.booking-paths .path-card {
  min-height: 190px;
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.booking-paths .path-card span {
  color: var(--muted);
}

.booking-paths .path-card.business {
  background: var(--gold);
  color: #1d2630;
}

.booking-paths .path-card.business span {
  color: rgba(29, 38, 48, 0.76);
}

.path-card {
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.path-card:hover {
  background: rgba(255, 255, 255, 0.18);
}

.path-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
}

.path-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 650;
}

.path-card.business {
  background: var(--gold);
  color: #1d2630;
}

.path-card.business span {
  color: rgba(29, 38, 48, 0.76);
}

.trust-strip {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-item {
  padding: 26px 22px;
  background: var(--white);
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.65rem;
  line-height: 1;
}

.trust-item span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 650;
}

section,
.page-hero {
  padding: 86px 0;
}

.page-hero {
  background: linear-gradient(135deg, var(--navy), #174c84);
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.page-hero p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
  font-size: 1.12rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.compact-grid .card {
  min-height: 104px;
  display: flex;
  align-items: center;
}

.compact-grid .card h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 47, 87, 0.06);
}

.card.highlight {
  border-color: rgba(201, 154, 46, 0.55);
  background: linear-gradient(180deg, #ffffff, #fffaf0);
  box-shadow: var(--shadow);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue-2);
  color: var(--blue);
  margin-bottom: 20px;
}

.icon.gold {
  background: var(--gold-2);
  color: var(--gold);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul,
.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  margin-top: 10px;
}

.card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 46px;
  align-items: center;
}

.panel {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.stat strong {
  color: var(--blue);
  font-size: 1.7rem;
}

.stat span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.quote {
  font-size: 1.03rem;
}

.quote p {
  margin-top: 0;
}

.quote footer {
  color: var(--navy);
  font-weight: 850;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.price {
  margin: 18px 0 8px;
  color: var(--navy);
  font-weight: 900;
  font-size: 2.5rem;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

.pricing-card .btn {
  margin-top: auto;
}

.form {
  display: grid;
  gap: 14px;
}

.form.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

input[type="file"] {
  padding: 10px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 111, 183, 0.16);
  border-color: var(--blue);
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--blue-2);
  color: var(--navy);
  font-weight: 800;
}

.form-status.success {
  border-color: #b9dfc7;
  background: #edf9f1;
  color: #15572c;
}

.form-status.error {
  border-color: #f1c1bf;
  background: #fff0ef;
  color: #8a241f;
}

.form-status.loading {
  border-color: var(--line);
  background: var(--blue-2);
  color: var(--navy);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.84);
}

.footer {
  background: #071d35;
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer a {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-links .btn {
    width: 100%;
    margin-top: 6px;
  }
}

@media (max-width: 920px) {
  .topbar-inner,
  .split,
  .grid.three,
  .grid.four,
  .grid.two,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split {
    gap: 28px;
  }

  .hero {
    min-height: 610px;
  }
}

@media (max-width: 680px) {
  .topbar-inner,
  .trust-grid,
  .grid.three,
  .grid.four,
  .grid.two,
  .split,
  .stat-row,
  .footer-grid,
  .form.two-col {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .footer-bottom {
    display: block;
  }

  .topbar-inner {
    padding: 10px 0;
  }

  .topbar-inner span {
    display: block;
  }

  .brand span:not(.brand-mark):not(.brand-small) {
    max-width: 210px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(15, 47, 87, 0.95), rgba(15, 47, 87, 0.7)),
      url("adw-hero.png") 62% center / cover no-repeat;
  }

  .audience-actions {
    grid-template-columns: 1fr;
  }

  .booking-paths {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 112px;
  }

  section,
  .page-hero {
    padding: 64px 0;
  }

  .topbar-inner,
  .nav-inner,
  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .card,
  .panel {
    padding: 23px;
  }
}
