/* ============================================
   TIMES DIGITAIS — SITE INSTITUCIONAL
   Design System + Global Styles (Unified)
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Colors */
  --coal-deep: #111110;
  --coal: #2C2C2A;
  --cream: #F1EFE8;
  --sand: #D3D1C7;
  --stone: #888780;
  --stone-dark: #444441;
  --stone-on-light: #5a5951;
  --amber: #EF9F27;
  --arrow-gray: #B4B2A9;

  /* Typography */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Geist', sans-serif;

  --text-xs:  clamp(10px, 0.7vw, 11px);
  --text-sm:  clamp(12px, 0.85vw, 14px);
  --text-md:  clamp(14px, 1vw, 17px);
  --text-lg:  clamp(18px, 1.4vw, 24px);
  --text-xl:  clamp(24px, 2.5vw, 36px);
  --text-2xl: clamp(28px, 3.2vw, 44px);
  --text-3xl: clamp(30px, 2.8vw, 42px);

  /* Spacing */
  --section-pad: clamp(64px, 8vw, 100px);
  --header-gap: clamp(40px, 5vw, 64px);
  --gap-tight: 8px;
  --gap-base: 16px;
  --gap-loose: 24px;

  /* Radii */
  --radius-btn: 8px;
  --radius-card: 14px;

  /* Container */
  --container-max: 1200px;
  --container-pad: clamp(20px, 4vw, 60px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

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

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

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}


/* ============================================
   HEADER — Frost Glass, Fixed
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  background: rgba(17, 17, 16, 0.45);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(241, 239, 232, 0.06);
  z-index: 100;
  transition: background 0.3s ease;
  padding: 0 var(--container-pad);
}

.header.is-scrolled {
  background: rgba(17, 17, 16, 0.82);
}

/* Inner wrapper aligns header content to the same container as hero/sections */
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container-max);
}

.header__logo { display: flex; align-items: center; height: 42px; }
.header__logo-img { height: 42px; width: auto; }

.header__nav { display: flex; align-items: center; }

.header__nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 72px;
  color: var(--cream);
  padding: 0 18px;
  transition: color 0.3s ease;
}
.header__nav-link:hover { color: var(--amber); }

.header__cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--amber); color: var(--coal-deep);
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm);
  padding: 12px 22px; border-radius: var(--radius-btn);
  transition: background 0.3s ease, transform 0.2s ease;
}
.header__cta:hover { background: #d88e1f; transform: translateY(-1px); }
.header__cta-arrow { width: 14px; height: 14px; opacity: 0.7; }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 4px;
  width: 44px; height: 44px; cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 12px 10px;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease;
}
.header__hamburger:active { background: rgba(255,255,255,0.12); }
.header__hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.header__hamburger span:nth-child(2) { width: 70%; }
.header__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.header__hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.header__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav overlay */
.header__mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; width: 100%; bottom: 0;
  background: rgba(17,17,16,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  z-index: 99;
}
.header__mobile-nav.open { display: flex; }

.header__mobile-nav a {
  font-family: var(--font-body); font-weight: 600;
  font-size: 20px; color: var(--cream);
  transition: color 0.3s ease;
  padding: 8px 24px;
  -webkit-tap-highlight-color: transparent;
}
.header__mobile-nav a:hover, .header__mobile-nav a:active { color: var(--amber); }


/* ============================================
   BUTTONS — Unified System
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  height: 50px; padding: 0 32px;
  border-radius: var(--radius-btn); border: none;
  cursor: pointer; transition: all 0.3s ease;
  white-space: nowrap; text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn--amber {
  background: var(--amber); color: var(--coal-deep);
}
.btn--amber:hover { background: #d88e1f; transform: translateY(-2px); }
.btn--amber .btn__arrow { opacity: 0.7; filter: brightness(0); }

.btn--primary {
  background: var(--cream); color: var(--coal-deep);
}
.btn--primary:hover { background: #e2e0d8; transform: translateY(-2px); }

.btn--outline {
  background: transparent; color: var(--amber);
  border: 1.5px solid rgba(239,159,39,0.5);
}
.btn--outline:hover { background: rgba(239, 159, 39, 0.1); transform: translateY(-2px); }

.btn--outline-amber {
  background: transparent; color: var(--amber);
  border: 1.5px solid var(--amber);
}
.btn--outline-amber:hover { background: var(--amber); color: var(--coal-deep); }

.btn__arrow { width: 14px; height: 14px; opacity: 0.7; }

/* Section eyebrow */
.section-eyebrow {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--amber);
  margin-bottom: var(--gap-base);
}


/* ============================================
   HERO — 2-column + WhatsApp phone
   ============================================ */
.hero {
  position: relative; width: 100%;
  min-height: 100vh; overflow: hidden;
  display: flex; flex-direction: column;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(17,17,16,0.97) 0%, rgba(17,17,16,0.93) 50%, rgba(17,17,16,0.78) 100%);
}

.hero__split {
  position: relative; z-index: 5; flex: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  max-width: var(--container-max); margin: 0 auto; width: 100%;
  padding: 120px var(--container-pad) 80px;
}

.hero__left { display: flex; flex-direction: column; gap: var(--gap-loose); }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(239,159,39,0.1); border: 1px solid rgba(239,159,39,0.3);
  padding: 6px 14px; border-radius: 20px; width: fit-content;
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  color: var(--amber); letter-spacing: 1.5px; text-transform: uppercase;
}

.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
  animation: blink-dot 2s ease-in-out infinite;
}
@keyframes blink-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero__h1 {
  font-family: var(--font-heading); font-size: var(--text-3xl);
  font-weight: 700; line-height: 1.15; color: var(--cream); letter-spacing: -0.02em;
}
.hero__h1 em { font-style: normal; color: var(--amber); }

.hero__p {
  font-family: var(--font-body); font-size: var(--text-md); color: var(--stone);
  line-height: 1.65; max-width: 460px;
}

.hero__checks { display: flex; flex-direction: column; gap: 10px; }
.hero__check {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: var(--text-sm); color: var(--sand);
}
.hero__check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(239,159,39,0.12); border: 1px solid rgba(239,159,39,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--amber); flex-shrink: 0; font-weight: 700;
}

.hero__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; padding-top: 4px; }

/* Hero right — WhatsApp phone + niche tabs */
.hero__right { display: flex; flex-direction: column; align-items: center; gap: 18px; }

/* Niche selector tabs */
.niche-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }

.niche-tab {
  padding: 7px 14px; border-radius: 20px;
  border: 1px solid rgba(241,239,232,0.12);
  background: rgba(44,44,42,0.3);
  color: var(--stone); font-family: var(--font-body);
  font-size: 12px; font-weight: 500; cursor: pointer;
  transition: all 0.22s ease; white-space: nowrap;
}
.niche-tab:hover { border-color: rgba(239,159,39,0.38); color: var(--sand); }
.niche-tab.active {
  background: rgba(239,159,39,0.14); border-color: var(--amber);
  color: var(--amber); font-weight: 600;
}

