/* ============================================================
   My Relations — Landing page styles
   Mobile-first, breakpoints at 640px (sm) and 1024px (lg).
   ============================================================ */

/* ---------- Design tokens (Teal theme from the Flutter app) ---------- */
:root {
  --teal-primary:     #0a5766;
  --teal-dark:        #06343D;
  --teal-darker:      #042228;
  --teal-light:       #80CBC4;
  --teal-on-surface:  #E0F2F1;
  --teal-logo:        #3DD8C0;
  --white:            #FFFFFF;
  --success:          #25D366;
  --deal-red:         #E53935;
  --warning:          #E8913A;

  --border:           rgba(128, 203, 196, 0.14);
  --border-strong:    rgba(128, 203, 196, 0.28);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.45);

  --container: 1200px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--teal-darker);
  color: var(--teal-on-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.2; color: var(--white); font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.section { padding: 64px 0; }
.section-alt { background: #052b33; }
@media (min-width: 1024px) { .section { padding: 96px 0; } }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.section-head h2 {
  font-size: clamp(1.75rem, 2.2vw + 1rem, 2.5rem);
}
.section-sub {
  color: var(--teal-light);
  font-size: 1.05rem;
}
.kicker {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-logo);
  font-weight: 600;
  margin-bottom: 10px;
}
.accent { color: var(--teal-logo); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-primary {
  background: var(--teal-logo);
  color: var(--teal-darker);
  box-shadow: 0 8px 24px rgba(61, 216, 192, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); background: #4fe3cb; }
.btn-outline {
  border: 2px solid var(--teal-logo);
  color: var(--teal-logo);
}
.btn-outline:hover { background: var(--teal-logo); color: var(--teal-darker); transform: translateY(-2px); }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--white);
  color: var(--teal-darker);
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.35); }
.store-badge small { display: block; font-size: .7rem; font-weight: 500; opacity: .7; line-height: 1; margin-bottom: 2px; }
.store-badge strong { font-size: 1.05rem; line-height: 1; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 34, 40, 0.8);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header.scrolled {
  background: rgba(4, 34, 40, 0.96);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--white);
}
.logo-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.logo-text { font-size: 1.05rem; }

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav-link {
  color: var(--teal-on-surface);
  font-size: .95rem;
  font-weight: 500;
  transition: color .15s ease;
}
.nav-link:hover { color: var(--teal-logo); }
.nav-cta { color: var(--teal-darker); }

.nav-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--teal-on-surface);
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

/* Mobile nav panel */
@media (max-width: 1023.98px) {
  .nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--teal-dark);
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { padding: 14px 8px; border-bottom: 1px solid var(--border); }
  .nav-cta { margin-top: 8px; align-self: flex-start; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 80px;
  background:
    radial-gradient(circle at 20% 20%, rgba(61,216,192,0.15), transparent 50%),
    radial-gradient(circle at 85% 0%,  rgba(10,87,102,0.6),  transparent 55%),
    linear-gradient(180deg, var(--teal-darker) 0%, var(--teal-dark) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}
.hero-blob-1 { width: 360px; height: 360px; background: var(--teal-logo); top: -80px; right: -60px; opacity: .25; }
.hero-blob-2 { width: 300px; height: 300px; background: var(--teal-primary); bottom: -100px; left: -80px; opacity: .4; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero { padding: 96px 0 120px; }
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 64px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 216, 192, 0.1);
  border: 1px solid var(--border-strong);
  color: var(--teal-light);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-logo);
  box-shadow: 0 0 10px var(--teal-logo);
}

.hero-title {
  font-size: clamp(2rem, 4vw + 1rem, 3.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(1rem, .6vw + .9rem, 1.2rem);
  color: var(--teal-light);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.hero-meta {
  color: var(--teal-light);
  font-size: .9rem;
  margin: 0;
}

/* Phone visual */
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-wrap {
  position: relative;
  width: min(320px, 80%);
  aspect-ratio: 9 / 19;
}
.phone-wrap-sm { width: min(260px, 70%); }
.phone-screenshot {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 38px;
  box-shadow:
    0 0 0 10px rgba(255,255,255,0.04),
    var(--shadow-lg);
  z-index: 1;
}
.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(61,216,192,0.35), transparent 60%);
  filter: blur(30px);
  z-index: 0;
}

