:root {
  --cream: #F5EFE4;
  --cream-deep: #EBE2D1;
  --cream-darker: #DDD1B8;
  --terracotta: #C3492E;
  --terracotta-deep: #9E3820;
  --terracotta-light: #E07A5F;
  --olive: #3B4A2C;
  --olive-deep: #26301A;
  --ink: #1A1611;
  --ink-soft: #4A4138;
  --peach: #E8A06B;
  --peach-soft: #F4C9A0;
  --paper: #FDFAF3;
  --gold: #C9A961;
  --shadow: rgba(26, 22, 17, 0.12);
  --shadow-deep: rgba(26, 22, 17, 0.25);
}

/* ===== Green theme override ===== */
body[data-theme="green"] {
  --terracotta: #4E8C3C;
  --terracotta-deep: #2F6024;
  --terracotta-light: #7FB86B;
  --peach: #D4B65C;
  --peach-soft: #EBDCA3;
}

/* ===== Theme Switcher ===== */
.theme-switcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--paper);
  border: 1px solid rgba(26, 22, 17, 0.1);
  border-radius: 100px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 28px -8px rgba(26, 22, 17, 0.2);
  backdrop-filter: blur(10px);
  animation: tsIn 0.6s ease-out 0.3s both;
}

@keyframes tsIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.theme-switcher-label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  padding-left: 6px;
  white-space: nowrap;
}

.theme-swatches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.theme-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  font-size: 0;
}

.theme-swatch:hover { transform: scale(1.12); }
.theme-swatch.active { border-color: var(--ink); box-shadow: 0 0 0 2px var(--paper) inset; }

.theme-swatch[data-theme="red"] { background: #C3492E; }
.theme-swatch[data-theme="green"] { background: #4E8C3C; }

@media (max-width: 560px) {
  .theme-switcher-label { display: none; }
  .theme-switcher { bottom: 16px; right: 16px; padding: 6px; }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.05 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "SOFT" 50, "opsz" 144;
}

.italic { font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ============================================
   NAV
   ============================================ */
nav {
  position: sticky;
  top: 0;
  background: rgba(245, 239, 228, 0.85);
  backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid rgba(26, 22, 17, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.logo {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--ink);
}
.logo .dot {
  width: 10px;
  height: 10px;
  background: var(--terracotta);
  border-radius: 50%;
  display: inline-block;
  margin-top: 14px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link-accedi {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 11px 14px;
  transition: color 0.2s;
}
.nav-link-accedi:hover { color: var(--terracotta); }
.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--terracotta); }

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 160, 107, 0.18) 0%, transparent 60%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ===== SOCIAL PROOF BADGE ===== */
.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid rgba(26, 22, 17, 0.08);
  padding: 8px 18px 8px 8px;
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: 0 4px 12px rgba(26, 22, 17, 0.04);
  animation: slideDown 0.6s ease-out;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-proof-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 22, 17, 0.1);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-mini {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--paper);
  overflow: hidden;
  margin-left: -10px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.avatar-mini:first-child { margin-left: 0; }

.avatar-mini svg {
  width: 100%;
  height: 100%;
  display: block;
}

.social-text {
  font-size: 13px;
  line-height: 1.25;
}

.social-text strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.social-text span {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 13px;
}

/* ===== HERO TYPOGRAPHY ===== */
.hero h1 {
  font-size: clamp(40px, 5vw, 70px);
  margin-bottom: 28px;
  letter-spacing: -0.035em;
}

.hero h1 .accent {
  color: var(--terracotta);
  font-style: italic;
}

.hero h1 .underline-mark {
  display: inline-block;
  position: relative;
}
.hero h1 .underline-mark::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -4px;
  right: -4px;
  height: 14px;
  background: var(--peach);
  z-index: -1;
  transform: skewX(-8deg);
  opacity: 0.6;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}

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