/* WhatsApp phone mockup */
.wpp-phone-wrap { position: relative; }
.wpp-phone-wrap::before {
  content: ''; position: absolute; inset: -80px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,159,39,0.15) 0%, rgba(239,159,39,0.06) 35%, transparent 65%);
  pointer-events: none; z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite;
}
.wpp-phone-wrap::after {
  content: ''; position: absolute; inset: -40px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,159,39,0.08) 0%, transparent 55%);
  pointer-events: none; z-index: 0; filter: blur(30px);
  animation: glow-pulse 4s ease-in-out infinite 2s;
}
@keyframes glow-pulse {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.wpp-phone {
  width: 300px; height: 580px;
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 30%, #111 60%, #1a1a1a 100%);
  border-radius: 48px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    0 0 0 1.5px rgba(255,255,255,0.08),
    0 0 0 3px #111,
    0 0 0 4px rgba(255,255,255,0.04),
    0 8px 20px rgba(0,0,0,0.4),
    0 25px 50px rgba(0,0,0,0.5),
    0 50px 100px rgba(0,0,0,0.35),
    0 0 100px rgba(239,159,39,0.06);
  position: relative; z-index: 2;
  animation: phone-float 6s ease-in-out infinite;
  padding: 8px;
}
.wpp-phone > * { position: relative; z-index: 2; }
.wpp-phone > :first-child { border-radius: 40px 40px 0 0; }
.wpp-phone > :last-child { border-radius: 0 0 40px 40px; }

/* Screen inner border */
.wpp-phone > :first-child::before {
  content: ''; position: absolute; inset: 0; border-radius: 40px 40px 0 0;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.4);
  pointer-events: none; z-index: 5;
}

/* Glass reflection — dual layer */
.wpp-phone::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 55%; z-index: 3; pointer-events: none;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.02) 25%, transparent 50%),
    linear-gradient(200deg, transparent 60%, rgba(255,255,255,0.02) 80%, transparent 100%);
  border-radius: 48px 48px 0 0;
}

/* Dynamic Island */
.wpp-phone::after {
  content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #000; border-radius: 20px;
  z-index: 10;
  box-shadow:
    inset 0 0 4px rgba(0,0,0,0.8),
    0 0 8px rgba(0,0,0,0.3);
}

/* Frame edge highlights */
.wpp-phone-wrap .wpp-phone::before {
  border-radius: 48px 48px 0 0;
}

/* Side buttons — titanium style */
.wpp-phone-wrap .side-btn {
  position: absolute; z-index: 1;
  background: linear-gradient(180deg, #333 0%, #1a1a1a 50%, #222 100%);
  border-radius: 2px;
}
.wpp-phone-wrap .side-btn--power {
  width: 3px; height: 48px; right: -3px; top: 140px;
  border-radius: 0 3px 3px 0;
  box-shadow: 2px 0 4px rgba(0,0,0,0.4), inset -1px 0 0 rgba(255,255,255,0.06);
}
.wpp-phone-wrap .side-btn--vol-up {
  width: 3px; height: 34px; left: -3px; top: 120px;
  border-radius: 3px 0 0 3px;
  box-shadow: -2px 0 4px rgba(0,0,0,0.4), inset 1px 0 0 rgba(255,255,255,0.06);
}
.wpp-phone-wrap .side-btn--vol-down {
  width: 3px; height: 34px; left: -3px; top: 166px;
  border-radius: 3px 0 0 3px;
  box-shadow: -2px 0 4px rgba(0,0,0,0.4), inset 1px 0 0 rgba(255,255,255,0.06);
}

@keyframes phone-float {
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-10px) rotate(0.5deg); }
}

