/* ── Reset & base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --amber-light: #fef3c7;
  --amber-glow:  #fff7e6;
  --dark:        #0f172a;
  --mid:         #475569;
  --light:       #94a3b8;
  --border:      #e2e8f0;
  --cream:       #f8fafc;
  --white:       #ffffff;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.05);
  --shadow-md:   0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.10);
  --font:        'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

/* ── Layout helpers ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

/* ── Nav ──────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--mid);
  transition: color .2s;
}

.nav-links a:hover { color: var(--dark); }
.nav-links a.active { color: var(--dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .2s;
  border-radius: var(--radius-md);
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  padding: 12px 24px;
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,158,11,.45);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
  padding: 11px 22px;
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber-dark);
}

.nav-mobile-toggle { display: none; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 96px;
  background: linear-gradient(165deg, #fffbf0 0%, #fff 55%, #fff 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-light);
  color: var(--amber-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: .02em;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--mid);
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 12px 20px 12px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  transition: all .2s;
  min-width: 180px;
}

.store-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.store-btn--soon,
.store-btn--soon:hover {
  opacity: 0.65;
  cursor: default;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.store-btn-icon { font-size: 27px; line-height: 1; }

.store-btn-text strong { display: block; font-size: 18px; font-weight: 700; }

.hero-divider {
  color: var(--light);
  font-size: 13px;
  font-weight: 500;
}

.hero-eu-badge {
  display: flex;
  margin: 4px 0 32px;
}

.hero-eu-badge img {
  height: 74px;
  width: auto;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mid);
}

.hero-trust-dots { display: flex; }

.hero-trust-dot {
  width: 28x;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--amber-light);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -6px;
}

.hero-trust-dot:first-child { margin-left: 0; }

/* ── Phone mockup ─────────────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.phone-wrap {
  position: relative;
  width: 260px;
}

.phone-wrap-back {
  position: absolute;
  top: 24px;
  left: -40px;
  width: 240px;
  opacity: .5;
  transform: rotate(-6deg);
  filter: blur(1px);
}

.phone-frame {
  background: var(--dark);
  border-radius: 40px;
  padding: 14px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}

.phone-screen {
  background: var(--cream);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/19;
}

.phone-screen-video {
  aspect-ratio: 876/1920;
  background: #000;
}

.phone-status-bar {
  background: var(--white);
  padding: 12px 20px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
}

.phone-header {
  background: var(--white);
  padding: 10px 16px 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-header-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.phone-header-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.phone-feed {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--cream);
}

.moment-card-mock {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.moment-card-img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.moment-card-img.warm { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.moment-card-img.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.moment-card-img.pink { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }

.moment-card-body { padding: 10px 12px; }

.moment-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  background: var(--amber-light);
  color: var(--amber-dark);
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 4px;
}

.moment-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.moment-card-meta {
  font-size: 10px;
  color: var(--light);
  margin-top: 3px;
}

/* Floating badge */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.float-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.float-badge-text { font-size: 12px; line-height: 1.3; }
.float-badge-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); }
.float-badge-text span { color: var(--mid); font-size: 11px; }

.float-badge-1 {
  right: -60px;
  top: -20px;
}

.float-badge-2 {
  left: -50px;
  bottom: -10px;
}

/* ── Section labels ───────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber-light);
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 540px;
}

/* ── Features ─────────────────────────────────────────────────── */
.features { background: var(--cream); }

.features-header { text-align: center; margin-bottom: 64px; }

.features-header .section-sub { margin: 0 auto; }

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .25s;
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
}

/* ── For parents / For family sections ───────────────────────── */
.for-section {
  padding: 0;
  overflow: hidden;
}

.for-parents { background: var(--white); }
.for-family  { background: var(--cream); }

.for-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.for-section-inner-reverse { direction: rtl; }
.for-section-inner-reverse > * { direction: ltr; }

/* Visual side */
.for-visual { position: relative; }

