/* ─────────────────────────────────────────────────────────────
   VO Yacht Guardian – Landing Page Stylesheet
   ───────────────────────────────────────────────────────────── */

/* ── Design tokens ── */
:root {
  --navy:        #1B3A6B;
  --navy-dark:   #0D2040;
  --navy-light:  #2D5A9E;
  --gold:        #C9A96E;
  --gold-dark:   #A07840;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --grey-light:  #E8EDF5;
  --grey-mid:    #B0BDD0;
  --grey-text:   #6B7A8D;
  --text:        #0C1A2E;
  --success:     #11851D;
  --warning:     #EA9946;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(11, 32, 64, 0.08);
  --shadow-md:   0 4px 16px rgba(11, 32, 64, 0.12);
  --shadow-lg:   0 8px 32px rgba(11, 32, 64, 0.16);

  --transition:  0.25s ease;
  --max-w:       1200px;
  --gutter:      clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p  { line-height: 1.7; }

/* ── Utility ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─────────────────────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg { padding: 0.9375rem 2.25rem; font-size: 1rem; }
.btn--sm { padding: 0.5rem 1.125rem; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* ─────────────────────────────────────────────────────────────
   Navigation
   ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.875rem 0;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-vo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.nav.is-scrolled .nav__logo-vo { color: var(--navy); }
.nav__logo-name {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.nav.is-scrolled .nav__logo-name { color: var(--grey-text); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.nav.is-scrolled .nav__link { color: var(--text); }
.nav.is-scrolled .nav__link:hover { color: var(--navy); background: var(--grey-light); }

.nav__link--login {
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-right: 0.5rem;
}
.nav.is-scrolled .nav__link--login { border-color: var(--grey-mid); }

.nav__cta { margin-left: 0.5rem; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.nav.is-scrolled .nav__toggle span { background: var(--navy); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 90vw);
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 5rem 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link { color: var(--text) !important; width: 100%; }
  .nav__link--login { border-color: var(--grey-mid) !important; }
  .nav__cta { width: 100%; margin-left: 0; margin-top: 0.5rem; text-align: center; }
}

/* ─────────────────────────────────────────────────────────────
   Hero
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0D2040; /* fallback while image loads */
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 32, 64, 0.35) 0%,
    rgba(13, 32, 64, 0.5) 60%,
    rgba(13, 32, 64, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7rem var(--gutter) 4rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fade-up 0.8s 0.2s ease forwards;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.8s 0.4s ease forwards;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 48ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.8s 0.6s ease forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fade-up 0.8s 0.8s ease forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 0.8s 1.2s ease forwards;
}
.hero__scroll-bar {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: slide-right 1.8s ease-in-out infinite;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide-right {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ─────────────────────────────────────────────────────────────
   Trust bar
   ───────────────────────────────────────────────────────────── */
.trust {
  background: var(--navy);
  padding: 2.5rem 0;
}

.trust__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 0;
}

.trust__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 2.5rem;
  text-align: center;
}

.trust__number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trust__label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.trust__divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 640px) {
  .trust__divider { display: none; }
  .trust__grid { gap: 1.5rem; }
}

/* ─────────────────────────────────────────────────────────────
   Section headers (shared)
   ───────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.section-eyebrow--light { color: var(--gold); }

.section-title {
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}
.section-title--light { color: var(--white); }

.section-subtitle {
  color: var(--grey-text);
  font-size: 1rem;
  max-width: 56ch;
  margin: 0.5rem auto 0;
}
.section-subtitle--light { color: rgba(255,255,255,0.7); }

/* ─────────────────────────────────────────────────────────────
   Value proposition
   ───────────────────────────────────────────────────────────── */
.values {
  padding: 6rem 0;
  background: var(--white);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--grey-mid);
}

.value-card__icon {
  margin-bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 0.875rem;
}

.value-card__body { color: var(--grey-text); font-size: 0.9375rem; }

/* ─────────────────────────────────────────────────────────────
   Photo strip
   ───────────────────────────────────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 320px;
  overflow: hidden;
}

.photo-strip__item {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.photo-strip__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip__item { height: 220px; }
}

/* ─────────────────────────────────────────────────────────────
   How it works
   ───────────────────────────────────────────────────────────── */
.how {
  padding: 6rem 0;
  background: var(--off-white);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2.25rem;
  width: 1px;
  height: calc(100% - 4rem);
  background: var(--grey-light);
}