.wpp-phone__status-bar {
  background: #075E54; height: 32px;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 20px 5px 24px; flex-shrink: 0;
  border-radius: 40px 40px 0 0;
}
.wpp-phone__time { font-size: 10px; font-weight: 600; color: #fff; font-family: var(--font-body); letter-spacing: 0.3px; }
.wpp-phone__icons { display: flex; gap: 5px; align-items: center; }
.wpp-phone__icon { width: 12px; height: 8px; background: rgba(255,255,255,0.9); border-radius: 1.5px; }
.wpp-phone__battery {
  width: 16px; height: 8px; border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: 2px; position: relative;
}
.wpp-phone__battery::after {
  content: ''; position: absolute; left: 1.5px; top: 1.5px;
  width: 65%; height: calc(100% - 3px); background: #25D366; border-radius: 1px;
}

.wpp-phone__header {
  background: linear-gradient(180deg, #128C7E 0%, #0f7b6f 100%);
  padding: 10px 14px 12px;
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.wpp-phone__back { color: #fff; font-size: 18px; font-family: var(--font-body); cursor: pointer; }

.wpp-phone__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #c47f10, #EF9F27, #f5b84a);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #111110; flex-shrink: 0;
  position: relative; transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(239,159,39,0.3);
}
.wpp-phone__avatar::after {
  content: ''; position: absolute; bottom: 0px; right: 0px;
  width: 9px; height: 9px; background: #25D366; border-radius: 50%;
  border: 2px solid #128C7E;
  box-shadow: 0 0 4px rgba(37,211,102,0.4);
}

.wpp-phone__info { flex: 1; overflow: hidden; }
.wpp-phone__name {
  font-size: 13px; font-weight: 600; color: #fff;
  font-family: var(--font-heading); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; transition: all 0.3s ease;
}
.wpp-phone__role { font-size: 9px; color: rgba(255,255,255,0.75); font-family: var(--font-body); }
.wpp-phone__header-actions { display: flex; gap: 16px; align-items: center; }
.wpp-phone__header-actions svg { opacity: 0.9; }

.wpp-phone__chat {
  flex: 1; overflow: hidden; padding: 10px 10px 4px;
  display: flex; flex-direction: column; gap: 7px; position: relative;
  background-color: #ECE5DD;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* WhatsApp bubbles (shared by hero + modal) */
.wpp-bbl {
  max-width: 85%; padding: 8px 11px 5px; border-radius: 10px;
  font-size: 10.5px; line-height: 1.5;
  font-family: var(--font-body); color: #1a1a1a;
  opacity: 0; transform: translateY(8px) scale(0.96);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08); position: relative;
}
.wpp-bbl.show { animation: bbl-pop 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards; }
@keyframes bbl-pop {
  from { opacity:0; transform: translateY(10px) scale(0.94); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

.wpp-bbl--recv { background: #fff; align-self: flex-start; border-bottom-left-radius: 2px; }
.wpp-bbl--recv::before {
  content: ''; position: absolute; left: -6px; bottom: 0;
  border: 6px solid transparent; border-right-color: #fff; border-bottom-color: #fff;
}
.wpp-bbl--sent { background: #DCF8C6; align-self: flex-end; border-bottom-right-radius: 2px; }
.wpp-bbl--sent::before {
  content: ''; position: absolute; right: -6px; bottom: 0;
  border: 6px solid transparent; border-left-color: #DCF8C6; border-bottom-color: #DCF8C6;
}

.wpp-bbl__badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(18,140,126,0.1), rgba(18,140,126,0.16));
  border: 1px solid rgba(18,140,126,0.2);
  color: #0f7b6f; font-size: 8px; font-weight: 700;
  padding: 2.5px 8px; border-radius: 8px; margin-top: 4px; letter-spacing: 0.3px;
}
.wpp-bbl__meta {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 3px; margin-top: 3px; font-size: 8px; color: rgba(0,0,0,0.38);
}
.wpp-bbl--recv .wpp-bbl__meta { justify-content: flex-start; }
.wpp-bbl__ticks { color: #53BDEB; font-size: 9px; }

.wpp-phone__typing {
  align-self: flex-start; display: none; padding: 8px 12px;
  background: #fff; border-radius: 8px; border-bottom-left-radius: 2px;
  gap: 4px; align-items: center; box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.wpp-phone__typing.on { display: flex; }

.wpp-dot-g {
  width: 5px; height: 5px; border-radius: 50%; background: #999;
  animation: wdot 1.2s infinite;
}
.wpp-dot-g:nth-child(2){ animation-delay:.2s }
.wpp-dot-g:nth-child(3){ animation-delay:.4s }
@keyframes wdot { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-4px)} }

.wpp-phone__input-bar {
  background: #f0f2f5; padding: 8px 10px;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  border-radius: 0 0 40px 40px;
}
.wpp-phone__input-pill {
  flex: 1; background: #fff; border-radius: 22px;
  padding: 8px 14px; font-size: 10.5px; color: #aaa;
  font-family: var(--font-body); display: flex; align-items: center; gap: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.wpp-phone__mic {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #20c05c);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}

/* Progress bar */
.niche-progress {
  width: 300px; height: 2px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden; margin-top: 12px;
}
.niche-progress__fill {
  height: 100%; border-radius: 2px;
  width: 0%; transition: width 0.12s linear;
  background: linear-gradient(90deg, var(--amber), #f5b84a);
  box-shadow: 0 0 8px rgba(239,159,39,0.4);
}


/* ============================================
   NICHES — Demo by Segment
   ============================================ */
.niches {
  background: var(--coal-deep);
  padding: var(--section-pad) var(--container-pad);
}
.niches__inner { max-width: var(--container-max); margin: 0 auto; }
.niches__header { text-align: center; margin-bottom: var(--header-gap); }

.niches__title {
  font-family: var(--font-heading); font-size: var(--text-2xl);
  font-weight: 700; color: var(--cream); line-height: 1.12;
}
.niches__sub {
  margin-top: 14px; font-family: var(--font-body); font-size: var(--text-md);
  color: var(--stone); max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.6;
}

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

.niche-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px 22px;
  background: rgba(44,44,42,0.3);
  border: 1px solid rgba(241,239,232,0.06);
  border-radius: var(--radius-card); cursor: pointer;
  transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
  position: relative; overflow: hidden; text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.niche-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(239,159,39,0.07) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.28s ease;
}
.niche-card:hover {
  border-color: rgba(239,159,39,0.45);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 40px rgba(239,159,39,0.08);
}
.niche-card:hover::before { opacity: 1; }

.niche-card__number {
  font-family: var(--font-heading); font-size: var(--text-xs); font-weight: 700;
  color: var(--amber); letter-spacing: 2px; text-transform: uppercase;
}
.niche-card__name {
  font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--cream);
}
.niche-card__agent { display: flex; align-items: center; gap: 7px; }
.niche-card__agent-dot { width: 6px; height: 6px; border-radius: 50%; background: #34d399; flex-shrink: 0; }
.niche-card__agent-name { font-family: var(--font-body); font-size: var(--text-xs); color: var(--stone); }

.niche-card__desc { font-family: var(--font-body); font-size: 13px; color: var(--stone); line-height: 1.55; flex: 1; }

.niche-card__cta {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  color: var(--amber); margin-top: auto; transition: gap 0.2s ease;
}
.niche-card:hover .niche-card__cta { gap: 10px; }

/* "Seu segmento" open card */
.niche-card--open {
  border-style: dashed;
  border-color: rgba(239,159,39,0.25);
  background: rgba(239,159,39,0.04);
  text-decoration: none;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.niche-card--open::before {
  background: radial-gradient(circle at center, rgba(239,159,39,0.08) 0%, transparent 70%);
}
.niche-card--open:hover {
  border-color: var(--amber);
  background: rgba(239,159,39,0.08);
}
.niche-card__open-icon {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px dashed rgba(239,159,39,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 300; color: var(--amber);
  font-family: var(--font-heading);
  transition: border-color 0.28s ease, transform 0.28s ease;
}
.niche-card--open:hover .niche-card__open-icon {
  border-color: var(--amber);
  transform: rotate(90deg);
}
.niche-card--open .niche-card__name { font-size: 20px; }
.niche-card--open .niche-card__desc { color: var(--sand); }
.niche-card--open .niche-card__cta { justify-content: center; }


/* ============================================
   NICHE MODAL
   ============================================ */
.niche-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.28s ease;
}
.niche-modal.open { opacity: 1; pointer-events: all; }

.niche-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(17,17,16,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}

.niche-modal__box {
  position: relative; z-index: 1; width: 100%; max-width: 940px;
  background: #1c1c1a; border: 1px solid rgba(239,159,39,0.16); border-radius: 20px;
  overflow: hidden; max-height: 90vh;
  transform: translateY(28px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.niche-modal.open .niche-modal__box { transform: translateY(0) scale(1); }

.niche-modal__close {
  position: absolute; top: 18px; right: 18px; z-index: 10;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream); font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-family: var(--font-body); transition: background 0.2s;
}
.niche-modal__close:hover { background: rgba(255,255,255,0.14); }

.niche-modal__content {
  display: grid; grid-template-columns: 1fr 270px;
  min-height: 500px;
}

.niche-modal__agent {
  padding: 48px 44px;
  display: flex; flex-direction: column; gap: 22px;
  border-right: 1px solid rgba(241,239,232,0.05);
  overflow-y: auto;
}

.niche-modal__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #b87416, #EF9F27);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 22px; color: #111110; position: relative;
}
.niche-modal__avatar::after {
  content: ''; position: absolute; bottom: 2px; right: 2px;
  width: 12px; height: 12px; background: #34d399; border-radius: 50%;
  border: 2px solid #1c1c1a;
}

.niche-modal__role-badge {
  display: inline-block;
  background: rgba(239,159,39,0.1); border: 1px solid rgba(239,159,39,0.25);
  color: var(--amber); font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; width: fit-content;
  font-family: var(--font-body);
}

.niche-modal__name {
  font-family: var(--font-heading); font-size: var(--text-xl); font-weight: 700;
  color: var(--cream); letter-spacing: -0.02em; line-height: 1;
}
.niche-modal__headline {
  font-family: var(--font-body); font-size: 15px; color: var(--stone);
  line-height: 1.65; max-width: 420px;
}

.niche-modal__bullets {
  list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.niche-modal__bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body); font-size: 13px; color: var(--sand); line-height: 1.5;
}
.niche-modal__bullets li::before { content: '\2713'; color: var(--amber); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.niche-modal__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.btn--modal-demo {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--radius-btn);
  background: var(--amber); color: #111110;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  border: none; cursor: pointer; text-decoration: none; transition: opacity 0.2s ease;
}
.btn--modal-demo:hover { opacity: 0.88; }

.btn--modal-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--radius-btn);
  background: transparent; color: var(--stone);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  border: 1px solid rgba(241,239,232,0.12); cursor: pointer;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.btn--modal-secondary:hover { border-color: rgba(239,159,39,0.35); color: var(--sand); }

/* Modal WPP side */
.niche-modal__wpp-col { display: flex; flex-direction: column; background: #ECE5DD; }

.niche-modal__wpp-header {
  background: #128C7E; padding: 14px;
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.niche-modal__wpp-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #b87416, #EF9F27);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: #111110; flex-shrink: 0;
}
.niche-modal__wpp-info {}
.niche-modal__wpp-name { font-size: 12px; font-weight: 600; color: #fff; font-family: var(--font-heading); }
.niche-modal__wpp-status { font-size: 9px; color: rgba(255,255,255,0.75); font-family: var(--font-body); }

.niche-modal__chat {
  flex: 1; padding: 12px 10px 6px;
  display: flex; flex-direction: column; gap: 8px; overflow: hidden;
  background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 16px 16px;
}

.niche-modal__typing {
  align-self: flex-start; display: none;
  padding: 8px 12px; background: #fff; border-radius: 8px; border-bottom-left-radius: 2px;
  gap: 4px; align-items: center; box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.niche-modal__typing.on { display: flex; }

.niche-modal__wpp-input {
  background: #f0f2f5; padding: 8px 10px;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.niche-modal__wpp-input-pill {
  flex: 1; background: #fff; border-radius: 20px;
  padding: 7px 12px; font-size: 10px; color: #aaa; font-family: var(--font-body);
}
.niche-modal__wpp-mic {
  width: 34px; height: 34px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
}


/* ============================================
   CONCEPT — Comparison columns
   ============================================ */
.concept {
  background: #0f0f0e;
  padding: var(--section-pad) var(--container-pad);
  position: relative; overflow: hidden;
}
.concept__bg-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,159,39,0.06) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.concept__inner { max-width: var(--container-max); margin: 0 auto; position: relative; z-index: 1; }
.concept__header { text-align: center; margin-bottom: var(--header-gap); }

.concept__title {
  font-family: var(--font-heading); font-size: var(--text-2xl);
  font-weight: 700; color: var(--cream); line-height: 1.15;
}
.concept__sub { margin-top: 14px; font-family: var(--font-body); font-size: var(--text-md); color: var(--stone); }

.concept__cols {
  display: grid; grid-template-columns: 1fr 1fr 1.1fr;
  gap: 0; border-radius: var(--radius-card); overflow: hidden;
  border: 1px solid rgba(241,239,232,0.06);
}

.concept__col { padding: 36px 30px; position: relative; }
.concept__col--muted { background: rgba(44,44,42,0.25); border-right: 1px solid rgba(241,239,232,0.05); }
.concept__col--highlight { background: rgba(239,159,39,0.06); border-left: 1px solid rgba(239,159,39,0.15); }

.concept__col-label {
  display: inline-block; font-family: var(--font-body); font-size: 9px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; margin-bottom: 18px;
}
.concept__col--muted .concept__col-label { background: rgba(255,255,255,0.05); color: var(--stone); }
.concept__col--highlight .concept__col-label { background: rgba(239,159,39,0.18); color: var(--amber); }

.concept__col-heading {
  font-family: var(--font-heading); font-size: 19px; font-weight: 700;
  color: var(--cream); margin-bottom: 20px;
}

.concept__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.concept__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body); font-size: 13px; color: var(--stone); line-height: 1.5;
}
.concept__list li i { font-style: normal; font-weight: 700; color: var(--stone); flex-shrink: 0; margin-top: 1px; }
.concept__col--highlight .concept__list li { color: var(--sand); }
.concept__col--highlight .concept__list li i { color: var(--amber); }


/* ============================================
   MISSION STRIP
   ============================================ */
.mission-strip {
  background: var(--coal); padding: 48px var(--container-pad);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  border-top: 1px solid rgba(241,239,232,0.06); border-bottom: 1px solid rgba(241,239,232,0.06);
  max-width: 100%;
}
.mission-strip__text {
  font-family: var(--font-heading); font-size: clamp(18px, 2vw, 26px);
  font-weight: 700; color: var(--cream); max-width: 560px; line-height: 1.3;
}
.mission-strip__hashtag { display: flex; align-items: center; gap: 4px; flex-shrink: 0; font-family: var(--font-heading); font-weight: 700; }
.mission-strip__hash { font-size: 42px; color: var(--amber); }
.mission-strip__words { display: flex; flex-direction: column; line-height: 1.1; font-size: 16px; color: var(--sand); }
.mission-strip__on { font-size: 48px; color: var(--amber); letter-spacing: -2px; }


/* ============================================
   FUNNEL — Onboarding WhatsApp journey
   ============================================ */
.funnel {
  background: #111110;
  padding: var(--section-pad) var(--container-pad);
  border-bottom: 1px solid rgba(241,239,232,0.06);
}
.funnel__inner { max-width: var(--container-max); margin: 0 auto; }
.funnel__header { text-align: center; margin-bottom: 72px; }

.funnel__title {
  font-family: var(--font-heading); font-size: var(--text-2xl);
  font-weight: 700; color: var(--cream); line-height: 1.1;
}
.funnel__sub {
  margin-top: 16px; font-family: var(--font-body); font-size: var(--text-md);
  color: var(--stone); max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6;
}

/* Funnel — 3 horizontal cards */
.funnel__cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.funnel__card {
  background: rgba(44,44,42,0.25);
  border: 1px solid rgba(241,239,232,0.06);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.funnel__card:hover {
  border-color: rgba(239,159,39,0.2);
  background: rgba(44,44,42,0.4);
}

.funnel__num {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(239,159,39,0.1); border: 1.5px solid rgba(239,159,39,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  color: var(--amber); flex-shrink: 0;
}
.funnel__card h3 {
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  color: var(--cream);
}
.funnel__card p { font-family: var(--font-body); font-size: var(--text-sm); color: var(--stone); line-height: 1.6; }
.funnel__cta-wrap { margin-top: 12px; }


/* ============================================
   PROBLEMS
   ============================================ */
.problems {
  background: var(--coal-deep);
  padding: var(--section-pad) var(--container-pad);
}
.problems__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.problems__col {
  display: flex; flex-direction: column; gap: 20px;
}
.problems__card {
  background: rgba(44,44,42,0.3);
  border: 1px solid rgba(241,239,232,0.08);
  border-radius: var(--radius-card);
  padding: 34px 27px 45px 34px;
  min-height: 280px;
  display: flex; flex-direction: column;
}
.problems__card-top {
  display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px;
}
.problems__tag {
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-lg); color: var(--amber);
}
.problems__title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: var(--text-lg); line-height: 1.15; color: var(--cream);
}
.problems__desc {
  font-family: var(--font-body); font-weight: 300;
  font-size: var(--text-md); line-height: 1.45; color: var(--sand);
}
.problems__line {
  width: 100%; height: 6px; background: var(--amber); border-radius: 4px;
}


/* ============================================
   HOW IT WORKS
   ============================================ */
.howto {
  background: var(--coal-deep);
  padding: var(--section-pad) var(--container-pad);
}
.howto__inner {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 72px; align-items: center;
}
.howto__title {
  font-family: var(--font-heading); font-size: var(--text-2xl);
  font-weight: 700; color: var(--cream); line-height: 1.15;
  margin: 12px 0 36px;
}
.howto__steps { display: flex; flex-direction: column; gap: 0; }

.howto__step {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 0; position: relative;
}
.howto__step:not(:last-child)::after {
  content: ''; position: absolute; left: 16px; top: 50px; bottom: 0;
  width: 1px; background: rgba(239,159,39,0.15);
}

.howto__num {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(239,159,39,0.1); border: 1px solid rgba(239,159,39,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 11px;
  color: var(--amber); flex-shrink: 0;
}
.howto__left {}
.howto__text { font-family: var(--font-body); font-size: var(--text-sm); color: var(--stone); line-height: 1.55; padding-top: 6px; }
.howto__phone { display: flex; justify-content: center; }

/* Experience classes (used on howto section) */
.experience {}
.experience__phone { display: flex; justify-content: center; }
.experience__step {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.experience__step.is-visible { opacity: 1; transform: translateY(0); }

/* Phone wrapper with bezel (howto section) */
.howto__phone-wrap {
  position: relative;
}
.howto__phone-wrap::before {
  content: ''; position: absolute; inset: -70px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,159,39,0.12) 0%, rgba(239,159,39,0.04) 35%, transparent 65%);
  pointer-events: none; z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite 1s;
}
.howto__phone-wrap::after {
  content: ''; position: absolute; inset: -35px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,159,39,0.06) 0%, transparent 55%);
  pointer-events: none; z-index: 0; filter: blur(25px);
  animation: glow-pulse 4s ease-in-out infinite 3s;
}

/* WPP mockup (How it works phone) — premium style matching hero */
.wpp {
  width: 300px; height: 560px;
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 30%, #111 60%, #1a1a1a 100%);
  border-radius: 48px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    0 0 0 1.5px rgba(255,255,255,0.08),
    0 0 0 3px #111,
    0 0 0 4px rgba(255,255,255,0.04),
    0 8px 20px rgba(0,0,0,0.4),
    0 25px 50px rgba(0,0,0,0.5),
    0 50px 100px rgba(0,0,0,0.35),
    0 0 100px rgba(239,159,39,0.06);
  position: relative; z-index: 2;
  padding: 8px;
}
.wpp > * { position: relative; z-index: 2; }
.wpp > :first-child { border-radius: 40px 40px 0 0; }
.wpp > :last-child { border-radius: 0 0 40px 40px; }

/* Glass reflection — dual layer */
.wpp::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 55%; z-index: 3; pointer-events: none;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.02) 25%, transparent 50%),
    linear-gradient(200deg, transparent 60%, rgba(255,255,255,0.02) 80%, transparent 100%);
  border-radius: 48px 48px 0 0;
}

/* Dynamic Island */
.wpp::after {
  content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #000; border-radius: 20px;
  z-index: 10;
  box-shadow:
    inset 0 0 4px rgba(0,0,0,0.8),
    0 0 8px rgba(0,0,0,0.3);
}

/* Side buttons — titanium style */
.howto__phone-wrap .side-btn {
  position: absolute; z-index: 1;
  background: linear-gradient(180deg, #333 0%, #1a1a1a 50%, #222 100%);
  border-radius: 2px;
}
.howto__phone-wrap .side-btn--power {
  width: 3px; height: 48px; right: -3px; top: 140px;
  border-radius: 0 3px 3px 0;
  box-shadow: 2px 0 4px rgba(0,0,0,0.4), inset -1px 0 0 rgba(255,255,255,0.06);
}
.howto__phone-wrap .side-btn--vol-up {
  width: 3px; height: 34px; left: -3px; top: 120px;
  border-radius: 3px 0 0 3px;
  box-shadow: -2px 0 4px rgba(0,0,0,0.4), inset 1px 0 0 rgba(255,255,255,0.06);
}
.howto__phone-wrap .side-btn--vol-down {
  width: 3px; height: 34px; left: -3px; top: 166px;
  border-radius: 3px 0 0 3px;
  box-shadow: -2px 0 4px rgba(0,0,0,0.4), inset 1px 0 0 rgba(255,255,255,0.06);
}

.wpp__header {
  display: flex; align-items: center; gap: 10px;
  padding: 34px 14px 12px;
  background: linear-gradient(180deg, #128C7E 0%, #0f7b6f 100%);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-radius: 40px 40px 0 0;
}
.wpp__back { color: #fff; font-size: 18px; font-family: var(--font-body); }
.wpp__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #c47f10, #EF9F27, #f5b84a);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  color: #111110; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(239,159,39,0.3);
}
.wpp__info { flex: 1; }
.wpp__name {
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wpp__status {
  font-family: var(--font-body); font-size: 9px; color: rgba(255,255,255,0.75);
}
.wpp__icons { display: flex; gap: 12px; flex-shrink: 0; }

.wpp__body {
  flex: 1; overflow-y: auto; padding: 10px 10px 4px;
  display: flex; flex-direction: column; gap: 7px;
  background-color: #ECE5DD;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wpp__typing {
  display: none; align-self: flex-start; gap: 4px;
  padding: 8px 12px; background: #fff; border-radius: 10px; border-bottom-left-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.wpp__typing.active { display: flex; }

.wpp__dot {
  width: 5px; height: 5px; border-radius: 50%; background: #999;
  animation: wppBounce 1.2s infinite;
}
.wpp__dot:nth-child(2) { animation-delay: 0.2s; }
.wpp__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes wppBounce { 0%,60%,100%{ transform: translateY(0); } 30%{ transform: translateY(-4px); } }

.wpp__input-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; background: #f0f2f5; flex-shrink: 0;
  border-radius: 0 0 40px 40px;
}
.wpp__input {
  flex: 1; display: flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 22px; padding: 8px 14px; font-size: 10.5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.wpp__placeholder {
  flex: 1; font-family: var(--font-body); font-size: 10.5px; color: #aaa;
}
.wpp__send {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #25D366, #20c05c);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}

/* WPP message bubbles */
.wpp-msg {
  max-width: 85%; padding: 8px 11px 5px; border-radius: 10px;
  font-family: var(--font-body); font-size: 10.5px; line-height: 1.5;
  color: #1a1a1a;
  opacity: 0; transform: translateY(8px);
  animation: wppMsgIn 0.4s ease forwards;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08); position: relative;
}
.wpp-msg--received {
  align-self: flex-start; background: #fff; border-bottom-left-radius: 2px;
}
.wpp-msg--sent {
  align-self: flex-end; background: #DCF8C6; border-bottom-right-radius: 2px;
}
.wpp-msg__time { font-size: 8px; color: rgba(0,0,0,0.38); margin-top: 3px; text-align: right; }
.wpp-msg--sent .wpp-msg__time { color: rgba(0,0,0,0.38); }
@keyframes wppMsgIn { to { opacity: 1; transform: translateY(0); } }


/* ============================================
   CASE — Odonto Mil
   ============================================ */
.case {
  background: var(--coal-deep);
  padding: var(--section-pad) var(--container-pad);
}
.case__inner {
  display: flex; align-items: center; gap: clamp(40px, 8vw, 120px);
  max-width: var(--container-max); margin: 0 auto;
}
.case__left {
  display: flex; flex-direction: column; gap: 25px;
  flex: 1; min-width: 0;
}
.case__left-top { display: flex; flex-direction: column; gap: 15px; }

.case__pill {
  display: inline-flex; align-items: center;
  padding: 5px 12px; background: var(--amber); border-radius: 100px;
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  line-height: 26px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--coal-deep); width: fit-content;
}
.case__headline {
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-xl); line-height: 1.2; letter-spacing: -0.03em;
  color: var(--amber);
}
.case__sub {
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-xl); line-height: 1.2; letter-spacing: -0.03em;
  color: var(--sand);
}
.case__context {
  font-family: var(--font-body); font-weight: 400;
  font-size: var(--text-md); line-height: 1.5; letter-spacing: -0.02em;
  color: var(--cream);
}

.case__right {
  display: flex; flex-direction: column; gap: 25px;
  flex: 1; min-width: 0;
}
.case__what { display: flex; flex-direction: column; gap: 15px; }
.case__what-title {
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-lg); line-height: 1.2; letter-spacing: -0.03em;
  color: var(--amber);
}
.case__what-list {
  font-family: var(--font-body); font-weight: 300;
  font-size: var(--text-md); line-height: 1.5; letter-spacing: -0.02em;
  color: var(--cream); padding-left: 24px; list-style: disc;
}
.case__what-list li { margin-bottom: 4px; }

.case__testimonial { display: flex; align-items: center; gap: 25px; }
.case__person {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  width: 88px; flex-shrink: 0;
}
.case__avatar {
  width: 76px; height: 76px; border-radius: 50%;
  border: 2px solid var(--amber); overflow: hidden;
}
.case__avatar-img { width: 100%; height: 100%; object-fit: cover; }
.case__person-info { display: flex; flex-direction: column; align-items: center; text-align: center; }
.case__person-name {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  line-height: 1.2; letter-spacing: -0.03em; color: var(--sand);
}
.case__person-role {
  font-family: var(--font-body); font-weight: 500; font-size: 9px;
  line-height: 1.2; letter-spacing: -0.02em; color: var(--stone);
}
.case__quote {
  font-family: var(--font-body); font-style: italic; font-weight: 400;
  font-size: var(--text-md); line-height: 1.5; letter-spacing: -0.02em;
  color: var(--sand);
}


/* ============================================
   CLT COMPARISON
   ============================================ */
.clt {
  background: #0f0f0e;
  padding: var(--section-pad) var(--container-pad);
  position: relative; overflow: hidden;
}
.clt__bg-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,159,39,0.07) 0%, transparent 70%);
  top: 50%; right: 10%; transform: translateY(-50%); pointer-events: none;
}
.clt__inner { max-width: var(--container-max); margin: 0 auto; position: relative; z-index: 1; }
.clt__header { margin-bottom: 52px; }
.clt__title {
  font-family: var(--font-heading); font-size: var(--text-2xl);
  font-weight: 700; color: var(--cream); line-height: 1.12;
}