.btn-primary {
  background: var(--terracotta);
  color: var(--paper);
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 0 var(--terracotta-deep), 0 8px 24px rgba(195, 73, 46, 0.25);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--terracotta-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: var(--terracotta);
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust svg { color: var(--olive); }

/* ============================================
   VIDEO PLAYER
   ============================================ */
.video-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
}

.video-frame {
  position: relative;
  width: 360px;
  aspect-ratio: 9 / 16;
  background: linear-gradient(160deg, #2a1f15 0%, #1a1611 50%, #0d0a08 100%);
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 60px 100px -25px rgba(26, 22, 17, 0.5),
    0 30px 50px -15px rgba(26, 22, 17, 0.3),
    inset 0 0 0 2px rgba(255, 255, 255, 0.04);
  transition: transform 0.4s ease-out;
}

.video-frame:hover {
  transform: scale(1.02);
}

.video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}

.poster-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232, 160, 107, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.video-label-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 65;
  pointer-events: none;
}

.video-label-tag {
  background: rgba(0, 0, 0, 0.65);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.02em;
}

.video-label-tag.live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.video-label-tag.duration {
  background: rgba(0, 0, 0, 0.5);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s, background 0.2s;
  border: none;
  z-index: 70;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
}

.video-play-btn svg {
  width: 36px;
  height: 36px;
  color: var(--terracotta);
  margin-left: 4px;
}

.video-play-btn::before,
.video-play-btn::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  opacity: 0;
  animation: ringPulse 2.5s ease-out infinite;
}

.video-play-btn::after {
  animation-delay: 1.25s;
}

@keyframes ringPulse {
  0% { opacity: 0.7; transform: scale(0.85); }
  100% { opacity: 0; transform: scale(1.6); }
}

.video-info-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 70px 20px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  z-index: 65;
  pointer-events: none;
}

.video-author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.video-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--peach);
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  flex-shrink: 0;
}

.video-author-info {
  font-size: 12px;
  line-height: 1.3;
}

.video-author-name {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.video-author-name svg {
  width: 12px;
  height: 12px;
  color: var(--peach);
}

.video-author-role {
  opacity: 0.8;
  font-size: 11px;
}

.video-cta-text {
  margin-top: 10px;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--peach);
  line-height: 1;
  font-weight: 600;
}

.video-placeholder-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 70px));
  z-index: 60;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: rgba(232, 160, 107, 0.7);
  font-weight: 600;
  pointer-events: none;
  font-style: italic;
}

/* Floating badges */
.floating-badge {
  position: absolute;
  background: var(--paper);
  border: 1px solid rgba(26, 22, 17, 0.1);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 12px 24px -6px var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.floating-badge .icon {
  width: 36px;
  height: 36px;
  background: var(--olive);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-badge .text {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
}

.floating-badge .text strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
}

.floating-badge.top-left {
  top: 30px;
  left: -40px;
  animation: float 4s ease-in-out infinite;
}
.floating-badge.bottom-right {
  bottom: 80px;
  right: -50px;
  animation: float 4s ease-in-out 2s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   TRANSFORMATION SECTION
   ============================================ */
.transformation-section {
  padding: 100px 0 120px;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}


.ts-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}

.ts-tag {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.ts-tag::before { content: '— '; }

.ts-title {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.ts-title .italic { color: var(--terracotta); }

.ts-sub {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.frames-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 52px;
}

.frame-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(26, 22, 17, 0.08);
  white-space: nowrap;
}

.frame-stage {
  width: 100%;
  height: 380px;
  background: var(--paper);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px var(--shadow);
  border: 1px solid rgba(26, 22, 17, 0.05);
}

.frame-caption {
  margin-top: 28px;
  text-align: center;
}

.frame-caption h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  font-style: italic;
}

.frame-caption p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 240px;
  margin: 0 auto;
}

.connector {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
}

.connector-line {
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--terracotta) 0 6px, transparent 6px 12px);
  position: relative;
}

.connector-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(195, 73, 46, 0.3);
  animation: connectorPulse 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes connectorPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 4px 12px rgba(195, 73, 46, 0.3); }
  50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 6px 20px rgba(195, 73, 46, 0.5); }
}

