/* =========================================================
   MOLIOR — Brand Theme
   Palette: Roxo #534AB7 (dominante) + Dourado #EF9F27 (faísca)
            Escuro #1A1A2E · Branco quente #F8F7F4 · Cinza #6B7280
   Base clara com grandes seções roxas. Reusa os hooks do main.js.
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Warm neutrals (base) */
  --cream:       #F8F7F4;   /* branco quente — page background */
  --cream-card:  #FFFFFF;   /* white surfaces (cards, inputs, mock) */
  --cream-deep:  #ECEAF7;   /* soft purple tint — tags, subtle fills */

  /* Molior purples (dominant brand colour) */
  --jungle:      #534AB7;   /* Roxo Molior — headings, buttons, brand, sections */
  --jungle-600:  #453D9E;   /* hover */
  --jungle-800:  #3C3489;   /* Roxo profundo — emphasis */
  --accent:      #EF9F27;   /* Dourado faísca — accent / CTA / spark */

  /* Text */
  --ink:         #1A1A2E;   /* Escuro base — body text */
  --muted:       #6B7280;   /* Cinza texto — secondary */

  /* Lines & shadows (ink-tinted) */
  --line:        rgba(26,26,46,.12);
  --line-2:      rgba(26,26,46,.20);
  --shadow:      0 24px 60px -24px rgba(28,22,60,.28);
  --shadow-sm:   0 10px 30px -16px rgba(28,22,60,.18);

  /* On purple sections */
  --on-dark:        #F8F7F4;
  --on-dark-soft:   rgba(248,247,244,.80);
  --on-dark-line:   rgba(255,255,255,.18);
  --on-dark-surface:rgba(255,255,255,.08);

  /* Type */
  --font-display: 'Geist', system-ui, sans-serif;
  --font-body:    'Geist', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 16px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--jungle); color: var(--cream); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--jungle);
}
.display {
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.h-section {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  letter-spacing: -0.03em;
}
.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
}
.text-accent { color: var(--accent); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--jungle); flex-shrink: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
}
.section { padding-block: clamp(72px, 10vw, 140px); position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 70px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 22px; }
.section-head.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px; --pad-x: 28px;
  display: inline-flex; align-items: center; gap: .55em;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 500; font-size: 1rem;
  letter-spacing: -0.01em;
  transition: transform .4s var(--ease), background .3s, color .3s, box-shadow .4s, border-color .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--jungle);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--jungle-600); box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: var(--jungle);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: var(--cream-card); border-color: var(--jungle); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .4s var(--ease), background .4s, box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding-block: 12px;
  background: rgba(248,247,244,.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', var(--font-display); font-weight: 400; font-size: 1.9rem;
  letter-spacing: 0.06em; color: var(--jungle); line-height: 1;
  -webkit-text-stroke: 0.15px var(--jungle);
}
.brand span { display: block; transform: translateY(0.22em); }
.brand .logo-mark { width: 60px; height: 60px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 16px; border-radius: 100px; font-size: .95rem;
  color: var(--ink); opacity: .8; transition: opacity .3s, background .3s;
}
.nav-links a:hover { opacity: 1; background: var(--cream-card); }
.nav-links a.active { opacity: 1; background: var(--cream-card); box-shadow: inset 0 0 0 1px var(--line); }
.nav-cta { margin-left: 10px; }
.nav .btn { --pad-y: 11px; --pad-x: 20px; font-size: .92rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line-2); background: var(--cream-card);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--jungle); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: var(--gutter);
  transform: translateY(-100%); transition: transform .6s var(--ease); visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 600; letter-spacing: -0.03em; padding: 8px 0; color: var(--jungle);
  opacity: .85; transition: opacity .3s, transform .3s;
}
.mobile-menu a:hover { opacity: 1; transform: translateX(12px); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--jungle); z-index: 200;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(100px, 14vh, 160px);
  padding-bottom: clamp(40px, 6vw, 80px);
  background: radial-gradient(ellipse at 65% 50%, #dce4f0 0%, #eef1f8 45%, #e4e9f4 100%);
}
#hero-flow { display: none; }
.hero .container { position: relative; z-index: 2; }

/* Split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}
.hero-text { text-align: left; }
.hero-text h1 { margin: 26px 0 24px; max-width: 16ch; }
.hero-text .lead { margin: 0; max-width: 44ch; }
.hero-actions { display: flex; gap: 14px; justify-content: flex-start; margin-top: 38px; flex-wrap: wrap; }

/* Cube canvas container */
.hero-canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 700px;
  justify-self: center;
}
.hero-canvas-wrap canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-text { text-align: center; }
  .hero-text .lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-canvas-wrap { max-width: 340px; }
}
/* Word-mask reveal */
.line-mask { overflow: hidden; display: block; }
.line-mask > * { display: block; will-change: transform; }



