/* =========================================================
   MIBUSCA - Design System
   Cores: Laranja Impulso #FE6401 · Preto Direção #0C0C0C · Branco Clareza #F9F9F9
   Tipografia: Poppins (headings) · Montserrat (body)
   ========================================================= */

:root {
  --color-bg: #0c0c0c;
  --color-bg-alt: #121212;
  --color-surface: #17171a;
  --color-surface-2: #1e1e22;
  --color-border: #2a2a2e;
  --color-text: #f9f9f9;
  --color-text-muted: #b0b0b6;
  --color-accent: #fe6401;
  --color-accent-2: #ff8a3d;

  --font-heading: 'Poppins', 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

  --container-w: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-accent: 0 16px 40px -12px rgba(254, 100, 1, 0.45);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); --scroll-y: 0; }

/* ============ LIVING BACKGROUND (reacts to scroll) ============
   .scene is fixed behind everything. Each aura's position/opacity is
   driven by [data-section] on <html> (set via IntersectionObserver) for
   a smooth cross-fade between sections, plus a continuous parallax
   drift driven by --scroll-y (set on every scroll frame). */
.scene {
  position: fixed; inset: 0; z-index: -2; overflow: hidden; background: var(--color-bg);
}
.scene__aura {
  position: absolute; width: 70vmax; height: 70vmax; border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent), transparent 62%);
  filter: blur(90px);
  left: var(--aura-x, 50%); top: var(--aura-y, 50%);
  opacity: var(--aura-o, 0);
  transform: translate(-50%, -50%) translateY(calc(var(--scroll-y) * var(--aura-speed, 0.05) * 1px)) rotate(calc(var(--scroll-y) * var(--aura-spin, 0.01) * 1deg));
  transition: left 1.1s var(--ease), top 1.1s var(--ease), opacity 1.1s var(--ease), width .8s var(--ease);
  will-change: transform;
}
.scene__aura--2 { background: radial-gradient(circle, var(--color-accent-2), transparent 65%); }
.scene__aura--3 { background: radial-gradient(circle, var(--color-text), transparent 70%); }