.connector::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--peach);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 12px var(--peach);
  animation: dotMove 2.5s linear infinite;
}

@keyframes dotMove {
  0% { left: -4px; opacity: 0; }
  10% { opacity: 1; }
  45% { opacity: 1; }
  50% { left: calc(50% - 4px); opacity: 0; }
  50.01% { left: calc(50% + 18px); opacity: 0; }
  60% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 4px); opacity: 0; }
}

/* ===== FRAME 1: PAPER ===== */
.frame-paper {
  background: linear-gradient(135deg, #F5EFE4 0%, #EBE2D1 100%);
}

.paper-doc {
  width: 200px;
  background: var(--paper);
  padding: 22px 20px;
  border-radius: 4px;
  font-family: 'Fraunces', serif;
  color: var(--ink);
  box-shadow: 0 20px 40px -12px rgba(26, 22, 17, 0.25), 0 2px 4px rgba(26, 22, 17, 0.08);
  position: relative;
  background-image:
    linear-gradient(to right, transparent 16px, rgba(195, 73, 46, 0.08) 16px, rgba(195, 73, 46, 0.08) 18px, transparent 18px),
    linear-gradient(var(--paper), var(--paper));
  animation: paperWobble 5s ease-in-out infinite;
}

@keyframes paperWobble {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(-1deg) translateY(-4px); }
}

.paper-doc::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 24px;
  width: 50px;
  height: 16px;
  background: rgba(232, 160, 107, 0.6);
  transform: rotate(8deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.paper-doc h5 {
  font-size: 14px;
  font-style: italic;
  text-align: center;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  margin-bottom: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
}

.paper-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 11px;
}

.paper-row .pdots {
  flex: 1;
  border-bottom: 1px dotted var(--ink-soft);
  margin: 0 4px;
  margin-bottom: 4px;
}

.paper-stamp {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 60px;
  height: 60px;
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: rotate(-15deg);
  opacity: 0.85;
  font-family: 'Fraunces', serif;
  line-height: 1.1;
  padding: 4px;
}

/* ===== FRAME 2: CAMERA ===== */
.frame-camera {
  background: linear-gradient(135deg, #E8A06B 0%, #C3492E 100%);
  position: relative;
  overflow: hidden;
}

.frame-camera::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.camera-phone {
  width: 170px;
  height: 320px;
  background: var(--ink);
  border-radius: 22px;
  padding: 8px;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}

.camera-phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 14px;
  background: #000;
  border-radius: 100px;
  z-index: 10;
}

.camera-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2a1f15 0%, #1a1611 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.camera-top {
  padding: 30px 12px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: white;
  font-weight: 600;
}

.camera-top-flash {
  background: rgba(255,255,255,0.1);
  padding: 3px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.camera-viewfinder {
  flex: 1;
  position: relative;
  margin: 8px;
  background: rgba(245, 239, 228, 0.95);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera-target {
  width: 100px;
  background: var(--paper);
  padding: 10px 8px;
  border-radius: 2px;
  font-family: 'Fraunces', serif;
  color: var(--ink);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transform: rotate(-2deg);
}

.camera-target h6 {
  font-size: 7px;
  font-style: italic;
  text-align: center;
  border-bottom: 0.5px solid var(--ink);
  padding-bottom: 3px;
  margin-bottom: 4px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
}

.camera-target-row {
  display: flex;
  justify-content: space-between;
  font-size: 6px;
  margin-bottom: 2px;
}

.vf-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--terracotta);
  z-index: 3;
}

.vf-corner.tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.vf-corner.tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.vf-corner.bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.vf-corner.br { bottom: 8px; right: 8px; border-left: none; border-top: none; }

.af-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--peach);
  border-radius: 4px;
  animation: afPulse 1.5s ease-in-out infinite;
  z-index: 4;
}

@keyframes afPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
}

.camera-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px 14px;
  position: relative;
}

