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

:root {
  --cream: #FAF6F0;
  --peach: #FBDFC9;
  --deep: #121212;
  --accent: #B5462A;
  --accent-light: #D4614099;
  --white: #FFFFFF;
  --gray: #6B6B6B;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(250,246,240,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18,18,18,0.07);
  transition: background 0.3s;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--deep);
  text-decoration: none;
}
.logo span { color: var(--accent); }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  user-select: none;
}
.lang-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--deep);
  opacity: 0.35;
  transition: opacity 0.2s;
  padding: 2px 0;
}
.lang-toggle button.active { opacity: 1; }
.lang-toggle .divider { opacity: 0.25; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.hero-left {
  padding: 80px 48px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity:1; }
  50% { transform: scale(1.4); opacity:0.6; }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--deep);
  text-wrap: balance;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-sub {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray);
  max-width: 500px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.45s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  box-shadow: 0 4px 20px rgba(18,18,18,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 8px 32px rgba(18,18,18,0.22);
  background: #1e1e1e;
}
.btn-primary.accent {
  background: var(--accent);
}
.btn-primary.accent:hover {
  background: #9d3b23;
  box-shadow: 0 8px 32px rgba(181,70,42,0.35);
}
.btn-primary.peach {
  background: var(--peach);
  color: var(--deep);
  box-shadow: 0 4px 20px rgba(251,223,201,0.4);
}
.btn-primary.peach:hover {
  background: #f5d0b0;
  box-shadow: 0 8px 32px rgba(251,223,201,0.6);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 17px 36px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  transform: translateY(-2px) scale(1.015);
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
}

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