.scene__grid {
  position: absolute; inset: -10%;
  background-image: linear-gradient(rgba(249,249,249,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(249,249,249,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: translateY(calc(var(--scroll-y) * -0.04px));
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
}
.scene__grain {
  position: absolute; inset: -50%; opacity: .4; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* Per-section aura themes */
:root { --aura-x: 82%; --aura-y: 8%; --aura-o: .5; }
html[data-section="topo"]          { --aura-x: 82%; --aura-y: 8%;  --aura-o: .55; }
html[data-section="servicos"]      { --aura-x: 8%;  --aura-y: 30%; --aura-o: .3; }
html[data-section="sobre"]         { --aura-x: 70%; --aura-y: 60%; --aura-o: .28; }
html[data-section="como-funciona"] { --aura-x: 30%; --aura-y: 80%; --aura-o: .22; }
html[data-section="conversa"]      { --aura-x: 85%; --aura-y: 45%; --aura-o: .32; }
html[data-section="resultados"]    { --aura-x: 50%; --aura-y: 20%; --aura-o: .42; }
html[data-section="depoimentos"]   { --aura-x: 15%; --aura-y: 55%; --aura-o: .26; }
html[data-section="faq"]           { --aura-x: 60%; --aura-y: 75%; --aura-o: .2; }
html[data-section="contato"]       { --aura-x: 50%; --aura-y: 40%; --aura-o: .5; }

html[data-section="topo"]          .scene__aura--2 { --aura-x: 15%; --aura-y: 85%; --aura-o: .22; }
html[data-section="servicos"]      .scene__aura--2 { --aura-x: 90%; --aura-y: 75%; --aura-o: .2; }
html[data-section="sobre"]         .scene__aura--2 { --aura-x: 20%; --aura-y: 15%; --aura-o: .18; }
html[data-section="como-funciona"] .scene__aura--2 { --aura-x: 80%; --aura-y: 20%; --aura-o: .16; }
html[data-section="conversa"]      .scene__aura--2 { --aura-x: 10%; --aura-y: 80%; --aura-o: .2; }
html[data-section="resultados"]    .scene__aura--2 { --aura-x: 85%; --aura-y: 80%; --aura-o: .3; }
html[data-section="depoimentos"]   .scene__aura--2 { --aura-x: 80%; --aura-y: 30%; --aura-o: .18; }
html[data-section="faq"]           .scene__aura--2 { --aura-x: 25%; --aura-y: 15%; --aura-o: .14; }
html[data-section="contato"]       .scene__aura--2 { --aura-x: 15%; --aura-y: 65%; --aura-o: .3; }

.scene__aura--3 { --aura-o: 0; --aura-x: 50%; --aura-y: 50%; width: 55vmax; height: 55vmax; }
html[data-section="servicos"]    .scene__aura--3 { --aura-x: 60%; --aura-y: 85%; --aura-o: .1; }
html[data-section="depoimentos"] .scene__aura--3 { --aura-x: 55%; --aura-y: 10%; --aura-o: .12; }
html[data-section="faq"]         .scene__aura--3 { --aura-x: 30%; --aura-y: 30%; --aura-o: .08; }

@media (prefers-reduced-motion: reduce) {
  .scene__aura { transition: none; transform: translate(-50%, -50%) !important; }
  .hero-visual__bag, .hero-visual__route, .hero-visual__glow, .hero-visual__steam path, .hero-chip {
    animation: none !important;
  }
}

body {
  margin: 0;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; margin: 0 0 .5em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.015em; }
h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--color-text-muted); }
strong { color: var(--color-text); }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--color-accent); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--color-accent); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.94rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap; border: 1.5px solid transparent; cursor: pointer;
}
.btn--primary { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 46px -12px rgba(254,100,1,.6); }
.btn--ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-accent); color: var(--color-accent); transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn__arrow { display: inline-block; transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn { will-change: transform; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Hero intro sequence (fires once on load, not on scroll) */
.hero-intro {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
html.loaded .hero-intro { opacity: 1; transform: translateY(0); }

/* Kinetic headline: each line is masked and slides up into view */
.hero__title .line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero__title .line__inner {
  display: block;
  transform: translateY(115%);
  transition: transform 1.1s var(--ease);
}
html.loaded .hero__title .line:nth-child(1) .line__inner { transition-delay: .15s; }
html.loaded .hero__title .line:nth-child(2) .line__inner { transition-delay: .32s; }
html.loaded .hero__title .line__inner { transform: translateY(0); }

/* Custom cursor (fine pointers only) */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999; transform: translate(-999px, -999px); }
.cursor-dot {
  width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; border-radius: 50%;
  background: var(--color-accent); transition: transform .12s linear, width .25s var(--ease), height .25s var(--ease), background .25s var(--ease);
}
.cursor-ring {
  width: 34px; height: 34px; margin: -17px 0 0 -17px; border-radius: 50%;
  border: 1.5px solid rgba(254,100,1,.55); transition: transform .18s var(--ease), width .25s var(--ease), height .25s var(--ease), opacity .25s var(--ease), border-color .25s var(--ease);
}
.cursor-ring.is-hovering { width: 54px; height: 54px; margin: -27px 0 0 -27px; border-color: rgba(249,249,249,.7); background: rgba(254,100,1,.08); }
body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button, body.has-custom-cursor .btn {
  cursor: none;
}
@media (pointer: coarse), (max-width: 860px) {
  .cursor-dot, .cursor-ring { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-intro { opacity: 1; transform: none; transition: none; }
  html.loaded .hero__title .line__inner { transform: translateY(0); transition: none; }
  .marquee__track { animation: none !important; }
  .cursor-dot, .cursor-ring { display: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ============ HEADER ============ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(12,12,12,0.3);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), height .4s var(--ease), backdrop-filter .4s var(--ease);
}
.header.scrolled {
  height: 64px;
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--color-border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark { color: var(--color-text); display: flex; }
.logo__text { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.02em; }
.logo__img { height: 30px; width: auto; display: block; }
.logo__img--footer { height: 34px; }

.nav__list { display: flex; gap: 32px; }
.nav__list a { font-size: .9rem; font-weight: 600; color: var(--color-text-muted); transition: color .25s; position: relative; }
.nav__list a:hover { color: var(--color-text); }
.nav__list a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--color-accent);
  transition: width .3s var(--ease);
}
.nav__list a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform .3s, opacity .3s; }

@media (max-width: 860px) {
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; background: rgba(12,12,12,0.97); backdrop-filter: blur(16px);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease);
    border-bottom: 1px solid var(--color-border); }
  .nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__list { flex-direction: column; padding: 24px; gap: 20px; }
  .nav-toggle { display: flex; }
  .header__actions .btn--sm { display: none; }
}