.shutter-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 3px solid rgba(255,255,255,0.4);
  box-shadow: inset 0 0 0 2px var(--ink);
  position: relative;
  animation: shutterPulse 2s ease-in-out infinite;
}

@keyframes shutterPulse {
  0%, 100% { transform: scale(1); box-shadow: inset 0 0 0 2px var(--ink), 0 0 0 0 rgba(255,255,255,0.4); }
  50% { transform: scale(1.05); box-shadow: inset 0 0 0 2px var(--ink), 0 0 0 8px rgba(255,255,255,0); }
}

.flash-overlay {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  animation: cameraFlash 5s ease-in-out infinite;
}

@keyframes cameraFlash {
  0%, 88%, 100% { opacity: 0; }
  90% { opacity: 0.9; }
  93% { opacity: 0; }
}

/* ===== FRAME 3: DIGITAL ===== */
.frame-digital {
  background: linear-gradient(135deg, #3B4A2C 0%, #26301A 100%);
  position: relative;
  overflow: hidden;
}

.frame-digital::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232, 160, 107, 0.15) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.4;
}

.digital-phone {
  width: 170px;
  height: 320px;
  background: var(--ink);
  border-radius: 22px;
  padding: 8px;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}

.digital-phone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 14px;
  background: #000;
  border-radius: 100px;
  z-index: 10;
}

.digital-screen {
  width: 100%;
  height: 100%;
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.digital-header {
  padding: 32px 12px 8px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
}

.digital-name {
  font-family: 'Fraunces', serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
}

.digital-place {
  font-size: 8px;
  color: var(--ink-soft);
}

.digital-flags {
  display: flex;
  gap: 3px;
  margin-top: 6px;
  overflow: hidden;
  scrollbar-width: none;
}
.digital-flags::-webkit-scrollbar { display: none; }

.digital-flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  flex-shrink: 0;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  padding: 0;
}

.digital-flag.active {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 1px var(--terracotta);
}

.digital-flag-inner {
  width: 100%;
  height: 100%;
  display: block;
}

.digital-body {
  flex: 1;
  padding: 8px 10px;
  overflow: hidden;
}

.digital-section {
  display: none;
  animation: fadeSlide 0.3s ease-out;
}
.digital-section.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.digital-section-title {
  font-family: 'Fraunces', serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  margin-bottom: 6px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--cream-deep);
}

.digital-item {
  padding: 4px 0;
  border-bottom: 1px solid rgba(26, 22, 17, 0.05);
}

.digital-item:last-child { border-bottom: none; }

.digital-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 4px;
}

.digital-item-name {
  font-family: 'Fraunces', serif;
  font-size: 9px;
  font-weight: 500;
  flex: 1;
  line-height: 1.2;
}

.digital-item-price {
  font-family: 'Fraunces', serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--terracotta);
  white-space: nowrap;
}

.digital-allergen {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 6px;
  background: var(--cream-deep);
  padding: 1px 3px;
  border-radius: 100px;
  color: var(--olive);
  font-weight: 600;
  margin-top: 2px;
}