.clt__table { border-radius: var(--radius-card); overflow: hidden; border: 1px solid rgba(241,239,232,0.07); margin-bottom: 28px; }

.clt__thead {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  background: rgba(44,44,42,0.5); padding: 14px 20px;
  border-bottom: 1px solid rgba(241,239,232,0.06);
}
.clt__th { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.clt__th:first-child { color: var(--stone); }
.clt__th:nth-child(2) { color: var(--stone-dark); text-align: center; }
.clt__th:last-child   { color: var(--amber); text-align: center; }

.clt__tr { display: grid; grid-template-columns: 1.6fr 1fr 1fr; padding: 14px 20px; border-bottom: 1px solid rgba(241,239,232,0.04); }
.clt__tr:last-child { border-bottom: none; }
.clt__tr--total { background: rgba(239,159,39,0.04); border-top: 1px solid rgba(239,159,39,0.12); }

.clt__td { font-family: var(--font-body); font-size: 13px; }
.clt__td:first-child { color: var(--sand); }
.clt__td:nth-child(2) { color: var(--stone); text-align: center; }
.clt__td:last-child   { color: var(--cream); text-align: center; }
.clt__td--bold { font-weight: 700; font-size: 16px; }
.clt__td--red  { color: #f87171 !important; }
.clt__td--green { color: #34d399 !important; }

.clt__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(239,159,39,0.12);
  border-radius: 12px; overflow: hidden; border: 1px solid rgba(239,159,39,0.18);
}
.clt__stat { background: rgba(17,17,16,0.97); padding: 24px 20px; text-align: center; }
.clt__stat-val { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--amber); margin-bottom: 6px; }
.clt__stat-label { font-family: var(--font-body); font-size: 12px; color: var(--stone); line-height: 1.4; }


/* ============================================
   TEAM — 8 Digital Directors
   ============================================ */
.team {
  display: flex; flex-direction: column; align-items: center;
  padding: var(--section-pad) var(--container-pad);
  background: var(--coal-deep);
}
.team__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 41px; width: 100%; max-width: var(--container-max);
}
.team__header {
  display: flex; flex-direction: column; align-items: center; gap: 15px; width: 100%;
}
.team__title-amber {
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-xl); line-height: 1.2; letter-spacing: -0.03em;
  text-align: center; color: var(--amber);
}
.team__title-sand {
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-xl); line-height: 1.2; letter-spacing: -0.03em;
  text-align: center; color: var(--sand); max-width: 750px;
}
.team__subtitle {
  font-family: var(--font-body); font-weight: 300;
  font-size: var(--text-lg); line-height: 1.2; letter-spacing: -0.03em;
  text-align: center; color: var(--cream);
}
.team__label {
  font-family: var(--font-body); font-weight: 400;
  font-size: var(--text-md); line-height: 1.2; letter-spacing: -0.03em;
  color: var(--cream); width: 100%;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; width: 100%;
}
.team__card {
  border-radius: 15px; overflow: hidden; background: var(--coal-deep);
}
.team__card-photo {
  width: 100%; aspect-ratio: 223 / 279; overflow: hidden;
  border-radius: 15px 15px 0 0; background: var(--stone-dark);
}
.team__card-img { width: 100%; height: 100%; object-fit: cover; }
.team__card-info {
  background: #D9D9D9; border-radius: 0 0 15px 15px;
  padding: 20px 12px; display: flex; flex-direction: column;
  align-items: center; gap: 3px; min-height: 120px;
}
.team__card-name-row { display: flex; align-items: center; gap: 0; }
.team__card-name {
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  line-height: 1.2; letter-spacing: -0.03em; color: var(--coal-deep);
}
.team__card-arrow { width: 22px; height: auto; }
.team__card-desc {
  font-family: var(--font-body); font-weight: 400; font-size: 14px;
  line-height: 1.3; letter-spacing: -0.02em; text-align: center; color: var(--coal-deep);
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  display: flex; flex-direction: column; align-items: center;
  padding: var(--section-pad) var(--container-pad);
  background: var(--cream);
}
.faq__inner {
  display: flex; flex-direction: column; align-items: center;
  width: 100%; max-width: 782px;
}
.faq__title {
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-xl); line-height: 1.2; letter-spacing: -0.03em;
  text-align: center; color: var(--coal-deep); margin-bottom: var(--header-gap);
}
.faq__list { width: 100%; }
.faq__item { border-bottom: 1px solid var(--stone-on-light); }
.faq__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-weight: 600; font-size: 18px;
  line-height: 1.4; letter-spacing: -0.02em; color: var(--coal-deep);
  transition: color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.faq__question:hover { color: var(--amber); }
