* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: #FAFAF7;
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  background: #FAFAF7;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 0;
}

.page-wrap {
  position: relative;
  z-index: 1;
  background: #FAFAF7;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.content-area {
  position: relative;
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1309px;
  max-width: calc(100% - 110px);
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    to right,
    rgba(15, 22, 32, 0.07) 0,
    rgba(15, 22, 32, 0.07) 1px,
    transparent 1px,
    transparent calc((100% - 1px) / 6)
  );
}

.content-area .grid-overlay {
  bottom: -50px;
}


/* ─── Fixed Logo ─── */
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fixed-logo {
  position: fixed;
  top: 50px;
  left: 30px;
  z-index: 100;
  border-radius: 10px;
  height: 58px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s ease;
  animation: hero-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.fixed-logo.scrolled {
  background: white;
}

.fixed-logo img {
  width: 182px;
  height: auto;
  display: block;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.fixed-logo.scrolled img {
  width: 120px;
}

.logo-dark {
  position: absolute;
  opacity: 0;
}

.fixed-logo.scrolled .logo-white {
  opacity: 0;
}

.fixed-logo.scrolled .logo-dark {
  opacity: 1;
}


/* ─── Fixed Navigation ─── */
.fixed-nav {
  position: fixed;
  top: 45px;
  right: 40px;
  z-index: 100;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 100px;
  padding: 6px;
  animation: hero-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 30px;
  padding-right: 20px;
}

.nav-link {
  font-weight: 400;
  font-size: 17px;
  color: black;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #70A6C8;
}

.nav-link-active {
  color: #70A6C8;
}

.nav-cta {
  background: #0b1b33;
  color: white;
  font-weight: 400;
  font-size: 17px;
  text-decoration: none;
  white-space: nowrap;
  padding: 14px 24px;
  border-radius: 100px;
  transition: background 0.3s ease;
}

.nav-cta:hover {
  background: #1E3A6B;
}


/* ─── Page Hero ─── */
.page-hero {
  position: relative;
  width: 100vw;
  margin-left: -10px;
  height: 480px;
  background: #0b1b33;
  overflow: hidden;
  color: white;
}

.page-hero-vector {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  --parallax-y: 0px;
  transform: translateY(var(--parallax-y));
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-ready .page-hero-vector {
  opacity: 1;
  transition-delay: 0.2s;
}

.page-hero-vector img {
  width: 100%;
  height: 100%;
  display: block;
}

.page-hero-vector-dark {
  inset: -41.83% 20.14% -84.33% -141.81%;
}

.page-hero-vector-light {
  inset: 33.17% -116.04% -132.5% 26.11%;
}

.page-hero-vector-stroke {
  top: 28%;
  left: calc(50% - 435.5px);
  bottom: -39.5%;
  width: 1399px;
  transform: translateX(-50%) translateY(var(--parallax-y));
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 8px;
  padding: 10px;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 10px;
}

.hero-ready .page-hero-tag {
  animation: hero-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.page-hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #70A6C8;
}

.page-hero-tag span:last-child {
  font-size: 15px;
  font-weight: 400;
  color: #0b1b33;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-hero-content {
  position: absolute;
  left: 65px;
  bottom: 85px;
  width: 872px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-hero-heading {
  font-size: 60px;
  line-height: 1;
  color: white;
  opacity: 0;
  transform: translateY(30px);
}

.hero-ready .page-hero-heading {
  animation: hero-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.heading-light {
  font-weight: 300;
}

.heading-accent {
  font-weight: 400;
  color: #dcf2fd;
}

.page-hero-subtitle {
  font-weight: 300;
  font-size: 24px;
  line-height: 1.3;
  color: white;
  max-width: 680px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-ready .page-hero-subtitle {
  animation: hero-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}


/* ─── Policy Content ─── */
.policy-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  padding: 100px 55px 150px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 0;
  align-items: start;
}

.policy-toc {
  grid-column: 1 / 3;
  position: sticky;
  top: 140px;
  align-self: start;
  padding-right: 40px;
}

.policy-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(15, 22, 32, 0.07);
}

.policy-meta-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: rgba(11, 27, 51, 0.5);
}

.policy-meta-value {
  font-size: 16px;
  font-weight: 400;
  color: #0b1b33;
}

.policy-nav-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #0b1b33;
  margin-bottom: 20px;
}

.policy-nav-list {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-nav-list li {
  counter-increment: toc;
}

.policy-nav-list a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: rgba(11, 27, 51, 0.55);
  text-decoration: none;
  padding-left: 32px;
  position: relative;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.policy-nav-list a::before {
  content: counter(toc, decimal-leading-zero) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(11, 27, 51, 0.35);
  transition: color 0.3s ease;
}

.policy-nav-list a:hover {
  color: #0b1b33;
}

.policy-nav-list a.is-active {
  color: #70A6C8;
}

.policy-nav-list a.is-active::before {
  color: #70A6C8;
}

.policy-body {
  grid-column: 3 / 7;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.policy-block {
  scroll-margin-top: 140px;
}

.policy-heading {
  font-size: 28px;
  font-weight: 400;
  color: #0b1b33;
  line-height: 1.2;
  margin-bottom: 24px;
}

.policy-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(11, 27, 51, 0.8);
  margin-bottom: 16px;
}

.policy-body p:last-child {
  margin-bottom: 0;
}

.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.policy-list li {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(11, 27, 51, 0.8);
  padding-left: 22px;
  position: relative;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #70A6C8;
}

.policy-list strong {
  font-weight: 500;
  color: #0b1b33;
}

.policy-list-plain li {
  padding-left: 0;
}

.policy-list-plain li::before {
  display: none;
}

.policy-body a {
  color: #70A6C8;
  text-decoration: none;
  border-bottom: 1px solid rgba(112, 166, 200, 0.3);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.policy-body a:hover {
  color: #1E3A6B;
  border-bottom-color: rgba(30, 58, 107, 0.5);
}

/* ─── Policy tables (Privacy Notice: terminology, processing purposes, rights, contact) ─── */
.policy-table-wrap {
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(11, 27, 51, 0.8);
}

.policy-table th,
.policy-table td {
  text-align: left;
  vertical-align: top;
  padding: 14px 18px;
  border: 1px solid rgba(15, 22, 32, 0.12);
}

.policy-table thead th {
  font-weight: 500;
  color: #0b1b33;
  background: rgba(112, 166, 200, 0.12);
}

/* Row-header cells (left column of the term/right-name tables) */
.policy-table tbody th[scope="row"] {
  font-weight: 500;
  color: #0b1b33;
  background: rgba(15, 22, 32, 0.02);
  white-space: nowrap;
}

.policy-table a {
  color: #70A6C8;
  text-decoration: none;
  border-bottom: 1px solid rgba(112, 166, 200, 0.3);
}

@media (max-width: 768px) {
  .policy-table {
    font-size: 15px;
    min-width: 520px; /* force horizontal scroll rather than crushing columns */
  }

  .policy-table th,
  .policy-table td {
    padding: 12px 14px;
  }

  .policy-table tbody th[scope="row"] {
    white-space: normal;
  }
}


/* ─── Section 07 — CTA ─── */
.section-07 {
  position: relative;
  width: 100vw;
  padding: 50px 65px 150px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: visible;
  background: #FAFAF7;
  z-index: 2;
  clip-path: inset(-9999px 0 0 0);
}

.s07-decoration {
  position: absolute;
  left: calc(50% - 633.5px);
  bottom: -150px;
  width: 1267px;
  aspect-ratio: 1550 / 678;
  pointer-events: none;
  will-change: transform;
  z-index: 2;
}

.s07-decoration img {
  width: 100%;
  height: 100%;
  display: block;
}

.s07-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.s07-heading {
  font-size: 60px;
  font-weight: 300;
  line-height: 1.1;
  color: #0b1b33;
  text-align: center;
  white-space: nowrap;
}

.s07-highlight {
  color: #70A6C8;
}

.s07-body {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.55;
  color: #0b1b33;
  max-width: 625px;
  text-align: center;
}

.s07-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  margin-top: 10px;
}

.s07-actions::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #b41020;
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.s07-actions:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.s07-actions > * {
  position: relative;
  z-index: 1;
}

.s07-actions:hover .btn-arrow svg {
  transform: rotate(45deg);
}

.s07-actions .btn-get-started {
  background: #b41020;
}

.s07-actions .arrow-bg {
  fill: #b41020;
}

.btn-get-started {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: #70a6c8;
  color: white;
  font-weight: 400;
  font-size: 17px;
  padding: 0 30px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: -4px;
}

.btn-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.arrow-bg {
  fill: #70a6c8;
}


/* ─── Section 08 — Footer ─── */
.section-08 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #0f1620;
  overflow: hidden;
  color: white;
  z-index: 0;
}

.page-hero,
.policy-section {
  position: relative;
  z-index: 1;
}

.s08-vector-tl {
  position: absolute;
  top: -130px;
  left: -600px;
  width: 1267px;
  pointer-events: none;
  opacity: 0.35;
}

.s08-vector-tl img {
  width: 100%;
  height: auto;
  display: block;
}

.s08-vector-br {
  position: absolute;
  bottom: -130px;
  right: -600px;
  width: 1267px;
  pointer-events: none;
  opacity: 0.35;
}

.s08-vector-br img {
  width: 100%;
  height: auto;
  display: block;
}

.s08-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 140px 65px 150px;
  z-index: 1;
}

.s08-cols {
  display: grid;
  grid-template-columns: 240px auto auto auto auto;
  gap: 70px;
  margin-bottom: 100px;
}

.s08-col-logo .s08-logo img {
  width: 182px;
  height: 48px;
  display: block;
}

.s08-col-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 30px;
}