.lang-chip {
  position: absolute;
  top: 18px;
  right: 14px;
  background: var(--peach);
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(232, 160, 107, 0.4);
  z-index: 5;
  animation: chipBounce 3s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes chipBounce {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-6px) rotate(8deg); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.section-tag {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.section-tag::before { content: '— '; }

.section-title {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.section-title .italic { color: var(--terracotta); }

.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.5;
}

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

.feature-card {
  background: var(--paper);
  border: 1px solid rgba(26, 22, 17, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px var(--shadow-deep);
  border-color: rgba(26, 22, 17, 0.12);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--terracotta);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(-6deg) scale(1.08);
  background: var(--peach-soft);
}

.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.feature-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.feature-card .feat-highlight {
  color: var(--terracotta);
  font-weight: 700;
}

@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: 120px 0;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 160, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-toggle {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid rgba(26, 22, 17, 0.08);
  padding: 5px;
  border-radius: 100px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
}

.pricing-section .section-head {
  position: relative;
  z-index: 2;
}

.toggle-wrap {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.pricing-toggle button {
  background: transparent;
  border: none;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
  border-radius: 100px;
  transition: all 0.3s ease;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-toggle button.active {
  background: var(--ink);
  color: var(--paper);
}

.save-badge {
  background: var(--peach);
  color: var(--ink);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pricing-toggle button.active .save-badge {
  background: var(--peach);
  color: var(--ink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===== SPLIT LAYOUT (launch offer) ===== */
.pricing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "left  right"
    "list  right";
  grid-template-rows: auto 1fr;
  column-gap: 72px;
  row-gap: 28px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.split-left { grid-area: left; }
.split-right { grid-area: right; }
.split-checklist { grid-area: list; }

.split-left h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.split-left h2 .italic { color: var(--ink); font-weight: 500; }

.split-left .split-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 0;
  max-width: 440px;
}

.split-checklist {
  list-style: none;
  padding: 0;
}

.split-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.split-check-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.split-checklist li:hover .split-check-icon {
  transform: scale(1.12) rotate(-6deg);
}

/* ===== OFFER CARD ===== */
.offer-card {
  background: var(--paper);
  border: 1.5px solid rgba(26, 22, 17, 0.1);
  border-radius: 24px;
  padding: 44px 40px 36px;
  position: relative;
  box-shadow: 0 30px 60px -25px var(--shadow-deep), 0 6px 0 rgba(26, 22, 17, 0.15);
  animation: cardLift 0.8s ease-out;
}

@keyframes cardLift {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.launch-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(26, 22, 17, 0.25);
  white-space: nowrap;
}

.launch-flag {
  width: 16px;
  height: 11px;
  border-radius: 2px;
  background: linear-gradient(to right, #009246 33%, #fff 33%, #fff 66%, #CE2B37 66%);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.offer-old-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.offer-old-price {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--ink-soft);
  font-weight: 500;
  opacity: 0.6;
}

.offer-discount {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
}

.offer-price-big {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.offer-currency {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
}

.offer-amount {
  font-family: 'Fraunces', serif;
  font-size: 84px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
}

.offer-period {
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 500;
}

.offer-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.5;
}

.offer-sub strong {
  color: var(--ink);
  font-weight: 600;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--terracotta);
  color: var(--paper);
  padding: 18px 28px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 0 var(--terracotta-deep), 0 10px 24px rgba(195, 73, 46, 0.25);
  font-family: inherit;
  margin-bottom: 22px;
}

.offer-cta:hover {
  transform: translateY(-2px);
  background: var(--terracotta-deep);
}

.scarcity-box {
  background: transparent;
  border: 1.5px dashed rgba(26, 22, 17, 0.25);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  margin-bottom: 18px;
}

.scarcity-box-text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
}

.scarcity-box-text strong {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
}

.scarcity-small {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.offer-fineprint {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}

@media (max-width: 960px) {
  .pricing-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "left"
      "right"
      "list";
    row-gap: 32px;
    max-width: 540px;
  }
  .offer-amount { font-size: 72px; }
}

@media (max-width: 480px) {
  .offer-card { padding: 36px 24px 28px; }
  .offer-amount { font-size: 64px; }
}

.price-card {
  background: var(--paper);
  border: 1px solid rgba(26, 22, 17, 0.08);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px var(--shadow-deep);
}

.price-card.featured {
  background: var(--ink);
  color: var(--cream);
  transform: scale(1.03);
  border-color: var(--terracotta);
  box-shadow: 0 20px 50px -15px rgba(26, 22, 17, 0.4);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.price-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(195, 73, 46, 0.35);
}

.price-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 8px;
}

.price-desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  min-height: 42px;
}

.price-card.featured .price-desc { color: rgba(245, 239, 228, 0.7); }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.price-currency {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
}

.price-number {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--ink-soft);
}
.price-card.featured .price-period { color: rgba(245, 239, 228, 0.7); }

.price-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  min-height: 18px;
}
.price-card.featured .price-note { color: rgba(245, 239, 228, 0.6); }

.price-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, background 0.2s;
  margin-bottom: 28px;
  font-family: inherit;
}