/* ---------- Stats ---------- */
.stats-wrap {
  position: relative;
  margin-top: -40px;
  padding: 0 0 32px;
  z-index: 2;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--teal-darker);
}
.stat {
  flex: 1 1 50%;
  text-align: center;
  padding: 8px;
  min-width: 0;
}
.stat-value {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  font-weight: 800;
  color: var(--teal-primary);
  line-height: 1.1;
}
.stat-label {
  font-size: .85rem;
  color: #5b7a80;
  font-weight: 500;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .stats {
    padding: 32px 24px;
    flex-wrap: nowrap;
  }
  .stat {
    flex: 1 1 0;
  }
  .stat + .stat {
    border-left: 1px solid rgba(6, 52, 61, 0.1);
  }
}

/* ---------- How it works (Lottie steps) ---------- */
.lottie-steps {
  list-style: none;
  margin: 0;
  padding: 28px 20px;
  background: var(--teal-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
@media (min-width: 768px) {
  .lottie-steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 36px 24px;
  }
}

.lottie-step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 12px;
}

.lottie-stage {
  width: 120px;
  height: 120px;
  display: block;
}
.lottie-stage svg { width: 100%; height: 100%; display: block; }

.lottie-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 216, 192, 0.18);
  color: var(--teal-logo);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 8px 0 10px;
}

.lottie-step h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: var(--white);
}
.lottie-step p {
  color: var(--teal-light);
  margin: 0;
  font-size: 0.95rem;
  max-width: 32ch;
}

.lottie-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  opacity: 0.5;
  transform: rotate(90deg);
  padding: 4px 0;
}
@media (min-width: 768px) {
  .lottie-arrow {
    transform: none;
    padding: 64px 0 0; /* align roughly with the centre of the Lottie */
  }
}

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.feature {
  background: var(--teal-darker);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .25s ease, border-color .25s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.feature-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 216, 192, 0.12);
  color: var(--teal-logo);
  margin-bottom: 16px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--teal-light); margin: 0; }

/* ---------- Categories ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px)  { .category-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(8, 1fr); gap: 18px; } }

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 10px;
  background: var(--teal-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  text-align: center;
}
.category-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal-logo);
  background: #074149;
}
.category-card img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
}
.category-card span {
  font-size: .85rem;
  font-weight: 500;
  color: var(--teal-on-surface);
}

/* ---------- Featured shops (dynamic) ---------- */
.featured-shops {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .featured-shops { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .featured-shops { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.shop-card {
  position: relative;
  background: var(--teal-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.shop-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

/* Cover banner */
.shop-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--teal-darker);
  overflow: hidden;
}
.shop-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-cover-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--teal-darker) 0%, var(--teal-primary) 100%);
}
/* Subtle gradient so badges stay legible over bright photos */
.shop-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 34, 40, 0) 55%,
    rgba(4, 34, 40, 0.55) 100%
  );
  pointer-events: none;
}

/* Body below cover */
.shop-card-body {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 20px;
  margin-top: -28px; /* pulls the logo up so it overlaps the cover */
  position: relative;
  z-index: 1;
}
.shop-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--teal-darker);
  border: 2px solid var(--teal-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.shop-logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-logo);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
}
.shop-meta { min-width: 0; }

/* Floating badges */
.shop-category {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  background: rgba(4, 34, 40, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
}
.discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--deal-red);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .02em;
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
  z-index: 2;
}

.shop-name {
  font-size: 1.1rem;
  margin: 0;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop-city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 0;
  font-size: .88rem;
  color: var(--teal-light);
}
.shop-city svg { flex-shrink: 0; color: var(--teal-logo); }

