/* ===================== ROOT / VARIABLES ===================== */
:root {
  --teal: #005E6A;
  --teal-dark: #164A55;
  --teal-light: #DFF2F4;
  --teal-2: #2A7B82;
  --yellow: #F1DA24;
  --yellow-dark: #E5CC18;
  --white: #FFFFFF;
  --dark: #14191B;
  --gray: #5B6B70;
  --gray-light: #F4F8F9;
  --navy: #0D2B36;
  --shadow-sm: 0 2px 10px rgba(20, 46, 53, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 46, 53, 0.10);
  --shadow-lg: 0 20px 50px rgba(20, 46, 53, 0.16);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container-w: 1180px;
}

.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--gray);
  background: var(--gray-light);
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--gray); }

.compare-table-wrap { overflow-x: auto; margin: 0 auto; max-width: 880px; }
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--gray-light); }
.compare-table th { background: var(--navy); color: var(--white); font-size: 14px; }
.compare-table th:not(:first-child), .compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--dark); }
.compare-table .col-highlight { background: var(--teal-light); }

.verdict-box { max-width: 800px; margin: 0 auto; background: var(--teal-light); border-radius: var(--radius-md); padding: 32px; }
.verdict-box h4 { color: var(--teal-dark); margin-bottom: 10px; font-size: 17px; }
.verdict-box p { color: var(--gray); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }

.source-note { font-size: 12.5px; color: var(--gray); text-align: center; margin-top: 16px; }
.source-note a { color: var(--teal); }

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--teal-dark);
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

.icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: var(--teal-dark);
  box-shadow: 0 8px 20px rgba(241, 218, 36, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(241, 218, 36, 0.45);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  transition: color 0.35s ease;
}

.navbar.scrolled .brand { color: var(--teal-dark); }

.brand-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.brand-icon-nav {
  width: 52px; height: 52px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.35s ease;
}

.navbar.scrolled .nav-links { color: var(--gray); }

.nav-links a { position: relative; transition: color 0.25s ease; }
.nav-links a:hover { color: var(--yellow); }
.navbar.scrolled .nav-links a:hover { color: var(--teal); }

.nav-cta { padding: 11px 24px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s ease;
}
.navbar.scrolled .hamburger span { background: var(--teal-dark); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 70%, var(--navy) 100%);
  padding: 180px 0 110px;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(241, 218, 36, 0.18) 0%, rgba(241, 218, 36, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-shape::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.hero-photo {
  background-size: cover;
  background-position: center;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 94, 106, 0.93) 0%, rgba(22, 74, 85, 0.92) 60%, rgba(13, 43, 54, 0.95) 100%);
  z-index: 1;
}

.hero-poweredby {
  margin-top: 36px;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.55);
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}

.hero-kicker {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow);
  background: rgba(241, 218, 36, 0.12);
  border: 1px solid rgba(241, 218, 36, 0.35);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}

.hero h1 {
  font-size: 56px;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .highlight { color: var(--yellow); }

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 auto 44px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-split-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-split-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-radius: var(--radius-md);
  text-align: left;
  min-width: 280px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-split-btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  box-shadow: 0 10px 26px rgba(241, 218, 36, 0.3);
}
.hero-split-btn-primary strong { color: var(--teal-dark); }
.hero-split-btn-primary .hero-split-text { color: rgba(22, 74, 85, 0.75); }

.hero-split-btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.hero-split-btn-outline strong { color: var(--white); }
.hero-split-btn-outline .hero-split-text { color: rgba(255, 255, 255, 0.7); }

.hero-split-btn:hover { transform: translateY(-3px); }
.hero-split-btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--yellow); }

.hero-split-emoji {
  font-size: 28px;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  flex-shrink: 0;
}
.hero-split-btn-outline .hero-split-emoji { background: rgba(255, 255, 255, 0.1); }