.step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.step__number {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--navy);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  z-index: 1;
}

.step.reveal { opacity: 0; transform: translateX(-16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.step.reveal.is-visible { opacity: 1; transform: translateX(0); }

.step__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.step__text { color: var(--grey-text); font-size: 0.9375rem; }

/* ─────────────────────────────────────────────────────────────
   Checklist preview
   ───────────────────────────────────────────────────────────── */
.checklist-preview {
  padding: 5rem 0;
  background:
    linear-gradient(rgba(13, 32, 64, 0.88), rgba(13, 32, 64, 0.88)),
    url('/landing-assets/img/checklist-bg.jpg') center/cover no-repeat;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.checklist-item__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
}
.checklist-item__dot--green  { background: #2ECC71; box-shadow: 0 0 6px rgba(46, 204, 113, 0.6); }
.checklist-item__dot--amber  { background: #F39C12; box-shadow: 0 0 6px rgba(243, 156, 18, 0.6); }
.checklist-item__dot--red    { background: #E74C3C; box-shadow: 0 0 6px rgba(231, 76, 60, 0.6); }

/* ─────────────────────────────────────────────────────────────
   Service tiers
   ───────────────────────────────────────────────────────────── */
.tiers {
  padding: 6rem 0;
  background: var(--white);
}

.tiers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.tier-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tier-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.tier-card--featured {
  border-color: var(--navy);
  background: linear-gradient(160deg, var(--off-white) 0%, var(--white) 100%);
}

.tier-card__badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3125rem 0.875rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.tier-card__name {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.tier-card__freq {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.tier-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.tier-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--grey-text);
  font-size: 0.9375rem;
}
.tier-card__features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%231B3A6B' stroke-width='1'/%3E%3Cpath d='M5 8L7 10L11 6' stroke='%231B3A6B' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.tier-card--featured .tier-card__features li { color: var(--text); }

/* ─────────────────────────────────────────────────────────────
   Locations
   ───────────────────────────────────────────────────────────── */
.locations {
  padding: 6rem 0;
  background: var(--off-white);
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.location-item:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }

.location-item__flag { font-size: 1.25rem; line-height: 1; }

.locations__note {
  text-align: center;
  color: var(--grey-text);
  font-size: 0.9375rem;
}

/* ─────────────────────────────────────────────────────────────
   Testimonials
   ───────────────────────────────────────────────────────────── */
.testimonials {
  padding: 6rem 0;
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial {
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.testimonial__quote {
  font-style: italic;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.testimonial__quote::before { content: '\201C'; }
.testimonial__quote::after  { content: '\201D'; }

.testimonial__footer { font-size: 0.875rem; }
.testimonial__footer strong { display: block; color: var(--navy-dark); margin-bottom: 0.125rem; }
.testimonial__footer span { color: var(--grey-text); }

/* ─────────────────────────────────────────────────────────────
   CTA band
   ───────────────────────────────────────────────────────────── */
.cta-band {
  padding: 5rem 0;
  background:
    linear-gradient(rgba(13, 32, 64, 0.82), rgba(13, 32, 64, 0.82)),
    url('/landing-assets/img/cta-aerial.jpg') center/cover no-repeat;
}

.cta-band__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band__subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────── */
.footer {
  background: #080F1E;
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 30ch;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.footer__copy { color: rgba(255,255,255,0.3); font-size: 0.8125rem; }

.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  color: rgba(255,255,255,0.3);
  font-size: 0.8125rem;
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ─────────────────────────────────────────────────────────────
   Cookie banner
   ───────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 600px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 200;
  flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none; }

.cookie-banner p { font-size: 0.875rem; color: var(--grey-text); flex: 1; }
.cookie-banner a { color: var(--navy); text-decoration: underline; }

.cookie-banner__actions { display: flex; gap: 0.625rem; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────
   Reveal animations (IntersectionObserver powered)
   ───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .steps::before { display: none; }
  .step { flex-direction: column; gap: 1rem; }
  .step__number { width: 3.5rem; height: 3.5rem; font-size: 1.125rem; }
  .trust__grid { flex-direction: column; gap: 0; }
  .trust__stat { padding: 0.75rem 1.5rem; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .cta-band__actions .btn { width: 100%; max-width: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