/* ============ HERO ============ */
.hero { position: relative; padding: calc(var(--header-h) + 110px) 0 0; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }

.hero__stripe {
  position: absolute; top: -20%; right: -10%; width: 60%; height: 160%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0% 100%);
  opacity: .16;
}
.hero__word {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  font-family: var(--font-heading); font-weight: 900; font-size: 22vw; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(249,249,249,0.06); white-space: nowrap; letter-spacing: -0.04em;
  pointer-events: none;
}
.grain {
  position: absolute; inset: -50%; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(249,249,249,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(249,249,249,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at top, black 0%, transparent 65%);
}

.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 24px; align-items: center; }
.hero__content { min-width: 0; }

.eyebrow { color: var(--color-accent); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .76rem; margin-bottom: 16px; }
.hero__title { max-width: 780px; }
.hero__subtitle { max-width: 640px; font-size: 1.08rem; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin: 34px 0 70px; }

/* Hero illustration */
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual__bag-wrap { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1 / 1; }
.hero-visual__svg { width: 100%; height: 100%; overflow: visible; }

.hero-visual__bag { transform-origin: 260px 480px; }
.hero-visual__route { stroke-dashoffset: 0; }
.hero-visual__glow { transform-origin: center; }

@keyframes heroBagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes heroRouteFlow {
  to { stroke-dashoffset: -170; }
}
@keyframes heroSteamRise {
  0% { transform: translateY(0); opacity: .4; }
  70% { opacity: .25; }
  100% { transform: translateY(-16px); opacity: 0; }
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.05); }
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-visual__bag { animation: heroBagFloat 5.5s var(--ease) infinite; }
.hero-visual__route { animation: heroRouteFlow 3.2s linear infinite; }
.hero-visual__glow { animation: heroGlowPulse 6s ease-in-out infinite; }
.hero-visual__steam path:nth-child(1) { animation: heroSteamRise 2.6s ease-in infinite; }
.hero-visual__steam path:nth-child(2) { animation: heroSteamRise 2.6s ease-in infinite .5s; }
.hero-visual__steam path:nth-child(3) { animation: heroSteamRise 2.6s ease-in infinite 1s; }