.hero-split-text {
  display: flex;
  flex-direction: column;
  font-size: 13.5px;
  font-weight: 500;
}
.hero-split-text strong {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* ===================== STATS STRIP ===================== */
.stats-strip {
  background: var(--navy);
  padding: 36px 0;
}

.stats-strip-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--yellow);
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.3px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.store-badge-soon { opacity: 0.65; cursor: default; }
.store-badge-soon:hover { transform: none; }

/* ===================== BIG STATEMENT ===================== */
.statement {
  padding: 100px 0 90px;
  text-align: center;
  background: var(--white);
}

.statement-line {
  width: 70px; height: 5px;
  background: var(--yellow);
  border-radius: 3px;
  margin: 0 auto 30px;
}

.statement h2 {
  font-size: 46px;
  line-height: 1.25;
  max-width: 920px;
  margin: 0 auto;
  color: var(--teal-dark);
}

.statement h2 .accent { color: var(--teal); }

/* ===================== SECTIONS ===================== */
.section { padding: 110px 0; }
.section-alt { background: var(--gray-light); }
.section-dark {
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--navy) 100%);
}

.section-kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-kicker-light { color: var(--yellow); }

.section-title {
  font-size: 38px;
  max-width: 700px;
  margin-bottom: 60px;
}

.section-title-light { color: var(--white); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== TRUST IMAGE SECTION ===================== */
.trust-image-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}

.trust-image-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.trust-image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trust-points { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.trust-points li { display: flex; gap: 16px; align-items: flex-start; }
.trust-points-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.trust-points strong { font-family: 'Poppins', sans-serif; font-size: 16px; color: var(--teal-dark); display: block; margin-bottom: 4px; }
.trust-points p { font-size: 14px; color: var(--gray); margin: 0; }

/* ===================== SPLIT CARDS (What is) ===================== */
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.split-card {
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(31, 98, 110, 0.08);
}

.split-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.split-card-tenant { background: var(--teal-light); }
.split-card-owner { background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%); color: var(--white); }

.split-card-icon {
  font-size: 38px;
  width: 76px; height: 76px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.split-card h3 { font-size: 24px; margin-bottom: 14px; }
.split-card p { color: var(--gray); font-size: 15px; margin-bottom: 22px; }
.split-card-owner h3, .split-card-owner p { color: var(--white); }

.link-arrow {
  font-weight: 600;
  color: var(--teal);
  font-size: 14.5px;
  transition: gap 0.25s ease, opacity 0.25s ease;
}
.split-card-owner .link-arrow { color: var(--yellow); }
.link-arrow:hover { opacity: 0.75; }

/* ===================== HOW IT WORKS ===================== */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.step { flex: 1; text-align: center; max-width: 220px; }

.step-num {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--yellow);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}

.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 14px; }

.step-arrow {
  color: var(--teal);
  font-size: 22px;
  font-weight: 700;
  align-self: center;
  margin-top: 22px;
  opacity: 0.5;
}