/* Skeleton loading */
.shop-skeleton {
  pointer-events: none;
}
.shop-skeleton .shop-cover::after { display: none; }
.shop-skeleton .shop-logo {
  border: none;
  box-shadow: none;
}
.skeleton-block {
  background: linear-gradient(
    90deg,
    rgba(128, 203, 196, 0.06) 0%,
    rgba(128, 203, 196, 0.14) 50%,
    rgba(128, 203, 196, 0.06) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: 8px;
}
.skeleton-line {
  height: 14px;
  width: 70%;
  margin-top: 8px;
}
.skeleton-line-sm {
  height: 12px;
  width: 40%;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- Countries section ---------- */
.countries-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) { .countries-grid { gap: 64px; } }

.country-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.country-col-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--teal-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.country-flag {
  font-size: 2rem;
  line-height: 1;
}
.country-col-head h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--white);
}
.country-tagline {
  margin: 2px 0 0;
  font-size: .88rem;
  color: var(--teal-light);
}

.country-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .country-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .country-list { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.country-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 48px 24px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-strong);
  color: var(--teal-light);
  background: rgba(4, 34, 40, 0.35);
}
.country-empty-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(61, 216, 192, 0.12);
  color: var(--teal-logo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.country-empty-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.country-empty-sub {
  margin: 0;
  font-size: .85rem;
  color: var(--teal-light);
  max-width: 240px;
}

/* ---------- Showcase ---------- */
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .showcase-inner { grid-template-columns: 1fr 1.1fr; gap: 72px; }
}
.showcase-visual { display: flex; justify-content: center; }
.showcase-content h2 { font-size: clamp(1.75rem, 2vw + 1rem, 2.4rem); margin-bottom: 18px; }
.checklist { margin: 0 0 28px; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  color: var(--teal-on-surface);
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: 0; }
.check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-logo);
  color: var(--teal-darker);
  font-size: .75rem;
  font-weight: 700;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px)  { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; } }

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--teal-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.pricing-card-featured {
  border-color: var(--teal-logo);
  background: linear-gradient(180deg, #074149 0%, var(--teal-dark) 100%);
  box-shadow: 0 12px 40px rgba(61, 216, 192, 0.18);
}
@media (min-width: 1024px) {
  .pricing-card-featured { transform: translateY(-8px); }
  .pricing-card-featured:hover { transform: translateY(-12px); }
}
.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--teal-logo);
  color: var(--teal-darker);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.pricing-flag {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-region {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: var(--white);
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.pricing-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal-light);
}
.pricing-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.pricing-period {
  font-size: 1rem;
  color: var(--teal-light);
  margin-left: 2px;
}
.pricing-features {
  margin: 0;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  color: var(--teal-on-surface);
  font-size: .95rem;
}
.pricing-note {
  text-align: center;
  color: var(--teal-light);
  font-size: .9rem;
  margin: 32px auto 0;
  max-width: 640px;
}

/* ---------- For businesses ---------- */
.business-section { background: linear-gradient(135deg, var(--teal-dark) 0%, #053b45 100%); }
.business-inner {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .business-inner { grid-template-columns: 1.4fr 1fr; gap: 56px; }
}
.business-inner h2 {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.4rem);
  margin-bottom: 14px;
}
.business-inner p { color: var(--teal-light); font-size: 1.05rem; margin: 0; }
.business-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) { .business-cta { align-items: flex-start; } }
.business-note { color: var(--teal-light); font-size: .85rem; margin: 0; }

/* ---------- Final CTA ---------- */
.cta {
  padding: 80px 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(61,216,192,0.18), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(10,87,102,0.5),  transparent 55%),
    var(--teal-darker);
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.75rem, 2vw + 1rem, 2.6rem); margin-bottom: 14px; }
.cta p  { color: var(--teal-light); font-size: 1.1rem; margin-bottom: 28px; }
.cta-buttons { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: #031a1f;
  padding: 56px 0 24px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px)  { .footer-inner { grid-template-columns: 1.2fr 2fr; } }