.hero-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 10px 16px; box-shadow: var(--shadow-soft);
  font-size: .82rem; white-space: nowrap; backdrop-filter: blur(8px);
  animation: chipFloat 4.5s var(--ease) infinite;
}
.hero-chip strong { display: block; font-family: var(--font-heading); font-size: .86rem; }
.hero-chip span { color: var(--color-text-muted); font-size: .76rem; }
.hero-chip--status { top: 6%; right: -2%; background: var(--color-text); color: var(--color-bg); animation-delay: .2s; }
.hero-chip--status strong { color: var(--color-bg); }
.hero-chip--status span { color: #55555a; }
.hero-chip__dot { width: 8px; height: 8px; border-radius: 50%; background: #26c281; box-shadow: 0 0 0 3px rgba(38,194,129,.25); flex-shrink: 0; }
.hero-chip--rating { bottom: 8%; left: -4%; text-align: left; animation-delay: 1.1s; }

@media (max-width: 980px) {
  .hero-chip { padding: 8px 12px; font-size: .76rem; }
  .hero-chip--status { right: 0; }
  .hero-chip--rating { left: 0; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 8px; }
  .hero-visual__bag-wrap { max-width: 280px; }
}
@media (max-width: 480px) {
  .hero-visual__bag-wrap { max-width: 220px; }
  .hero-chip span { display: none; }
}

/* Marquee strip */
.marquee { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); background: rgba(18,18,18,.55); backdrop-filter: blur(6px); overflow: hidden; padding: 20px 0; }
.marquee__track {
  display: flex; gap: 14px; white-space: nowrap; width: max-content;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--color-text-muted);
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span:nth-child(odd) { color: var(--color-text); }
.marquee__track span:nth-child(4n) { color: var(--color-accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SECTION HEAD ============ */
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head--left { text-align: left; margin: 0 0 48px; max-width: 560px; }
.section-head__sub { font-size: 1.02rem; }

section { padding: 110px 0; }

/* ============ SERVICES - BENTO ============ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(240px, auto); gap: 20px; }
.pillar {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 32px; position: relative; overflow: hidden;
  transition: border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}
.pillar:hover { border-color: rgba(254,100,1,.4); background: var(--color-surface-2); transform: translateY(-4px); }
.pillar--lg, .pillar--wide {
  grid-column: span 2; display: flex; align-items: center; gap: 28px;
}
.pillar--lg::before, .pillar--wide::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(254,100,1,.18), transparent 55%);
}
.pillar__copy { position: relative; flex: 1 1 auto; min-width: 0; }
.pillar__index { font-family: var(--font-heading); font-weight: 900; font-size: 2.2rem; color: var(--color-accent); opacity: .55; display: block; margin-bottom: 14px; }
.pillar h3 { margin-bottom: 8px; position: relative; }
.pillar p { margin: 0 0 16px; font-size: .92rem; position: relative; }
.pillar__chips { display: flex; flex-wrap: wrap; gap: 8px; position: relative; }
.pillar__chips li {
  font-size: .78rem; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  background: rgba(249,249,249,.06); border: 1px solid var(--color-border); color: var(--color-text-muted);
}

/* ---- Fictitious UI mockups (no external images needed) ---- */
.mockup { position: relative; flex: 0 0 auto; }
.mockup__badge {
  font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 999px;
  background: rgba(254,100,1,.16); color: var(--color-accent-2); white-space: nowrap;
}
.mockup__badge--open { background: rgba(90,200,120,.16); color: #6adf93; }
.mockup__stars { color: var(--color-accent-2); font-size: .82rem; letter-spacing: 1px; }
.mockup__stars b { color: var(--color-text); font-family: var(--font-heading); margin-left: 4px; letter-spacing: 0; }
.mockup__stars span { color: var(--color-text-muted); font-size: .72rem; letter-spacing: 0; margin-left: 4px; }

/* Phone mockup (pillar 01) */
.mockup--phone {
  width: 190px; background: #0f0f11; border: 6px solid #050505; border-radius: 26px;
  box-shadow: var(--shadow-soft); transform: rotate(3deg);
  transition: transform .5s var(--ease);
}
.pillar--lg:hover .mockup--phone { transform: rotate(0deg) translateY(-4px); }
.mockup__phone-bar { display: flex; justify-content: center; padding: 8px 0 2px; }
.mockup__phone-bar span { width: 46px; height: 5px; border-radius: 999px; background: #2a2a2e; }
.mockup__phone-screen { padding: 10px 14px 16px; display: flex; flex-direction: column; gap: 12px; }
.mockup__app-row { display: flex; align-items: center; gap: 8px; }
.mockup__app-dot { width: 22px; height: 22px; border-radius: 7px; background: var(--color-accent); flex-shrink: 0; }
.mockup__app-row strong { display: block; font-size: .78rem; }
.mockup__app-row small { display: block; font-size: .62rem; color: var(--color-text-muted); }
.mockup__live { margin-left: auto; font-size: .58rem; color: #6adf93; white-space: nowrap; }
.mockup__order { background: var(--color-surface-2); border-radius: 12px; padding: 10px 12px; }
.mockup__order-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.mockup__order-top strong { font-size: .76rem; }
.mockup__order .mockup__progress { margin-bottom: 6px; }
.mockup__order small { font-size: .64rem; color: var(--color-text-muted); }
.mockup__progress { height: 5px; border-radius: 999px; background: var(--color-border); overflow: hidden; }
.mockup__progress span { display: block; width: 62%; height: 100%; background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2)); }

/* Maps mockup (pillar 02) */
.mockup--maps { background: var(--color-surface-2); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 14px; margin: 14px 0; }
.mockup__maps-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; gap: 8px; }
.mockup__maps-row strong { font-size: .88rem; }
.mockup--maps small { display: block; margin-top: 4px; font-size: .7rem; color: var(--color-text-muted); }

/* Browser mockup (pillar 03) */
.mockup--browser { background: var(--color-surface-2); border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; margin: 14px 0; }
.mockup__browser-bar { display: flex; gap: 5px; padding: 8px 10px; border-bottom: 1px solid var(--color-border); }
.mockup__browser-bar span { width: 7px; height: 7px; border-radius: 50%; background: var(--color-border); }
.mockup__browser-bar span:first-child { background: var(--color-accent); }
.mockup__browser-body { padding: 14px; }
.mockup__browser-line { height: 7px; border-radius: 999px; background: var(--color-border); width: var(--w); margin-bottom: 8px; }
.mockup__browser-block { height: 34px; border-radius: 8px; margin-top: 10px; background: linear-gradient(120deg, rgba(254,100,1,.35), rgba(255,138,61,.12)); }

/* Dashboard mockup (pillar 04) */
.mockup--dash { flex: 0 0 240px; position: relative; }
.mockup__dash-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; font-size: .78rem; color: var(--color-text-muted); gap: 8px; }
.mockup__bars { display: flex; align-items: flex-end; gap: 8px; height: 100px; }
.mockup__bars span { flex: 1; height: var(--h); border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--color-accent-2), var(--color-accent)); opacity: .85; }
.mockup__bars span:last-child { opacity: 1; }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .pillar--lg, .pillar--wide { grid-column: span 2; }
}
@media (max-width: 720px) {
  .pillar--lg, .pillar--wide { flex-direction: column; align-items: stretch; }
  .mockup--phone { align-self: center; }
  .mockup--dash { flex-basis: auto; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .pillar--lg, .pillar--wide { grid-column: span 1; }
}

/* ============ ABOUT ============ */
.about__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.about__list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.about__list li { padding-left: 28px; position: relative; color: var(--color-text-muted); }
.about__list li::before { content: '→'; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }

.about__panel { display: flex; justify-content: center; }
.panel-card {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 32px; width: 100%; max-width: 380px; box-shadow: var(--shadow-soft);
}
.panel-card__row { display: flex; justify-content: space-between; font-size: .88rem; margin-bottom: 8px; color: var(--color-text-muted); }
.panel-card__bar { height: 8px; border-radius: 999px; background: var(--color-surface-2); margin-bottom: 24px; overflow: hidden; }
.panel-card__bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2)); border-radius: 999px; transition: width 1.4s var(--ease); }
.in-view .panel-card__bar span { width: var(--w); }