/* ---------- Cards / services ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 20px; }
.card {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s, border-color .5s;
  will-change: transform;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card .num { font-family: var(--font-display); font-size: .85rem; color: var(--jungle); font-weight: 600; letter-spacing: .08em; display: block; margin-bottom: 18px; }
.card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: .98rem; }
.card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.card .tags span {
  font-size: .78rem; padding: 5px 12px; border-radius: 100px;
  background: var(--cream-deep); color: var(--jungle); font-weight: 500;
}

/* ---------- Process section (on continuous green) ---------- */
.section-dark { color: var(--on-dark); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .lead { color: var(--on-dark-soft); }
.dark-wrap { padding-inline: var(--gutter); }
.dark-inner { max-width: var(--container); margin-inline: auto; padding-block: clamp(64px, 9vw, 120px); padding-inline: clamp(24px, 5vw, 70px); }

/* Process steps */
.steps { display: grid; gap: 0; margin-top: 50px; }
.step {
  display: grid; grid-template-columns: 90px 1fr; gap: 32px; align-items: start;
  padding: 32px 0; border-top: 1px solid var(--on-dark-line);
  transition: padding-left .5s var(--ease);
}
.step:last-child { border-bottom: 1px solid var(--on-dark-line); }
.step:hover { padding-left: 14px; }
.step .s-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1.3px var(--on-dark-line); transition: -webkit-text-stroke .4s, color .4s;
}
.step:hover .s-num { color: var(--accent); -webkit-text-stroke: 1.3px var(--accent); }
.step h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--cream); }
.step p { color: var(--on-dark-soft); max-width: 60ch; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-block .val { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--cream); }
.stat-block .label { color: var(--on-dark-soft); margin-top: 8px; font-size: .94rem; }

/* ---------- One continuous purple region ("Soluções" -> footer) ---------- */
.section-invert { background: var(--jungle); color: var(--on-dark); }
.section-invert .h-section { color: var(--cream); }
.section-invert .lead { color: var(--on-dark-soft); }
.section-invert .text-accent { color: var(--accent); }

/* Flatten inner cards so it reads as a single colour (no white boxes) */
.section-invert .section-dark,
.section-invert .cta-box { background: transparent; border: none; box-shadow: none; border-radius: 0; }

/* Buttons on the green */
.section-invert .btn-primary { background: var(--accent); color: var(--ink); }
.section-invert .btn-primary:hover { background: #f6b23f; }
.section-invert .btn-ghost { color: var(--cream); border-color: var(--on-dark-line); }
.section-invert .btn-ghost:hover { background: var(--on-dark-surface); border-color: var(--cream); }

/* Gallery frames blend into the green */
.section-invert .shot { background: transparent; border-color: var(--on-dark-line); box-shadow: none; }

/* ---------- CTA band (on green) ---------- */
.cta-wrap { padding-inline: var(--gutter); }
.cta-box {
  max-width: var(--container); margin-inline: auto;
  color: var(--cream);
  padding: clamp(40px, 7vw, 88px); text-align: center;
  position: relative; overflow: hidden;
}
.cta-box h2 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 20px; position: relative; }
.cta-box .lead { color: var(--on-dark-soft); margin-inline: auto; margin-bottom: 34px; position: relative; }
.cta-box .hero-actions { margin-top: 0; position: relative; }

/* ---------- Footer (cream, with green logo) ---------- */
.footer { background: var(--cream); color: var(--ink); padding-block: 64px 34px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line); }
.footer .brand { color: var(--jungle); margin-bottom: 16px; }
.footer-about p { color: var(--muted); max-width: 34ch; margin-bottom: 22px; }
.footer-col h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-weight: 500; }
.footer-col a { display: block; color: var(--muted); padding: 7px 0; transition: color .3s, transform .3s; }
.footer-col a:hover { color: var(--jungle); transform: translateX(5px); }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--jungle); transition: background .3s, color .3s; }
.socials a:hover { background: var(--jungle); color: var(--cream); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; color: var(--muted); font-size: .87rem; flex-wrap: wrap; gap: 14px; }

/* ---------- Screenshot frame + image placeholder ---------- */
.shot {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--cream-card);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.shot-inner { display: block; width: 100%; }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ---------- Sticky showcase ---------- */
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: start; }
.showcase-media { position: sticky; top: 120px; }