.for-visual-bg {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

.for-visual-bg-warm {
  background: linear-gradient(145deg, #fff9ed 0%, #fef3c7 100%);
}

.for-visual-bg-green {
  background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
}

/* Mock cards grid */
.for-visual-emoji-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.for-visual-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.for-visual-card-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.for-visual-card-body { padding: 12px 14px; }

.for-visual-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  background: var(--amber-light);
  color: var(--amber-dark);
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 4px;
}

.for-visual-title { font-size: 13px; font-weight: 700; color: var(--dark); }
.for-visual-meta  { font-size: 11px; color: var(--light); margin-top: 2px; }

/* ── Photo collage (For parents) ─────────────────────────────── */
.photo-collage {
  position: relative;
  width: 460px;
  height: 460px;
}

.photo-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 10px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Web_Reading — back left, ~25% overlap with front card */
.photo-card--back-left {
  width: 285px;
  height: 315px;
  top: 20px;
  left: -120px;
  transform: rotate(-6deg);
  z-index: 1;
}

/* Web_Babyfoot — back right, shifted further right */
.photo-card--back-right {
  width: 263px;
  height: 300px;
  top: 0;
  right: -150px;
  transform: rotate(5deg);
  z-index: 2;
}

/* Web_Superdad — front center */
.photo-card--front {
  width: 315px;
  height: 345px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-1.5deg);
  z-index: 3;
  padding-bottom: 36px;
}

.photo-card-label {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber-dark);
}

/* ── Photo collage (For family) ──────────────────────────────── */
.photo-collage-family {
  width: 420px;
  height: 420px;
}

/* Web_Activity — back, rotated right */
.photo-card-family--back {
  width: 300px;
  height: 330px;
  top: 20px;
  right: -136px;
  transform: rotate(6deg);
  z-index: 1;
}

/* Web_Grandma — front, slightly rotated left */
.photo-card-family--front {
  width: 330px;
  height: 363px;
  bottom: 0;
  left: -60px;
  transform: rotate(-4deg);
  z-index: 2;
  padding-bottom: 36px;
}

/* Family visual */
.for-family-visual {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.for-family-notification {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbf0;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.for-family-notif-icon { font-size: 20px; flex-shrink: 0; }
.for-family-notif-title { font-size: 13px; font-weight: 700; color: var(--dark); }
.for-family-notif-sub   { font-size: 12px; color: var(--mid); margin-top: 2px; }

.for-family-avatars {
  display: flex;
  gap: 8px;
  align-items: center;
}

.for-family-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.for-family-avatar-add {
  background: var(--border);
  color: var(--mid);
  font-size: 16px;
  font-weight: 700;
}

.for-family-label { font-size: 12px; color: var(--light); font-weight: 500; margin-top: -8px; }

.for-family-reactions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.for-family-reaction {
  font-size: 13px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Text side */
.for-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px 64px 64px;
  gap: 20px;
}

.for-section-inner-reverse .for-text {
  padding: 64px 64px 64px 72px;
}

.for-pill {
  display: inline-flex;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--amber);
  color: var(--amber-dark);
  background: var(--amber-light);
}

.for-pill-green {
  border-color: #16a34a;
  color: #15803d;
  background: #dcfce7;
}

.for-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--dark);
}