.faq__icon {
  font-size: 28px; font-weight: 300; color: var(--amber);
  transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px; line-height: 1;
}
.faq__item.active .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease; padding: 0;
}
.faq__item.active .faq__answer { max-height: 300px; padding-bottom: 24px; }
.faq__answer p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 16px; line-height: 1.6; letter-spacing: -0.02em;
  color: var(--stone-on-light);
}


/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  display: flex; flex-direction: column; align-items: center;
  padding: var(--section-pad) var(--container-pad);
  background: var(--cream);
}
.cta-final__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 25px; max-width: 700px;
}
.cta-final__headline {
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-xl); line-height: 1.2; letter-spacing: -0.03em;
  text-align: center; color: var(--coal-deep);
}
.cta-final__sub {
  font-family: var(--font-body); font-weight: 400;
  font-size: var(--text-md); line-height: 1.55; letter-spacing: -0.02em;
  text-align: center; color: var(--stone-on-light);
}
.cta-final__buttons {
  display: flex; gap: 16px; margin-top: 10px; flex-wrap: wrap; justify-content: center;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  display: flex; flex-direction: column; align-items: center;
  padding: 60px var(--container-pad) 40px;
  background: var(--cream);
}
.footer__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 30px; width: 100%; max-width: 900px;
}
.footer__brand { display: flex; align-items: center; gap: 60px; }
.footer__logo { height: 50px; width: auto; filter: brightness(0); }
.footer__hashtag { display: flex; align-items: center; gap: 4px; }
.footer__hash {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 48px; color: var(--stone-dark); line-height: 1;
}
.footer__hashtag-words { display: flex; flex-direction: column; line-height: 1.1; }
.footer__word-top,
.footer__word-mid {
  font-family: var(--font-body); font-weight: 600;
  font-size: 16px; color: var(--stone-dark);
}
.footer__word-on {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 48px; color: var(--amber); line-height: 1;
}
.footer__copy {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--stone-on-light); font-style: italic;
}