/* ── HERO RIGHT / PHONE VISUAL ── */
.hero-right {
  height: 100%;
  min-height: 100vh;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-phone-wrap {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-phone {
  width: 320px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(18,18,18,0.18), 0 10px 30px rgba(18,18,18,0.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.phone-status {
  background: #1c1c1e;
  padding: 14px 20px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  font-weight: 700;
}
.phone-name {
  font-size: 12px;
  font-weight: 600;
  color: white;
}
.phone-status-dot {
  width: 6px;height:6px;border-radius:50%;background:#4ade80;margin-left:auto;
}

.phone-msgs {
  background: #fafafa;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 400px;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 12px;
  line-height: 1.5;
  font-family: var(--font-body);
  max-width: 80%;
  animation: bubbleIn 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
  opacity: 0;
  transform: scale(0.85) translateY(8px);
}
.bubble-bot {
  background: #F0F0F0;
  color: #1c1c1e;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.bubble-user {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366);
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
@keyframes bubbleIn {
  to { opacity:1; transform: scale(1) translateY(0); }
}

.phone-input-bar {
  background: #fff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #f0f0f0;
}
.phone-input-fake {
  flex:1;
  background: #F0F0F0;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 11px;
  color: #aaa;
  font-family: var(--font-body);
}

/* floating badges */
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--deep);
  box-shadow: 0 8px 24px rgba(18,18,18,0.12);
  white-space: nowrap;
  z-index: 3;
}
.badge-left {
  left: -60px;
  top: 30%;
  animation: floatBadge 3s ease-in-out infinite;
}
.badge-right {
  right: -50px;
  bottom: 25%;
  animation: floatBadge 3s ease-in-out 1.5s infinite;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-icon { font-size: 16px; }

/* ── FADEUP ── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── SCROLL SECTION ── */
.scroll-section {
  background: var(--deep);
  color: var(--white);
  position: relative;
}

.scroll-sticky-wrapper {
  height: 300vh;
  position: relative;
}

.scroll-sticky-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.scroll-left {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  position: relative;
}

.scroll-step {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 0 48px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: translateY(calc(-50% + 20px));
  pointer-events: none;
}
.scroll-step.active {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}

.scroll-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.scroll-step-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.scroll-step-desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  text-align: center;
}

.scroll-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}
.scroll-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.scroll-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.scroll-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  padding: 40px;
}

/* Phone frame for scroll section */
.scroll-phone {
  width: 300px;
  height: 580px;
  background: #1a1a1a;
  border-radius: 44px;
  border: 2px solid #2a2a2a;
  box-shadow: 0 60px 120px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.scroll-phone::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 30px;
}

.phone-topbar {
  padding: 10px 18px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.phone-topbar-avatar {
  width: 36px;height:36px;
  border-radius: 50%;
  display: flex;align-items:center;justify-content:center;
  font-weight: 700;
  font-size: 13px;
  color: white;
}

.phone-topbar-name {
  font-size: 13px;
  font-weight: 700;
  color: white;
}
.phone-topbar-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}
.phone-topbar-actions {
  margin-left: auto;
  display: flex;
  gap: 14px;
}
.phone-topbar-actions span {
  font-size: 16px;
  opacity: 0.6;
}

.phone-chat {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.phone-chat-state {
  display: none;
  flex-direction: column;
  gap: 8px;
  animation: fadeIn 0.5s ease forwards;
}
.phone-chat-state.active { display: flex; }

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

.pc-time {
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin: 4px 0;
}

.pc-bubble {
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 82%;
}

.pc-bubble.left {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.pc-bubble.right {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: white;
}

/* IG style */
.state-ig .phone-topbar { background: #1a1a1a; border-bottom: 1px solid rgba(255,255,255,0.06); }
.state-ig .phone-topbar-avatar { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.state-ig .phone-chat { background: #121212; }
.state-ig .pc-bubble.left { background: #262626; color: rgba(255,255,255,0.9); }
.state-ig .pc-bubble.right { background: linear-gradient(135deg, #e6683c, #dc2743, #cc2366); }

/* WA style */
.state-wa .phone-topbar { background: #075E54; border-bottom: 1px solid rgba(255,255,255,0.06); }
.state-wa .phone-topbar-avatar { background: #25D366; color: #075E54; }
.state-wa .phone-chat { background: #0B1418; }
.state-wa .pc-bubble.left { background: #202C33; color: rgba(255,255,255,0.9); }
.state-wa .pc-bubble.right { background: #005C4B; }

/* ML style */
.state-ml .phone-topbar { background: #1c1c2e; border-bottom: 1px solid rgba(255,255,255,0.06); }
.state-ml .phone-topbar-avatar { background: var(--accent); }
.state-ml .phone-chat { background: #13131f; }
.state-ml .pc-bubble.left { background: #252535; color: rgba(255,255,255,0.9); }
.state-ml .pc-bubble.right { background: var(--accent); }

.phone-inputbar {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  background: inherit;
}
.phone-inputbar-fake {
  flex: 1;
  border-radius: 20px;
  padding: 7px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
}
.state-ig .phone-inputbar { background: #1a1a1a; }
.state-ig .phone-inputbar-fake { background: #262626; }
.state-wa .phone-inputbar { background: #1c262a; }
.state-wa .phone-inputbar-fake { background: #2a3942; }
.state-ml .phone-inputbar { background: #1c1c2e; }
.state-ml .phone-inputbar-fake { background: #252535; }

.scroll-phone-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.12;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ── FEATURES ── */
.features {
  background: var(--peach);
  padding: 120px 80px;
  text-align: center;
}

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

.section-header {
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--deep);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--white);
  border-radius: 28px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(18,18,18,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(18,18,18,0.12);
}

.price-payback {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(18,18,18,0.55);
  font-weight: 500;
}
.price-card.dark .price-payback {
  color: rgba(255,255,255,0.55);
}

.bento-card-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--deep);
}

.bento-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
}

.bento-card-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.06;
  transform: translate(20px, 20px);
}

/* ── CHANNELS ── */
.channels {
  background: var(--deep);
  color: var(--white);
  padding: 100px 80px;
  overflow: hidden;
}

.channels-logos {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 64px;
}

.channel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.channel-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.channel-logo {
  width: 80px; height: 80px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.channel-item:hover .channel-logo { transform: scale(1.08) translateY(-4px); }

.channel-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.5);
}

/* ── ABOUT ── */
.about {
  background: var(--cream);
  padding: 120px 80px;
}

.about-card {
  background: var(--deep);
  color: var(--white);
  border-radius: 32px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(18,18,18,0.18);
  max-width: 1000px;
  margin: 0 auto;
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.about-content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.about-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
}

.about-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.about-meta-item {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}
.about-meta-item span { color: rgba(255,255,255,0.9); }

/* ── PRICING ── */
.pricing {
  background: var(--peach);
  padding: 120px 80px;
  text-align: center;
}

.pricing .section-header {
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 840px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: var(--white);
  border-radius: 28px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(18,18,18,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
  align-items: center;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(18,18,18,0.13);
}

.price-card.dark {
  background: var(--deep);
  color: var(--white);
}

.price-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.price-card.dark .price-type { color: rgba(255,255,255,0.5); }

.price-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--deep);
}
.price-card.dark .price-title { color: var(--white); }

.price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--deep);
  line-height: 1;
}
.price-card.dark .price-amount { color: var(--white); }

.price-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}
.price-card.dark .price-period { color: rgba(255,255,255,0.45); }

.price-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
}
.price-card.dark .price-desc { color: rgba(255,255,255,0.55); }

.price-divider {
  height: 1px;
  background: rgba(18,18,18,0.08);
  width: 100%;
}
.price-card.dark .price-divider { background: rgba(255,255,255,0.1); }

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  text-align: left;
}

.price-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--deep);
  font-weight: 500;
}
.price-card.dark .price-feat { color: rgba(255,255,255,0.8); }

.price-feat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--deep);
  color: var(--white);
  padding: 140px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.08;
  filter: blur(100px);
  pointer-events: none;
}

.final-h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.final-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 56px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 32px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.03em;
}
.footer-logo span { color: var(--accent); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── SVG ICONS ── */
.icon-svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--deep);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════
   MOBILE — 640px and below
   ═══════════════════════════════════════════════ */
@media (max-width: 640px) {

  /* Header */
  .header {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── HERO — single column ── */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 40px;
  }
  .hero-left {
    padding: 24px 24px 8px;
    min-height: auto;
  }
  .hero-right {
    min-height: auto;
    padding: 24px 24px 40px;
    height: auto;
  }
  .hero-h1 {
    font-size: clamp(40px, 11vw, 56px) !important;
  }
  .hero-cta-group {
    width: 100%;
  }
  .hero-cta-group .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .hero-phone {
    width: 260px;
    height: 490px;
    display: flex;
    flex-direction: column;
  }
  .phone-msgs {
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }
  /* Hide decorative blobs and badges to keep mobile clean */
  .hero-badge {
    display: none;
  }

  /* ── SCROLL SECTION — collapse sticky to stacked ── */
  .scroll-sticky-wrapper {
    height: auto;
  }
  .scroll-sticky-inner {
    position: relative;
    top: auto;
    height: auto;
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 32px;
  }
  /* Collapse the inline-styled text column wrapper */
  .scroll-sticky-inner > div:first-child {
    height: auto !important;
    position: relative;
  }
  /* Show all scroll-steps stacked on mobile */
  .scroll-step {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
    padding: 0;
    margin-bottom: 48px;
  }
  .scroll-step:last-child {
    margin-bottom: 0;
  }
  .scroll-step-h2 {
    font-size: clamp(28px, 7vw, 36px);
  }
  .scroll-step-desc {
    font-size: 16px;
  }
  /* Hide the sticky phone — it doesn't work in stacked mode */
  .scroll-right {
    display: none;
  }
  .scroll-dots {
    display: none;
  }

  /* ── FEATURES / BENTO ── */
  .features {
    padding: 80px 24px;
  }
  .features .section-header {
    margin-bottom: 40px;
  }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .bento-card {
    padding: 28px 18px;
    gap: 12px;
  }

  /* ── CHANNELS ── */
  .channels {
    padding-left: 24px;
    padding-right: 24px;
  }
  .channels-logos {
    gap: 32px;
  }

  /* ── ABOUT ── */
  .about {
    padding: 80px 24px;
  }
  .about-card {
    grid-template-columns: 1fr;
  }
  .about-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
  }
  .about-content {
    padding: 32px 28px;
  }

  /* ── PRICING ── */
  .pricing {
    padding-left: 24px;
    padding-right: 24px;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .price-card {
    padding: 32px 24px;
  }

  /* ── FINAL CTA ── */
  .final-cta {
    padding: 80px 24px;
  }
  .final-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .final-buttons .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* ── FOOTER ── */
  .footer {
    padding: 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