/* ===================== FEATURE GRID ===================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(31, 98, 110, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.feature-emoji {
  font-size: 30px;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-light);
  border-radius: 16px;
  margin-bottom: 20px;
}

.feature-card h4 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { color: var(--gray); font-size: 14px; }

.feature-card-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.feature-card-dark:hover { border-color: var(--yellow); background: rgba(255, 255, 255, 0.07); }
.feature-card-dark h4 { color: var(--white); }
.feature-card-dark p { color: rgba(255, 255, 255, 0.7); }
.feature-card-dark .feature-emoji { background: rgba(241, 218, 36, 0.15); }

/* ===================== TRUST GRID ===================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  float: right;
  font-weight: 700;
  color: var(--teal);
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  color: var(--gray);
  font-size: 14.5px;
  margin-top: 12px;
  line-height: 1.6;
}

.trust-card {
  text-align: center;
  padding: 38px 24px;
  border-radius: var(--radius-md);
  background: var(--teal-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.trust-icon {
  font-size: 34px;
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.trust-card h4 { font-size: 16px; margin-bottom: 8px; }
.trust-card p { color: var(--gray); font-size: 13.5px; }

/* ===================== PRICING ===================== */
.pricing-group-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--teal-dark);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.pricing-group-label::after { content: ''; flex: 1; height: 1px; background: rgba(31, 98, 110, 0.12); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--white);
  border: 1.5px solid rgba(31, 98, 110, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.price-card-featured {
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
}

.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--teal-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.price-card h4 { font-size: 14px; color: var(--teal); letter-spacing: 1px; margin-bottom: 14px; }
.price-amount { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 36px; color: var(--teal-dark); }
.price-amount span { font-size: 14px; font-weight: 500; color: var(--gray); }
.price-card ul { list-style: none; text-align: left; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.price-card li { font-size: 13.5px; color: var(--gray); padding-left: 24px; position: relative; }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ===================== CTA / DOWNLOAD ===================== */
.cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(241, 218, 36, 0.12) 0%, rgba(241, 218, 36, 0) 70%);
  border-radius: 50%;
}

.cta-inner { position: relative; z-index: 2; }

.cta h1, .cta h2 { color: var(--white); font-size: 36px; margin-bottom: 16px; }
.cta p { color: rgba(255, 255, 255, 0.82); font-size: 17px; margin-bottom: 40px; }

.cta-badges { justify-content: center; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--navy);
  padding: 70px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand .brand-icon { margin-bottom: 6px; }

.footer-brand span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
}

.footer-brand p { font-size: 13.5px; color: rgba(255, 255, 255, 0.5); }

.footer-brand .footer-owned-by { font-size: 12px; color: rgba(255, 255, 255, 0.35); }

.footer-col h5 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-col a { transition: color 0.25s ease; }
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 32px 22px;
    box-shadow: var(--shadow-md);
    color: var(--gray);
  }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--gray-light); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .steps { flex-wrap: wrap; }
  .step-arrow { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 40px; }
  .trust-image-inner { grid-template-columns: 1fr; gap: 36px; }
  .trust-image-photo { max-height: 360px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 150px 0 80px; }
  .hero h1 { font-size: 32px; }
  .hero-split-btn { min-width: 100%; }
  .split-cards { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .section-title { font-size: 28px; }
  .statement { padding: 70px 0; }
  .statement h2 { font-size: 28px; }
}

@media (max-width: 980px) {
  .statement h2 { font-size: 34px; }
}

/* ===================== LEGAL PAGES ===================== */
.legal-hero {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 160px 0 60px;
  text-align: center;
}
.legal-hero h1 { color: var(--white); font-size: 36px; }
.legal-hero p { color: rgba(255, 255, 255, 0.75); margin-top: 10px; font-size: 14px; }

.legal-hero-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 180px 0 90px;
  overflow: hidden;
}
.legal-hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 94, 106, 0.92) 0%, rgba(13, 43, 54, 0.94) 100%);
  z-index: 1;
}
.legal-hero-photo .hero-kicker { margin-bottom: 18px; }

.legal-content { max-width: 740px; margin: 0 auto; padding: 60px 32px 80px; }

.legal-notice {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--teal-light);
  border: 1px solid rgba(31, 98, 110, 0.15);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--teal-dark);
  font-size: 14px;
  margin-bottom: 36px;
}

.legal-section { padding: 26px 0; border-bottom: 1px solid var(--gray-light); }
.legal-section:last-of-type { border-bottom: none; }
.legal-section h2 { font-size: 18px; margin-bottom: 12px; }
.legal-section p { color: var(--gray); font-size: 14.5px; margin-bottom: 10px; }
.legal-section ul { padding-left: 20px; color: var(--gray); font-size: 14.5px; }
.legal-section li { margin-bottom: 8px; }
.legal-section strong { color: var(--dark); }