.for-desc {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 440px;
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials { background: linear-gradient(165deg, #fffbf0 0%, #fff 60%); }

.testimonials-header { text-align: center; margin-bottom: 56px; }

.testimonials-header .section-sub { margin: 0 auto; }

/* Carousel wrapper */
.testimonials-carousel {
  position: relative;
}

.testimonials-track-outer {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  transition: box-shadow .2s;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-stars { color: var(--amber); font-size: 16px; letter-spacing: 2px; }

.testimonial-quote {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.testimonial-role { font-size: 12px; color: var(--light); }

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
  border-color: var(--amber);
  color: var(--amber-dark);
  box-shadow: var(--shadow-sm);
}

.carousel-btn:disabled {
  opacity: .35;
  cursor: default;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .2s;
}

.carousel-dot.active {
  background: var(--amber);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
  .testimonials-track-outer {
    overflow: hidden;
  }
}

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq { background: var(--cream); }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: flex-start;
}

.faq-sidebar {}

.faq-list { display: flex; flex-direction: column; gap: 2px; }

details {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

details + details { margin-top: 8px; }

details[open] { border-color: var(--amber-light); }

summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 20px;
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .2s;
}

details[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}

/* ── CTA banner ───────────────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(245,158,11,.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.cta-banner-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-banner-sub {
  font-size: 17px;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.store-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.15);
  padding: 12px 20px 12px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  min-width: 180px;
}

.store-btn-light:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.3);
}

.store-btn-light--soon,
.store-btn-light--soon:hover {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.store-btn-light .store-btn-icon { font-size: 27px; }
.store-btn-light .store-btn-text strong { display: block; font-size: 18px; font-weight: 700; }

.cta-or { color: #475569; font-size: 14px; font-weight: 500; }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: var(--light);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}

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

.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 28px; filter: brightness(0) invert(1); opacity: .7; }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: var(--light);
  transition: color .2s;
}

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  display: inline-flex;
  color: var(--light);
  transition: color .2s, transform .2s;
}

.footer-social a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.footer-social svg { width: 20px; height: 20px; display: block; }

.footer-copy { font-size: 13px; color: #475569; }

/* ── EU / GDPR trust bar ─────────────────────────────────────── */
.eu-trust {
  background: linear-gradient(165deg, #fffbf0 0%, #fff 60%);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eu-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.eu-flag {
  width: 90px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

.eu-flag svg { display: block; width: 100%; }

.eu-trust-text {}

.eu-trust-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.eu-trust-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 580px;
}

/* ── Mobile video section ────────────────────────────────────── */
.mobile-video-section {
  display: none; /* hidden on desktop */
  background: var(--cream);
  padding: 0 0 48px;
}

.mobile-video-wrap {
  display: flex;
  justify-content: center;
}

.mobile-phone-shell {
  width: 260px;
  background: var(--dark);
  border-radius: 40px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
}

.mobile-demo-video {
  width: 100%;
  border-radius: 28px;
  display: block;
  aspect-ratio: 876/1920;
  object-fit: cover;
}

/* ── Blog listing ─────────────────────────────────────────────── */
.blog-hero {
  padding: 64px 0 48px;
  background: linear-gradient(165deg, #fffbf0 0%, #fff 60%);
  text-align: center;
}

.blog-hero .section-sub { margin: 0 auto; }

.blog-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.blog-sort-label { font-size: 13px; color: var(--mid); font-weight: 500; }

.blog-sort-toggle {
  display: inline-flex;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.blog-sort-btn {
  border: none;
  background: transparent;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font);
  transition: all .2s;
}

.blog-sort-btn:hover:not(.active) { color: var(--dark); }

.blog-sort-btn.active {
  background: var(--dark);
  color: var(--white);
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .25s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber-light);
}

.blog-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--amber-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.blog-card-title { font-size: 18px; font-weight: 700; color: var(--dark); line-height: 1.35; }

.blog-card-excerpt { font-size: 14px; color: var(--mid); line-height: 1.6; flex: 1; }

.blog-card-readmore { font-size: 14px; font-weight: 600; color: var(--amber-dark); margin-top: 4px; }

.blog-empty {
  text-align: center;
  padding: 56px 24px;
  color: var(--mid);
  font-size: 16px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  grid-column: 1 / -1;
}

/* ── Blog post ────────────────────────────────────────────────── */
.post-hero {
  padding: 56px 0 32px;
  background: linear-gradient(165deg, #fffbf0 0%, #fff 60%);
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 24px;
}

.post-back:hover { color: var(--amber-dark); }

.post-meta {
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 12px;
}

.post-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--dark);
  max-width: 760px;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.post-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.post-author-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.post-author-role { font-size: 12px; color: var(--light); }

.post-tldr {
  max-width: 720px;
  margin: 32px auto 0;
  background: var(--amber-glow);
  border: 1px solid var(--amber-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.7;
}

.post-tldr strong { color: var(--amber-dark); }

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 64px;
}

.post-body p { font-size: 17px; color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.post-body h2 { font-size: 24px; font-weight: 700; color: var(--dark); margin: 40px 0 16px; letter-spacing: -.01em; }
.post-body h3 { font-size: 19px; font-weight: 700; color: var(--dark); margin: 28px 0 12px; }
.post-body img { border-radius: var(--radius-lg); margin: 24px 0; box-shadow: var(--shadow-sm); }
.post-body ul, .post-body ol { margin: 0 0 20px 22px; color: var(--mid); font-size: 17px; line-height: 1.8; }
.post-body a { color: var(--amber-dark); text-decoration: underline; }

.post-body ul.icon-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-body ul.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.post-body ul.icon-list li::before {
  flex-shrink: 0;
  line-height: 1.8;
}

.post-body ul.icon-x li::before { content: "❌"; font-size: 0.8em; }
.post-body ul.icon-sparkle li::before { content: "✨"; }

.post-body blockquote {
  border-left: 3px solid var(--amber);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--dark);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  section { padding: 72px 0; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-eu-badge { justify-content: center; margin: 0 0 24px; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  /* Remove gap left by hidden phone mockup */
  .hero { padding-bottom: 64px; }

  .eu-trust-inner { flex-direction: column; gap: 24px; text-align: center; }
  .eu-trust-desc { margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .for-section-inner,
  .for-section-inner-reverse { grid-template-columns: 1fr; direction: ltr; }
  .for-section-inner-reverse .for-visual { order: -1; }
  .for-text { padding: 40px 24px; }
  .for-section-inner-reverse .for-text { padding: 40px 24px; }
  .for-visual-bg { min-height: 320px; padding: 32px 24px; }
  .for-visual-emoji-grid { max-width: 100%; flex-direction: row; flex-wrap: wrap; }
  .for-visual-card { flex: 1 1 140px; }
  .for-visual-card-img { height: 80px; font-size: 36px; }
  .photo-collage { width: 300px; height: 340px; }
  .photo-card--back-left { width: 190px; height: 210px; top: 15px; left: 30px; }
  .photo-card--back-right { width: 175px; height: 200px; top: 0; right: 0; }
  .photo-card--front { width: 210px; height: 230px; }
  .photo-collage-family { width: 280px; height: 300px; }
  .photo-card-family--back { width: 200px; height: 220px; right: -30px; }
  .photo-card-family--front { width: 200px; height: 220px; left: -30px; }
  .for-family-visual { max-width: 100%; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }

  .nav-links { display: none; }
  /* Shrink nav bar on mobile */
  .nav-inner { height: 50px; }
  .nav-logo img { height: 26px; }
  .nav-inner .btn-primary { font-size: 11px; padding: 7px 11px; }
  /* Less top padding on hero so more content is above the fold */
  .hero { padding-top: 40px; }
  /* Smaller store buttons on mobile */
  .store-btn { padding: 9px 16px; min-width: 168px; font-size: 12px; }
  .store-btn-icon { font-size: 18px; }
  .store-btn-text strong { font-size: 13px; }
  /* Show mobile video block */
  .mobile-video-section { display: block; }

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

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .cta-banner-buttons { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .store-btn { width: 100%; justify-content: center; }
  .store-btn-light { width: 100%; justify-content: center; }

  /* Testimonials: 1 card per slide, no bleed */
  .testimonial-card { flex: 0 0 100%; }
  .testimonials-track-outer { overflow: hidden; }

  .blog-grid { grid-template-columns: 1fr; }
}

/* ── Scroll fade-in ───────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