/* ============================================
   ANIMATIONS — Entrance
   ============================================ */
.header {
  opacity: 0;
  animation: fadeIn 0.6s ease 0.1s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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


/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .niches__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .concept__cols { grid-template-columns: 1fr 1fr; }
  .concept__col:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .funnel__cards { grid-template-columns: 1fr 1fr; }
  .niche-modal__content { grid-template-columns: 1fr; }
  .niche-modal__wpp-col { display: none; }
  .howto__inner { grid-template-columns: 1fr; gap: 40px; }
  .case__inner { flex-direction: column; gap: 40px; }
  .concept__cols { grid-template-columns: 1fr; }
  .concept__col:nth-child(3) { grid-column: auto; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header */
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__hamburger { display: flex; }
  .header__logo { height: 36px; }
  .header__logo-img { height: 36px; }

  /* Hero — left-aligned, not centered (checks + icons look bad centered) */
  .hero__split {
    grid-template-columns: 1fr;
    padding: 90px 20px 48px;
    gap: 32px;
    max-width: 100%;
    overflow: hidden;
  }
  .hero__right { order: -1; align-items: center; }
  .hero__left { align-items: flex-start; text-align: left; max-width: 100%; box-sizing: border-box; }
  .hero__h1 { text-align: left; font-size: clamp(26px, 6.5vw, 34px); }
  .hero__p { text-align: left; max-width: 100%; font-size: 15px; word-break: break-word; }
  .hero__badge { align-self: flex-start; }
  .hero__checks { align-items: flex-start; max-width: 100%; }
  .hero__check { justify-content: flex-start; font-size: 14px; }
  .hero__ctas { justify-content: flex-start; width: 100%; flex-wrap: wrap; }
  .hero__ctas .btn { min-width: 0; white-space: normal; text-align: center; padding: 0 20px; font-size: 14px; }

  /* Disable float animation on touch for performance */
  .wpp-phone, .wpp { animation: none; }

  /* Disable hover transforms on touch — use active for feedback */
  .niche-card:hover { transform: none; box-shadow: none; }
  .niche-card:active { border-color: rgba(239,159,39,0.45); background: rgba(44,44,42,0.5); }
  .btn--amber:hover, .btn--outline:hover, .btn--outline-amber:hover { transform: none; }
  .btn:active { opacity: 0.85; }

  /* Hero phone */
  .wpp-phone { width: 270px; height: 520px; padding: 6px; border-radius: 42px; }
  .wpp-phone > :first-child { border-radius: 36px 36px 0 0; }
  .wpp-phone > :last-child { border-radius: 0 0 36px 36px; }
  .wpp-phone::after { width: 85px; height: 24px; top: 8px; border-radius: 16px; }
  .wpp-phone__status-bar { border-radius: 36px 36px 0 0; }
  .wpp-phone__input-bar { border-radius: 0 0 36px 36px; }
  .niche-progress { width: 270px; }

  /* Contain phone glow to prevent horizontal scroll */
  .wpp-phone-wrap::before { inset: -40px; }
  .wpp-phone-wrap::after { inset: -20px; }
  .howto__phone-wrap::before { inset: -30px; }
  .howto__phone-wrap::after { inset: -15px; }

  /* Niche tabs — horizontal scroll */
  .hero__right { align-self: stretch; }
  .niche-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 0 4px;
    width: 100%;
    justify-content: flex-start;
    align-self: stretch;
  }
  .niche-tabs::-webkit-scrollbar { display: none; }
  .niche-tab { flex-shrink: 0; }

  /* Sections */
  .concept__cols { grid-template-columns: 1fr; border: none; gap: 8px; }
  .concept__col--muted { border-right: none; border-bottom: 1px solid rgba(241,239,232,0.06); }
  .concept__col--highlight { border-left: none; border: 1px solid rgba(239,159,39,0.18); border-radius: 12px; }

  .mission-strip { flex-direction: column; text-align: center; gap: 24px; }
  .mission-strip__text { max-width: 100%; font-size: clamp(16px, 4vw, 22px); }

  .clt__stats { grid-template-columns: repeat(2, 1fr); }
  .clt__thead, .clt__tr { grid-template-columns: 1.8fr 1fr 1fr; padding: 12px 14px; }
  .clt__td { font-size: 12px; }
  .clt__th { font-size: 9px; }

  .problems__inner { grid-template-columns: 1fr; }
  .problems__card { min-height: auto; padding: 28px 22px 36px; }

  /* Niches — horizontal scroll carousel on mobile */
  .niches {
    padding-left: 0; padding-right: 0;
    overflow: visible;
  }
  .niches__inner { overflow: visible; }
  .niches__header { padding: 0 20px; }
  .niches__grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 0 20px 8px;
    scroll-snap-type: x mandatory;
  }
  .niches__grid::after {
    content: ''; flex-shrink: 0; width: 1px;
  }
  .niches__grid::-webkit-scrollbar { display: none; }
  .niche-card {
    min-width: 280px; max-width: 300px; flex-shrink: 0;
    padding: 24px 20px;
    scroll-snap-align: start;
  }
  .niche-card--open {
    min-width: 260px; max-width: 280px;
    padding: 28px 20px;
  }

  /* Funnel — horizontal scroll carousel on mobile */
  .funnel { padding-left: 0; padding-right: 0; }
  .funnel__inner { overflow: visible; }
  .funnel__header { margin-bottom: 48px; padding: 0 20px; }
  .funnel__cta-wrap { padding: 0 20px; }
  .funnel__cards {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 0 20px 8px;
    scroll-snap-type: x mandatory;
  }
  .funnel__cards::after {
    content: ''; flex-shrink: 0; width: 1px;
  }
  .funnel__cards::-webkit-scrollbar { display: none; }
  .funnel__card {
    min-width: 280px; max-width: 300px; flex-shrink: 0;
    padding: 24px 20px;
    scroll-snap-align: start;
  }

  /* Scroll indicators — gradient fade + hint animation */
  .scroll-indicator-wrap {
    position: relative;
  }
  .scroll-indicator-wrap::after {
    content: ''; position: absolute; top: 0; right: 0;
    width: 48px; height: calc(100% - 8px);
    background: linear-gradient(to right, transparent, rgba(17,17,16,0.85));
    pointer-events: none; z-index: 2;
    transition: opacity 0.3s ease;
  }
  .scroll-indicator-wrap.scrolled-end::after { opacity: 0; }

  /* Howto phone — scale down */
  .wpp { width: 260px; height: 500px; padding: 6px; border-radius: 42px; }
  .wpp > :first-child { border-radius: 36px 36px 0 0; }
  .wpp > :last-child { border-radius: 0 0 36px 36px; }
  .wpp::after { width: 85px; height: 24px; top: 8px; border-radius: 16px; }
  .wpp__header { padding: 30px 12px 10px; border-radius: 36px 36px 0 0; }
  .wpp__input-bar { border-radius: 0 0 36px 36px; }

  /* Case testimonial */
  .case__testimonial { flex-direction: column; text-align: center; gap: 16px; }

  /* Team */
  .team__title-amber, .team__title-sand { font-size: clamp(20px, 5vw, 28px); }
  .team__subtitle { font-size: clamp(16px, 3.5vw, 20px); }
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .team__card-info { min-height: auto; padding: 16px 10px; }
  .team__card-name { font-size: 13px; }
  .team__card-desc { font-size: 12px; }

  /* FAQ */
  .faq__question { font-size: 16px; padding: 20px 0; }
  .faq__answer p { font-size: 15px; }
  .faq__item.active .faq__answer { max-height: 400px; }

  /* Modal — full screen on mobile */
  .niche-modal { padding: 0; }
  .niche-modal__box {
    width: 100%; max-width: 100%; max-height: 100%;
    border-radius: 0; border: none;
    height: 100%;
  }
  .niche-modal__content { min-height: auto; height: 100%; }
  .niche-modal__agent {
    padding: 60px 20px 24px;
    gap: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .niche-modal__avatar { width: 44px; height: 44px; font-size: 18px; }
  .niche-modal__name { font-size: clamp(20px, 5vw, 28px); }
  .niche-modal__headline { font-size: 14px; }
  .niche-modal__bullets li { font-size: 12px; }
  .niche-modal__close {
    top: 12px; right: 12px; width: 40px; height: 40px;
    font-size: 22px; background: rgba(255,255,255,0.1);
  }
  .niche-modal__ctas { flex-direction: column; gap: 10px; }
  .btn--modal-demo {
    width: 100%; justify-content: center;
    padding: 14px 20px; font-size: 14px;
  }
  .btn--modal-secondary {
    width: 100%; justify-content: center;
    padding: 14px 20px; font-size: 14px;
  }

  /* CTA Final */
  .cta-final__buttons { flex-direction: column; width: 100%; }
  .cta-final__buttons .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer__brand { flex-direction: column; gap: 24px; }
  .footer__logo { height: 36px; }
  .footer__hash, .footer__word-on { font-size: 36px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__h1 { font-size: clamp(24px, 6.5vw, 32px); }
  .hero__p { font-size: 14px; }
  .hero__check { font-size: 13px; }
  .hero__split { padding: 85px 16px 40px; gap: 28px; overflow: hidden; }

  /* Phone — even smaller */
  .wpp-phone { width: 250px; height: 490px; }
  .niche-progress { width: 250px; }

  /* Niche tabs */
  .niche-tabs { gap: 6px; }
  .niche-tab { padding: 6px 12px; font-size: 11px; }

  /* Buttons */
  .btn { height: 48px; padding: 0 24px; font-size: 14px; }

  /* CLT table */
  .clt__stats { grid-template-columns: 1fr 1fr; }
  .clt__stat { padding: 18px 14px; }
  .clt__stat-val { font-size: 22px; }
  .clt__stat-label { font-size: 11px; }

  /* Team — single column on very small */
  .team__grid { grid-template-columns: 1fr; gap: 16px; }

  /* Section titles */
  .section-eyebrow { font-size: 10px; letter-spacing: 2px; }
  .concept__title { font-size: clamp(22px, 6vw, 30px); }
  .funnel__title { font-size: clamp(22px, 6vw, 30px); }
  .clt__title { font-size: clamp(22px, 6vw, 30px); }
  .faq__title { font-size: clamp(20px, 5.5vw, 28px); }
  .cta-final__headline { font-size: clamp(20px, 5.5vw, 28px); }

  /* Niche cards carousel */
  .niche-card { min-width: 260px; max-width: 280px; }
  .niche-card--open { min-width: 240px; max-width: 260px; }

  /* Footer */
  .footer__hash, .footer__word-on { font-size: 28px; }
  .footer__word-top, .footer__word-mid { font-size: 13px; }
  .footer__copy { font-size: 12px; }

  /* Howto phone */
  .wpp { width: 240px; height: 460px; border-radius: 38px; }
  .wpp > :first-child { border-radius: 32px 32px 0 0; }
  .wpp > :last-child { border-radius: 0 0 32px 32px; }
  .wpp::after { width: 75px; height: 22px; top: 7px; border-radius: 14px; }
  .wpp__header { padding: 28px 10px 8px; border-radius: 32px 32px 0 0; }
  .wpp__input-bar { border-radius: 0 0 32px 32px; }
}

/* Very small — iPhone SE, etc */
@media (max-width: 360px) {
  .hero__h1 { font-size: 22px; }
  .hero__split { padding: 80px 12px 36px; }
  .wpp-phone { width: 230px; height: 460px; }
  .niche-progress { width: 230px; }
  .niche-tab { padding: 5px 9px; font-size: 10px; }
  .btn { height: 46px; padding: 0 20px; font-size: 13px; }
  .problems__card { padding: 22px 18px 30px; }
  .concept__col { padding: 28px 22px; }
  .niche-card { min-width: 240px; max-width: 260px; }
  .funnel__card { min-width: 260px; max-width: 280px; }
}

/* Scroll hint dot indicators (mobile only) */
@media (max-width: 768px) {
  .scroll-dots {
    display: flex; justify-content: center; gap: 6px;
    padding: 12px 0 0;
  }
  .scroll-dots__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(241,239,232,0.15);
    transition: all 0.3s ease;
  }
  .scroll-dots__dot.active {
    background: var(--amber); width: 18px; border-radius: 3px;
  }
}
@media (min-width: 769px) {
  .scroll-dots { display: none; }
  .scroll-indicator-wrap::after { display: none; }
}