/* ============ PROCESS ============ */
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process__step { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 26px; }
.process__num { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 800; color: var(--color-accent); opacity: .65; display: block; margin-bottom: 8px; }
.process__step p { font-size: .89rem; margin: 0; }

/* ============ CHAT DEMO ============ */
.chat-demo { background: rgba(18,18,18,.5); backdrop-filter: blur(6px); }
.chat-demo__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.chat-window {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-soft); max-width: 420px; margin-left: auto;
}
.chat-window__header { display: flex; align-items: center; gap: 12px; padding: 18px 22px; border-bottom: 1px solid var(--color-border); }
.chat-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--color-accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-heading); }
.chat-window__header strong { display: block; font-size: .92rem; }
.chat-window__header small { color: var(--color-text-muted); font-size: .74rem; }

.chat-window__body { padding: 22px; display: flex; flex-direction: column; gap: 12px; min-height: 320px; }
.chat-msg {
  max-width: 82%; padding: 12px 16px; border-radius: 16px; font-size: .88rem; line-height: 1.45;
  opacity: 0; transform: translateY(14px) scale(.97); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.chat-msg.in-view { opacity: 1; transform: translateY(0) scale(1); }
.chat-msg--in { align-self: flex-start; background: var(--color-surface-2); border-bottom-left-radius: 4px; }
.chat-msg--out { align-self: flex-end; background: var(--color-accent); color: #fff; border-bottom-right-radius: 4px; }

/* ============ RESULTS - STAT STRIP ============ */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.stat-strip__item { padding: 40px 24px; text-align: center; border-left: 1px solid var(--color-border); }
.stat-strip__item:first-child { border-left: none; }
.stat-strip__num { display: block; font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--color-accent); margin-bottom: 8px; }
.stat-strip__item p { margin: 0; font-size: .86rem; }

@media (max-width: 760px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip__item:nth-child(3) { border-left: none; }
}

/* ============ TESTIMONIALS - HORIZONTAL SCROLL ============ */
.testimonials-scroll {
  display: flex; gap: 20px; overflow-x: auto; padding: 4px 24px 24px; scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--color-accent) var(--color-surface);
  max-width: var(--container-w); margin: 0 auto;
}
@media (min-width: 1000px) {
  .testimonials-scroll { justify-content: center; overflow-x: visible; }
}
.testimonial-card {
  scroll-snap-align: start; flex: 0 0 min(78vw, 380px);
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 30px; margin: 0; position: relative;
}
.testimonial-card--accent { background: var(--color-accent); border-color: var(--color-accent); }
.testimonial-card--accent p, .testimonial-card--accent.testimonial-card footer span { color: rgba(255,255,255,.85); }
.testimonial-card--accent.testimonial-card footer strong { color: #fff; }
.testimonial-card__mark { position: absolute; top: 14px; right: 22px; font-family: var(--font-heading); font-size: 3rem; color: rgba(254,100,1,.25); }
.testimonial-card--accent .testimonial-card__mark { color: rgba(255,255,255,.3); }
.testimonial-card p { color: var(--color-text); font-size: 1rem; position: relative; z-index: 1; }
.testimonial-card footer { display: flex; flex-direction: column; font-size: .85rem; }
.testimonial-card footer strong { color: var(--color-accent); }
.testimonial-card footer span { color: var(--color-text-muted); }

/* ============ FAQ ============ */
.faq__inner { max-width: 760px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 20px 24px; }
.faq-item summary { cursor: pointer; font-family: var(--font-heading); font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--color-accent); font-size: 1.4rem; transition: transform .3s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; font-size: .92rem; }

/* ============ CTA FINAL ============ */
.cta-final { text-align: center; }
.cta-final__inner { max-width: 640px; }
.cta-final__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--color-border); padding: 48px 0; background: rgba(18,18,18,.55); backdrop-filter: blur(6px); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer__brand p { margin: 4px 0 0; font-size: .85rem; }
.footer nav ul { display: flex; gap: 24px; flex-wrap: wrap; }
.footer nav a { font-size: .85rem; color: var(--color-text-muted); }
.footer nav a:hover { color: var(--color-accent); }
.footer__meta { width: 100%; text-align: center; font-size: .78rem; color: var(--color-text-muted); margin: 24px 0 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .about__inner, .chat-demo__inner { grid-template-columns: 1fr; }
  .chat-window { margin: 0 auto; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  section { padding: 76px 0; }
  .process__steps { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
}