.price-cta:hover { transform: translateY(-2px); }

.price-card.featured .price-cta {
  background: var(--terracotta);
  box-shadow: 0 4px 0 var(--terracotta-deep);
}

.price-card.featured .price-cta:hover { background: var(--terracotta-deep); }

.price-features {
  list-style: none;
  padding: 0;
  flex: 1;
}

.price-features li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  border-top: 1px dashed rgba(26, 22, 17, 0.08);
}

.price-card.featured .price-features li {
  border-top-color: rgba(245, 239, 228, 0.12);
}

.price-features li:first-child { border-top: none; }

.price-features li svg {
  flex-shrink: 0;
  color: var(--terracotta);
  margin-top: 2px;
}

.price-card.featured .price-features li svg { color: var(--peach); }

.pricing-footer-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
  z-index: 2;
}

.pricing-footer-note strong { color: var(--ink); }

@media (max-width: 980px) {
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 160, 107, 0.1) 0%, transparent 70%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: var(--paper);
  border: 1px solid rgba(26, 22, 17, 0.06);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px var(--shadow-deep);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 24px;
  font-family: 'Fraunces', serif;
  font-size: 96px;
  color: var(--peach);
  line-height: 1;
  opacity: 0.5;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-quote strong {
  color: var(--terracotta);
  font-weight: 600;
  background: rgba(232, 160, 107, 0.22);
  padding: 0 4px;
  border-radius: 3px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 22, 17, 0.06);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar svg { width: 100%; height: 100%; display: block; }

.testimonial-info {
  font-size: 13px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

.testimonial-role {
  color: var(--ink-soft);
  font-size: 13px;
}

@media (max-width: 980px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 120px 0;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: var(--paper);
  border: 1px solid rgba(26, 22, 17, 0.06);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item[open] {
  box-shadow: 0 12px 28px -8px var(--shadow);
}

.faq-item summary {
  padding: 22px 28px;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  letter-spacing: -0.01em;
  user-select: none;
  transition: color 0.2s;
}

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

.faq-item summary:hover { color: var(--terracotta); }

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: var(--paper);
}

.faq-body {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  animation: faqOpen 0.3s ease-out;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-body strong { color: var(--ink); font-weight: 700; }

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: var(--ink);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px var(--shadow-deep);
}

.cta-card-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--peach);
  margin-bottom: 16px;
  display: inline-block;
  transform: rotate(-2deg);
}

.cta-card h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.cta-card h2 .italic { color: var(--peach); }

.cta-card p {
  font-size: 19px;
  color: rgba(245, 239, 228, 0.8);
  margin-bottom: 40px;
  line-height: 1.5;
}

.cta-card .btn-primary {
  font-size: 18px;
  padding: 20px 40px;
}

.cta-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(245, 239, 228, 0.7);
}

.cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-trust svg { color: var(--peach); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  color: rgba(245, 239, 228, 0.7);
  padding: 80px 0 32px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

footer .logo {
  color: var(--cream);
  font-size: 28px;
  margin-bottom: 18px;
}

.footer-about {
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245, 239, 228, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background 0.2s, transform 0.2s;
}

.footer-socials a:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 18px;
  font-style: italic;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a {
  color: rgba(245, 239, 228, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--peach); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 239, 228, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.footer-bottom-links a {
  color: rgba(245, 239, 228, 0.6);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--peach); }

.footer-made {
  font-family: 'Caveat', cursive;
  font-size: 17px;
  color: var(--peach);
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 60px 30px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 80px; }
  .video-stage { padding: 20px 0; }
  .floating-badge.top-left { left: 0; }
  .floating-badge.bottom-right { right: 0; }

  .frames-row {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .connector {
    transform: rotate(90deg);
    margin: 10px auto;
  }
}

@media (max-width: 820px) {
  .video-frame { width: 320px; }
  .floating-badge { display: none; }
  .frame-stage { height: 320px; }
}

@media (max-width: 480px) {
  .video-frame { width: 280px; }
  .social-proof-badge {
    padding: 6px 14px 6px 6px;
    gap: 10px;
  }
  .avatar-mini { width: 30px; height: 30px; }
  .social-text strong { font-size: 14px; }
  .social-text span { font-size: 12px; }
  .container { padding: 0 20px; }
  .cta-card { padding: 50px 24px; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== QR Section (2-col) ===== */
.qr-section {
  padding: 100px 0 80px;
  background: var(--paper);
}
.qr-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left: visual card */
.qr-visual {
  display: flex;
  justify-content: center;
}
.qr-card-float {
  text-align: center;
}
.qr-card-inner {
  background: #fff;
  border-radius: 20px;
  padding: 24px 24px 20px;
  box-shadow: 0 20px 60px -16px var(--shadow-deep), 0 0 0 1px rgba(26,22,17,0.04);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  animation: qrFloat 4s ease-in-out infinite;
}
.qr-card-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px -16px var(--shadow-deep), 0 0 0 1px rgba(26,22,17,0.04);
}
@keyframes qrFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.qr-card-inner:hover { animation: none; transform: translateY(-6px); }

/* Scan line animation */
.qr-scan-line {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
  border-radius: 2px;
  opacity: 0.7;
  animation: scanMove 2.8s ease-in-out infinite;
  z-index: 2;
  box-shadow: 0 0 12px var(--terracotta-light);
}
@keyframes scanMove {
  0%, 100% { top: 18%; opacity: 0; }
  10% { opacity: 0.7; }
  50% { top: 62%; opacity: 0.7; }
  90% { opacity: 0.7; }
  95% { opacity: 0; }
}
.qr-card-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.qr-card-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.qr-card-url {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.6;
}
.qr-formats {
  margin-top: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Right: copy */
.qr-copy { max-width: 480px; }
.qr-tag {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.qr-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 20px;
}
.qr-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.qr-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qr-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}
.qr-checks li svg { flex-shrink: 0; margin-top: 2px; }
.qr-checks li strong { font-weight: 700; }

@media (max-width: 820px) {
  .qr-section { padding: 64px 0 48px; }
  .qr-layout { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .qr-copy { max-width: 100%; }
  .qr-checks { align-items: flex-start; text-align: left; }
  .qr-card-inner { padding: 20px 20px 16px; }
}

/* ===== Demo Modal ===== */
.demo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26, 22, 17, 0.6);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.demo-modal-inner {
  position: relative;
  animation: modalIn 0.3s ease-out;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.demo-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid rgba(26, 22, 17, 0.1);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--shadow);
  z-index: 1;
  transition: transform 0.15s;
}
.demo-modal-close:hover { transform: scale(1.1); }
.demo-phone-frame {
  width: 375px;
  height: 700px;
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 64px -16px var(--shadow-deep), 0 0 0 8px var(--ink), 0 0 0 10px rgba(26, 22, 17, 0.3);
}
.demo-phone-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 480px) {
  .demo-phone-frame {
    width: 100%;
    height: 85vh;
    border-radius: 20px;
    box-shadow: 0 16px 48px -12px var(--shadow-deep), 0 0 0 4px var(--ink);
  }
}

/* ===== WhatsApp FAB ===== */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 190;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* Move theme switcher up to avoid overlap */
.theme-switcher {
  bottom: 90px !important;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
}
.cookie-banner p {
  margin: 0;
}
.cookie-banner a {
  color: var(--peach);
  text-decoration: underline;
}
.cookie-banner button {
  background: var(--terracotta);
  color: #fff;
  border: none;
  padding: 6px 20px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cookie-banner button:hover {
  opacity: 0.85;
}

@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 14px 16px;
  }
  .wa-fab {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .theme-switcher {
    bottom: 76px !important;
  }
}