.footer-brand p { color: var(--teal-light); margin: 12px 0 0; }
.logo-footer { color: var(--white); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-links h4 {
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal-logo);
  margin-bottom: 14px;
}
.footer-links a {
  display: block;
  padding: 6px 0;
  color: var(--teal-on-surface);
  font-size: .95rem;
}
.footer-links a:hover { color: var(--teal-logo); }
.footer-bottom {
  padding-top: 20px;
  color: var(--teal-light);
  text-align: center;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Focus visibility ---------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.store-badge:focus-visible {
  outline: 2px solid var(--teal-logo);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ========================================================================
   PRIVACY POLICY STYLES
   ======================================================================== */

/* ---------- Table of Contents ---------- */
.privacy-toc {
  background: var(--teal-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.privacy-toc h2 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--teal-logo);
}
.privacy-toc ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .privacy-toc ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.privacy-toc li {
  margin: 0;
}
.privacy-toc a {
  display: block;
  padding: 8px 12px;
  color: var(--teal-on-surface);
  text-decoration: none;
  border-radius: 6px;
  transition: background .2s ease, color .2s ease;
}
.privacy-toc a:hover {
  background: rgba(61, 216, 192, 0.1);
  color: var(--teal-logo);
}

/* ---------- Privacy Article Container ---------- */
.privacy-article {
  max-width: 820px;
  margin: 0 auto;
}

/* ---------- Section Spacing & Scroll Target ---------- */
.privacy-section {
  margin-bottom: 48px;
  scroll-margin-top: 100px; /* Account for sticky header */
}

/* ---------- Headings ---------- */
.privacy-section h2 {
  font-size: clamp(1.5rem, 1.8vw + 1rem, 2rem);
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-strong);
}
.privacy-section h3 {
  font-size: 1.25rem;
  color: var(--teal-logo);
  margin: 28px 0 12px;
}
.privacy-section h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin: 20px 0 8px;
  font-weight: 600;
}

/* ---------- Body Text ---------- */
.privacy-section p {
  color: var(--teal-on-surface);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ---------- Lists ---------- */
.privacy-section ul,
.privacy-section ol {
  color: var(--teal-on-surface);
  margin: 12px 0 20px 0;
  padding-left: 0;
  list-style: none;
}
.privacy-section li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.65;
}
.privacy-section li::before {
  content: "•";
  position: absolute;
  left: 12px;
  color: var(--teal-logo);
  font-weight: 700;
}
.privacy-section ol {
  counter-reset: privacy-counter;
}
.privacy-section ol li::before {
  counter-increment: privacy-counter;
  content: counter(privacy-counter) ".";
  color: var(--teal-logo);
}

/* ---------- Links ---------- */
.privacy-section a {
  color: var(--teal-logo);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color .2s ease;
}
.privacy-section a:hover {
  color: #4fe3cb;
}

/* ---------- Info Boxes (for company details, ICO contact) ---------- */
.info-box {
  background: var(--teal-dark);
  border: 1px solid var(--border-strong);
  border-left: 4px solid var(--teal-logo);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 20px 0;
}
.info-box p {
  margin-bottom: 8px;
  color: var(--teal-on-surface);
}
.info-box p:last-child {
  margin-bottom: 0;
}
.info-box strong {
  color: var(--white);
}

/* ---------- Rights Grid (user data rights cards) ---------- */
.rights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}
@media (min-width: 640px) {
  .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .rights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.right-card {
  background: var(--teal-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: transform .2s ease, border-color .2s ease;
}
.right-card:hover {
  transform: translateY(-2px);
  border-color: var(--teal-logo);
}
.right-card h4 {
  font-size: 1rem;
  color: var(--teal-logo);
  margin: 0 0 8px;
  font-weight: 600;
}
.right-card p {
  font-size: .9rem;
  color: var(--teal-light);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Print Styles ---------- */
@media print {
  .site-header,
  .site-footer,
  .privacy-toc {
    display: none;
  }

  .privacy-section {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .privacy-article,
  .privacy-section p,
  .privacy-section li {
    color: #000;
  }

  .privacy-section a {
    color: #0066cc;
  }
}