.s08-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.s08-list a {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.s08-list a:hover {
  color: rgba(255, 255, 255, 1);
}

.s08-col-contact {
  position: relative;
}

.s08-socials {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.s08-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.s08-socials a:hover {
  opacity: 0.7;
}

.s08-socials img {
  width: 100%;
  height: 100%;
  display: block;
}

.s08-address {
  font-style: normal;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  color: white;
  margin-bottom: 18px;
}

.s08-contact-item {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.s08-contact-icon {
  flex-shrink: 0;
  color: white;
}

.s08-contact-item a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 4px 0;
}

.s08-contact-item a:hover {
  opacity: 0.7;
}

.s08-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.s08-copyright {
  font-size: 15px;
  font-weight: 300;
  color: white;
}

.s08-legal {
  list-style: none;
  display: flex;
  gap: 43px;
  justify-content: center;
}

.s08-legal a {
  font-size: 15px;
  font-weight: 300;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.s08-legal a:hover {
  opacity: 0.7;
}

.s08-credit {
  font-size: 15px;
  font-weight: 400;
  color: white;
  text-align: right;
}

.s08-credit a {
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.footer-spacer {
  height: 684px;
  width: 100%;
  pointer-events: none;
  margin-top: -20px;
}


/* ─── Hamburger Button ─── */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  border-radius: 50%;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #0b1b33;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.is-open .hamburger-line:first-child {
  transform: translateY(5px) rotate(45deg);
  background: white;
}

.nav-hamburger.is-open .hamburger-line:last-child {
  transform: translateY(-5px) rotate(-45deg);
  background: white;
}


/* ─── Mobile Menu Overlay ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #0b1b33;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 30px;
}

.mobile-menu-link {
  font-size: 32px;
  font-weight: 300;
  color: white;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.is-open .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(2) { transition-delay: 0.2s; }

.mobile-menu-cta {
  font-size: 18px;
  font-weight: 400;
  color: white;
  text-decoration: none;
  background: #1E3A6B;
  padding: 16px 40px;
  border-radius: 100px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
}

.mobile-menu.is-open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.mobile-menu-cta:hover {
  background: #2a4f8a;
}


/* ═══════════════════════════════════════════
   TABLET — max-width: 1024px
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {

  .page-hero-content {
    left: 40px;
    width: 700px;
  }

  .page-hero-heading {
    font-size: 50px;
  }

  .page-hero-subtitle {
    font-size: 20px;
  }

  .policy-section {
    padding: 80px 30px 120px;
  }

  .policy-heading {
    font-size: 24px;
  }

  .s08-inner {
    padding: 100px 30px 120px;
  }

  .s08-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .s08-col-logo {
    grid-column: 1 / -1;
  }

  .s07-heading {
    font-size: 44px;
    white-space: normal;
  }

  .s07-body {
    font-size: 18px;
  }

  .section-07 {
    padding: 50px 30px 120px;
  }
}


/* ═══════════════════════════════════════════
   MOBILE — max-width: 768px
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  /* Navigation: show hamburger, hide desktop links */
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .fixed-nav {
    padding: 4px;
    top: 30px;
    right: 20px;
    background: transparent;
  }

  .fixed-logo {
    top: 30px;
    left: 20px;
    height: 48px;
    padding: 0 10px;
  }

  .fixed-logo img {
    width: 140px;
  }

  .fixed-logo.menu-open {
    background: transparent;
  }

  .fixed-logo.scrolled img {
    width: 110px;
  }

  .mobile-menu {
    display: block;
  }

  /* Page wrap */
  .page-wrap {
    padding: 6px 6px 0;
  }

  /* Hero */
  .page-hero {
    width: calc(100% + 12px);
    margin-left: -6px;
    height: 500px;
  }

  .page-hero-vector-dark {
    inset: auto;
    top: -20px;
    left: -2042px;
    width: 3192px;
    height: 1357px;
    transform: translateY(var(--parallax-y)) rotate(-16.42deg);
  }

  .page-hero-vector-light {
    inset: auto;
    top: 60px;
    left: -62px;
    width: 1597px;
    height: 698px;
    transform: translateY(var(--parallax-y));
  }

  .page-hero-vector-stroke {
    top: 200px;
    left: calc(50% - 699.5px);
    bottom: auto;
    width: 1399px;
    height: 612px;
    transform: translateY(var(--parallax-y));
  }

  .page-hero-content {
    left: 24px;
    bottom: 50px;
    width: calc(100% - 48px);
    gap: 20px;
  }

  .page-hero-heading {
    font-size: 36px;
  }

  .page-hero-subtitle {
    font-size: 17px;
    max-width: 100%;
  }

  /* Tags — smaller on mobile */
  .page-hero-tag span:last-child {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .page-hero-tag {
    padding: 8px;
    gap: 8px;
    border-radius: 6px;
  }

  .page-hero-tag-dot {
    width: 5px;
    height: 5px;
  }

  /* Policy section — stack to single column */
  .policy-section {
    padding: 40px 20px 80px;
    grid-template-columns: 1fr;
  }

  .policy-toc {
    grid-column: 1;
    position: static;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .policy-body {
    grid-column: 1;
    gap: 40px;
  }

  .policy-block {
    scroll-margin-top: 100px;
  }

  .policy-heading {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .policy-body p {
    font-size: 16px;
  }

  .policy-list li {
    font-size: 16px;
  }

  /* Grid overlay — fewer lines on mobile */
  .grid-overlay {
    max-width: calc(100% - 40px);
    background-image: repeating-linear-gradient(
      to right,
      rgba(15, 22, 32, 0.07) 0,
      rgba(15, 22, 32, 0.07) 1px,
      transparent 1px,
      transparent calc((100% - 1px) / 3)
    );
  }

  /* CTA section */
  .section-07 {
    padding: 40px 20px 100px;
    overflow: hidden;
  }

  .s07-heading {
    font-size: 32px;
    white-space: normal;
  }

  .s07-body {
    font-size: 16px;
  }

  /* Footer — switch from fixed to static on mobile */
  .section-08 {
    position: relative;
    z-index: 1;
  }

  .footer-spacer {
    display: none;
  }

  .s08-inner {
    padding: 80px 20px 60px;
  }

  .s08-cols {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }

  .s08-col-logo {
    grid-column: 1 / -1;
  }

  .s08-col-logo .s08-logo img {
    width: 140px;
    height: 37px;
  }

  .s08-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .s08-legal {
    justify-content: center;
    gap: 24px;
  }

  .s08-credit {
    text-align: center;
  }
}


/* ═══════════════════════════════════════════
   SMALL MOBILE — max-width: 480px
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .page-hero {
    height: 440px;
  }

  .page-hero-heading {
    font-size: 30px;
  }

  .page-hero-subtitle {
    font-size: 16px;
  }

  .page-hero-content {
    bottom: 40px;
    gap: 16px;
  }

  .policy-section {
    padding: 30px 16px 60px;
  }

  .policy-heading {
    font-size: 20px;
  }

  .policy-body p {
    font-size: 15px;
  }

  .policy-list li {
    font-size: 15px;
  }

  .s08-cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .s08-bottom {
    gap: 16px;
  }

  .footer-spacer {
    height: 600px;
  }

  .s07-heading {
    font-size: 26px;
  }
}