/* Image deck — stacked cards, top swaps every 2s, fans out on hover */
.deck-stage {
  position: relative;
  aspect-ratio: 16 / 10;   /* wide, suits dashboard/app screenshots */
  overflow: visible;
  margin-bottom: 44px;     /* reserve room for cards that fan down below the stage */
}
.deck-card {
  position: absolute; inset: 0; margin: 0;
  cursor: pointer;
  transform-origin: center bottom;
  transition: transform .6s var(--ease), opacity .45s var(--ease), box-shadow .45s var(--ease);
  will-change: transform;
}
.deck-card, .deck-card .shot-inner { height: 100%; }
.deck-hint { text-align: center; margin-top: 0; color: var(--muted); font-size: .85rem; }

/* Right copy — static, independent from the deck */
.showcase-steps { display: grid; gap: 14px; }
.showcase-step {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream-card);
  box-shadow: var(--shadow-sm);
}
.showcase-step h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin: 8px 0 8px; }
.showcase-step p { color: var(--muted); max-width: 48ch; font-size: .95rem; }

/* ---------- Horizontal Scroll Gallery (#produtos) ---------- */
.hscroll-head { padding: clamp(64px, 9vw, 120px) 0 clamp(32px, 4vw, 56px); }
.hscroll-container { position: relative; }
.hscroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
}
.hscroll-gallery {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  padding-left: var(--gutter);
  will-change: transform;
}
.hscroll-item {
  flex-shrink: 0;
  width: clamp(480px, 62vw, 900px);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background: #0C0A1A;
  transition: transform .5s var(--ease);
}
.hscroll-item:hover { transform: scale(1.01); }
.hscroll-img {
  width: 100%;
  height: auto;
  display: block;
}
.hscroll-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(12,10,26,.90));
}
.hscroll-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
}
.hscroll-caption .num {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .10em;
  color: var(--accent);
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hscroll-caption h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); color: var(--cream); margin: 0 0 4px; line-height: 1.15; }
.hscroll-caption small { color: rgba(248,247,244,.65); font-size: .83rem; }

/* ============================================================
   INNER PAGES (Sobre / Contato) — warm theme
   ============================================================ */
/* Page hero */
.page-hero {
  position: relative; overflow: hidden;
  padding-top: clamp(130px, 18vh, 190px);
  padding-bottom: clamp(28px, 5vw, 56px);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: -0.04em; margin: 16px 0 20px; max-width: 18ch; }
.page-hero .lead { max-width: 62ch; }
.breadcrumb { color: var(--muted); font-size: .9rem; font-family: var(--font-display); }
.breadcrumb a:hover { color: var(--accent); }

/* Split (text + visual) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }


/* Mission video */
.visual-video {
  aspect-ratio: 1; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.visual-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Value cards */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.value-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s, border-color .5s; will-change: transform;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.value-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: .96rem; }

/* Team */
.team-grid { display: grid; gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.6rem;
  color: var(--cream); background: var(--jungle); border: 3px solid var(--cream-card); box-shadow: var(--shadow-sm);
}
.team-card h3 { font-size: 1.2rem; }
.team-card .role { color: var(--muted); font-size: .92rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 70px); align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:first-child { padding-top: 0; }
.info-item .ic {
  flex: none; width: 46px; height: 46px; border-radius: 14px;
  background: var(--cream-card); border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--jungle);
}
.info-item .ic svg { width: 20px; height: 20px; }
.info-item h4 { font-size: 1.02rem; margin-bottom: 3px; }
.info-item p, .info-item a { color: var(--muted); font-size: .96rem; }
.info-item a:hover { color: var(--accent); }

/* Form */
.form { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 500; color: var(--jungle); margin-bottom: 8px; font-family: var(--font-display); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: var(--radius);
  border: 1px solid var(--line-2); background: var(--cream-card); color: var(--ink);
  font-family: var(--font-body); font-size: .96rem; transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--jungle); box-shadow: 0 0 0 3px rgba(83,74,183,.16);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-success {
  margin-top: 18px; padding: 14px 18px; border-radius: var(--radius);
  background: rgba(83,74,183,.10); border: 1px solid var(--jungle); color: var(--jungle);
  font-size: .92rem; display: none;
}
.form-success.show { display: block; }

@media (max-width: 860px) {
  .split, .contact-grid, .form-row { grid-template-columns: 1fr; }
}


/* ---------- Reveal states (JS-driven) ---------- */
html.gsap-ready [data-reveal] { opacity: 0; transform: translateY(30px); }
html.gsap-ready [data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsive (940px) ---------- */
@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-media { position: static; top: auto; margin-bottom: 18px; }
  .deck-hint { display: none; }
  .deck-stage { margin-bottom: 20px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 36px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html.gsap-ready [data-reveal] { opacity: 1; transform: none; }
}
