/* ============================================================
   OutBox Group — Design System
   Display: Clash Display · Body: Inter
   ============================================================ */

:root {
  --bg: #f5f7f9;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #141414;
  --text: #0a0a0a;
  --muted: #6b6f76;
  --line: rgba(10, 10, 10, 0.08);
  --line-dark: rgba(255, 255, 255, 0.08);
  --accent: #f15533;
  --accent-deep: #d63e1f;
  --accent-soft: #ff7a5c;
  --radius: 22px;
  --radius-lg: 30px;
  --maxw: 1240px;
  --display: "Clash Display", "Inter", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* texture / atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(241, 85, 51, 0.06), transparent 70%),
    radial-gradient(700px 500px at -10% 30%, rgba(241, 85, 51, 0.04), transparent 70%);
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot { width: 7px; height: 7px; background: #fff; }
.cursor-ring {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.6);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s;
}
.cursor-ring.is-hover { width: 56px; height: 56px; background: rgba(255,255,255,.12); border-color: transparent; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  z-index: 9998;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 500; font-size: 15px;
  padding: 14px 26px; border-radius: 100px; border: none; cursor: none;
  transition: transform .35s var(--ease), background .3s, box-shadow .35s var(--ease);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(10,10,10,.22); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { transform: translateY(-2px); background: var(--accent-deep); box-shadow: 0 16px 34px rgba(241,85,51,.32); }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--block { width: 100%; }
.btn .arr { transition: transform .3s var(--ease); color: var(--accent); }
.btn--dark:hover .arr { transform: translateX(5px); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 18px 0; transition: padding .35s var(--ease), background .35s, box-shadow .35s;
}
.header.is-scrolled {
  padding: 10px 0; background: rgba(245, 247, 249, 0.82);
  backdrop-filter: saturate(180%) blur(16px); box-shadow: 0 1px 0 var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -.01em; }
.brand__mark { width: 30px; height: 30px; display: block; }
.brand__mark svg { width: 100%; height: 100%; }
.nav { display: flex; gap: 30px; }
.nav a { font-size: 15px; color: var(--text); position: relative; padding: 4px 0; transition: color .25s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width .3s var(--ease); }
.nav a:hover { color: var(--accent); }
.nav a:hover::after { width: 100%; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px); z-index: 999;
  background: var(--ink); padding: 100px 32px 40px; display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform .45s var(--ease);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a { color: #fff; font-size: 22px; font-family: var(--display); padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
.mobile-menu .btn { margin-top: 18px; }

/* ---------- Section primitives ---------- */
section { padding: 100px 0; position: relative; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 500; padding: 7px 16px 7px 8px; border-radius: 100px; margin-bottom: 22px;
}
.pill__icon { width: 22px; height: 22px; background: var(--accent); border-radius: 50%; display: grid; place-items: center; font-size: 11px; }
.pill--center { display: inline-flex; }
section:has(.pill--center) .container { text-align: center; }
section:has(.section-title--center) .pill--center { margin-left: auto; margin-right: auto; }

.section-title {
  font-family: var(--display); font-weight: 500; font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08; letter-spacing: -.02em; max-width: 16ch; margin-bottom: 18px;
}
.section-title--center { margin-left: auto; margin-right: auto; max-width: 20ch; }
.section-lead { color: var(--muted); font-size: 18px; max-width: 62ch; }
section:has(.section-title--center) .section-lead { margin-left: auto; margin-right: auto; }
.accent { color: var(--accent); }

/* ---------- Reveal animations ---------- */
.fade-up, .reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-up.in, .reveal.in { opacity: 1; transform: none; }
.fade-up[data-delay="1"], .reveal[data-delay="1"] { transition-delay: .1s; }
.fade-up[data-delay="2"], .reveal[data-delay="2"] { transition-delay: .2s; }
.fade-up[data-delay="3"], .reveal[data-delay="3"] { transition-delay: .3s; }

/* word reveal */
.reveal-words .word { display: inline-block; opacity: .12; transition: opacity .5s var(--ease); }
.reveal-words.in .word { opacity: 1; }

/* ---------- Hero ---------- */
.hero { padding: 150px 0 60px; }
.hero__glow { position: absolute; top: 4%; right: 6%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(241,85,51,.18), transparent 65%); filter: blur(20px); z-index: 0; }
.hero__title {
  font-family: var(--display); font-weight: 500; font-size: clamp(40px, 6.6vw, 84px);
  line-height: 1.02; letter-spacing: -.03em; max-width: 14ch;
}
.bolt { display: inline-block; color: var(--accent); margin: 0 .1em; transform: rotate(-6deg); animation: bolt 2.6s var(--ease) infinite; }
@keyframes bolt { 0%,100% { transform: rotate(-6deg) scale(1); } 50% { transform: rotate(4deg) scale(1.12); } }
.hero__sub { margin-top: 26px; font-size: 19px; color: var(--muted); max-width: 46ch; }
.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.hero__rating { display: flex; align-items: center; gap: 12px; }
.stars { color: var(--accent); font-size: 17px; letter-spacing: 2px; }
.stars .half { opacity: .45; }
.hero__rating span { font-size: 14px; color: var(--muted); }

.hero__gallery { display: grid; grid-template-columns: 1fr 1.55fr 1fr; gap: 18px; margin-top: 64px; }
.hero__img { height: 340px; border-radius: var(--radius); position: relative; overflow: hidden; background-size: cover; background-position: center; box-shadow: 0 30px 60px rgba(10,10,10,.08); }
.hero__img--1 { background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.14)), url("../assets/img/hero-1.jpg"); transform: translateY(20px); }
.hero__img--2 { background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.16)), url("../assets/img/hero-2.jpg"); }
.hero__img--3 { background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.14)), url("../assets/img/hero-3.jpg"); transform: translateY(20px); }
.rec-dot { position: absolute; top: 18px; right: 18px; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 6px rgba(241,85,51,.25); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 5px rgba(241,85,51,.3); } 50% { box-shadow: 0 0 0 11px rgba(241,85,51,0); } }
.hero__img-tag { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.9); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; }

/* ---------- Stats ---------- */
.kicker { font-family: var(--display); font-weight: 500; font-size: clamp(22px, 3vw, 34px); line-height: 1.25; letter-spacing: -.02em; max-width: 30ch; }
.stats__head { font-family: var(--display); font-weight: 500; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.18; letter-spacing: -.02em; max-width: 24ch; margin: 18px 0 64px; color: rgba(10,10,10,.85); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.stat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; box-shadow: 0 18px 40px rgba(10,10,10,.04); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(10,10,10,.1); }
.stat-card__num { font-family: var(--display); font-weight: 600; font-size: 64px; line-height: 1; letter-spacing: -.03em; display: flex; align-items: flex-start; }
.stat-card__suffix { color: var(--accent); font-size: 40px; margin-left: 4px; }
.stat-card h3 { font-family: var(--display); font-weight: 500; font-size: 22px; margin: 12px 0 30px; }
.stat-card p { color: var(--muted); font-size: 15px; }

/* ---------- Benefits ---------- */
.benefits__track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.benefit-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px 0; display: flex; flex-direction: column; min-height: 380px; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(10,10,10,.1); }
.benefit-card p { font-family: var(--display); font-weight: 500; font-size: 21px; line-height: 1.28; letter-spacing: -.01em; }
.benefit-card__art { margin-top: auto; height: 150px; background-repeat: no-repeat; background-position: center bottom; background-size: contain; opacity: .92; }
.benefit-card__art { height: 200px; }
.benefit-card__art[data-art="lead"]   { background-image: url("../assets/img/benefit-lead.png"); }
.benefit-card__art[data-art="rocket"] { background-image: url("../assets/img/benefit-rocket.png"); }
.benefit-card__art[data-art="puzzle"] { background-image: url("../assets/img/benefit-puzzle.png"); }
.benefit-card__art[data-art="coin"]   { background-image: url("../assets/img/benefit-coin.png"); }

/* ---------- Services ---------- */
.services .container { text-align: center; }
.services__layout { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: 40px; margin-top: 56px; text-align: left; }
.services__nav { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 120px; align-self: start; }
.services__nav-item { font-family: var(--display); font-weight: 500; font-size: 22px; text-align: left; background: none; border: none; color: rgba(10,10,10,.45); padding: 12px 0 12px 18px; cursor: none; position: relative; transition: color .3s, padding .3s var(--ease); line-height: 1.25; }
.services__nav-item::before { content: "›"; position: absolute; left: 0; opacity: 0; transform: translateX(-6px); color: var(--accent); transition: .3s var(--ease); }
.services__nav-item.is-active { color: var(--ink); padding-left: 22px; }
.services__nav-item.is-active::before { opacity: 1; transform: translateX(0); }
.services__panels { display: flex; flex-direction: column; gap: 20px; }
.svc-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 38px; box-shadow: 0 14px 36px rgba(10,10,10,.04); transition: box-shadow .3s; }
.svc-panel.is-open { box-shadow: 0 22px 50px rgba(10,10,10,.09); }
.svc-panel__title { font-family: var(--display); font-weight: 500; font-size: 26px; margin-bottom: 14px; }
.svc-panel p { color: var(--muted); font-size: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.chip { font-size: 14px; padding: 9px 16px; border: 1px solid var(--line); border-radius: 100px; background: var(--bg); transition: .3s var(--ease); }
.chip:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.svc-panel__link { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 22px; font-family: var(--display); font-weight: 500; font-size: 20px; }
.svc-panel__link span { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 20px; transition: .3s var(--ease); }
.svc-panel__link:hover span { background: var(--accent); color: #fff; border-color: var(--accent); transform: rotate(90deg); }

/* mini marquee */
.mini-marquee { margin-top: 80px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.mini-marquee__track { display: flex; align-items: center; gap: 26px; width: max-content; animation: marquee 28s linear infinite; }
.mini-marquee__track span { font-family: var(--display); font-weight: 500; font-size: clamp(20px, 2.4vw, 30px); color: rgba(10,10,10,.35); white-space: nowrap; }
.mini-marquee__track .dot { color: var(--accent); font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Portfolio ---------- */
.portfolio__grid { display: flex; flex-direction: column; gap: 28px; margin-top: 56px; max-width: 880px; margin-left: auto; margin-right: auto; }
.project { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; box-shadow: 0 16px 40px rgba(10,10,10,.05); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.project:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(10,10,10,.12); }
.project__media { height: 420px; border-radius: var(--radius); background-size: cover; background-position: top center; position: relative; overflow: hidden; }
.project__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.12)); }
.project__media--rev { background-image: url("../assets/img/proj-revolucao.jpg"); background-color: #1a1a1a; }
.project__media--behance { background-image: url("../assets/img/proj-behance.jpg"); background-color: #0a2540; }
.project__media--rap { background-image: url("../assets/img/proj-rap.jpg"); background-color: #0e2a1d; }
.project__body { padding: 26px 18px 14px; text-align: left; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tags span { font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--muted); background: var(--bg); padding: 6px 12px; border-radius: 100px; }
.project__body h3 { font-family: var(--display); font-weight: 500; font-size: 24px; line-height: 1.2; margin-bottom: 22px; }

/* ---------- Process ---------- */
.process .container { text-align: center; }
.process__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 56px; text-align: left; }
.step { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 40px; position: relative; overflow: hidden; transition: transform .4s var(--ease); }
.step:hover { transform: translateY(-6px); }
.step::after { content: ""; position: absolute; bottom: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(241,85,51,.4), transparent 70%); }
.step__num { font-family: var(--display); font-weight: 600; font-size: 18px; width: 44px; height: 44px; border: 1px solid var(--line-dark); border-radius: 50%; display: grid; place-items: center; margin-bottom: 26px; color: var(--accent); }
.step h3 { font-family: var(--display); font-weight: 500; font-size: 24px; margin-bottom: 14px; }
.step p { color: rgba(255,255,255,.65); font-size: 15px; position: relative; z-index: 1; }

/* ---------- Compare ---------- */
.compare .container { text-align: center; }
.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; text-align: left; max-width: 880px; margin-left: auto; margin-right: auto; }
.compare__col { border-radius: var(--radius-lg); padding: 36px 34px; }
.compare__col h3 { font-family: var(--display); font-weight: 500; font-size: 26px; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.compare__col ul { display: flex; flex-direction: column; gap: 16px; }
.compare__col li { display: flex; align-items: center; gap: 14px; font-size: 16px; }
.compare__col--others { background: var(--surface); border: 1px solid var(--line); }
.compare__col--others li { color: var(--muted); }
.compare__col--others .x { width: 26px; height: 26px; flex: none; border-radius: 50%; background: rgba(10,10,10,.06); display: grid; place-items: center; font-size: 12px; color: #9aa0a6; }
.compare__col--us { background: var(--ink); color: #fff; box-shadow: 0 26px 60px rgba(10,10,10,.2); }
.us-mark { width: 26px; height: 26px; border-radius: 7px; background: var(--accent); display: inline-grid; place-items: center; position: relative; }
.us-mark::before, .us-mark::after { content: ""; position: absolute; top: 9px; width: 4px; height: 4px; background: var(--ink); border-radius: 50%; }
.us-mark::before { left: 7px; } .us-mark::after { right: 7px; }
.compare__col--us .check { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--accent); display: grid; place-items: center; font-size: 13px; color: #fff; }

/* ---------- Testimonials ---------- */
.testimonials .container { text-align: center; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; text-align: left; }
.tcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 30px; display: flex; flex-direction: column; position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.tcard:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(10,10,10,.1); }
.tcard__quote { font-family: var(--display); font-weight: 700; font-size: 50px; line-height: 0; color: var(--accent); height: 26px; }
.tcard blockquote { font-size: 16px; color: var(--ink-soft); margin: 18px 0 26px; }
.tcard figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.avatar { width: 50px; height: 50px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 16px; color: #fff; background: linear-gradient(140deg, var(--accent), var(--accent-deep)); }
.avatar::before { content: attr(data-i); }
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.tcard__logo { width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; margin-left: -14px; overflow: hidden; box-shadow: 0 2px 8px rgba(10,10,10,.08); flex: none; }
.tcard__logo img { width: 72%; height: 72%; object-fit: contain; }
.tcard__name { display: flex; flex-direction: column; font-family: var(--display); font-weight: 500; font-size: 17px; }
.tcard__name small { font-family: var(--body); font-weight: 500; font-size: 11px; letter-spacing: .03em; color: var(--muted); margin-top: 3px; }

/* ---------- Pricing ---------- */
.pricing .container { text-align: center; }
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; text-align: left; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.plan:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(10,10,10,.1); }
.plan--featured { border-color: var(--accent); box-shadow: 0 20px 50px rgba(241,85,51,.12); }
.plan__top { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.plan__icon { width: 34px; height: 34px; background: var(--ink); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 15px; }
.plan__top h3 { font-family: var(--display); font-weight: 500; font-size: 19px; }
.plan__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; padding-bottom: 18px; border-bottom: 1px dashed var(--line); margin-bottom: 18px; }
.plan__price small { width: 100%; font-size: 13px; color: var(--muted); margin-bottom: 2px; }
.plan__amount { font-family: var(--display); font-weight: 600; font-size: 38px; letter-spacing: -.02em; }
.plan__period { color: var(--muted); font-size: 15px; }
.plan__save { font-size: 12px; color: var(--accent); margin: -8px 0 14px; }
.toggle { display: inline-flex; background: var(--bg); border: 1px solid var(--line); border-radius: 100px; padding: 4px; margin-bottom: 18px; }
.toggle__btn { border: none; background: none; font-family: var(--body); font-size: 14px; padding: 7px 18px; border-radius: 100px; cursor: none; transition: .3s var(--ease); color: var(--muted); }
.toggle__btn.is-active { background: var(--ink); color: #fff; }
.plan__desc { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.plan__list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.plan__list li { position: relative; padding-left: 26px; font-size: 14px; }
.plan__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.plan .btn { margin-top: auto; }

/* ---------- About / Team ---------- */
.about .container { text-align: center; }
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; text-align: left; }
.member { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px 16px 24px; position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.member:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(10,10,10,.1); }
.member__badge { position: absolute; top: 28px; left: 28px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; letter-spacing: .04em; color: #fff; background: linear-gradient(120deg, var(--accent), var(--accent-deep)); padding: 7px 13px; border-radius: 100px; }
.member__photo { height: 280px; border-radius: var(--radius); background: linear-gradient(160deg, #e9edf1, #d7dde3); position: relative; overflow: hidden; display: grid; place-items: center; }
.member__photo::after { content: attr(data-i); font-family: var(--display); font-weight: 600; font-size: 72px; color: rgba(10,10,10,.12); }
.member__photo--img { background-size: cover; background-position: center 18%; }
.member__photo--img::after { content: none; }
.member h3 { font-family: var(--display); font-weight: 500; font-size: 23px; margin: 20px 0 6px; }
.member p { font-size: 14px; color: var(--muted); min-height: 40px; }
.member__social { display: flex; gap: 10px; margin-top: 16px; }
.member__social a { width: 32px; height: 32px; background: var(--ink); color: #fff; border-radius: 8px; display: grid; place-items: center; font-size: 13px; font-weight: 600; transition: .3s var(--ease); }
.member__social a:hover { background: var(--accent); transform: translateY(-2px); }
.member--cta { background: linear-gradient(155deg, var(--accent-soft), var(--accent-deep)); color: #fff; display: flex; flex-direction: column; padding: 32px 30px; }
.member--cta h3 { font-size: 27px; margin-top: 0; }
.member--cta p { color: rgba(255,255,255,.9); min-height: 0; margin-bottom: auto; }
.member--cta .btn { margin-top: 24px; }

/* ---------- FAQ ---------- */
.faq .container { display: grid; grid-template-columns: 0.95fr 1.3fr; gap: 50px; align-items: start; }
.faq__head { position: sticky; top: 120px; }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq__item[open] { box-shadow: 0 16px 40px rgba(10,10,10,.06); border-color: rgba(241,85,51,.4); }
.faq__item summary { list-style: none; cursor: none; padding: 24px 26px; font-family: var(--display); font-weight: 500; font-size: 19px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__sign { width: 30px; height: 30px; flex: none; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 20px; transition: .35s var(--ease); }
.faq__item[open] .faq__sign { transform: rotate(135deg); background: var(--accent); color: #fff; border-color: var(--accent); }
.faq__body { padding: 0 26px; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s var(--ease); }
.faq__item[open] .faq__body { padding: 0 26px 26px; max-height: 320px; }
.faq__body p { color: var(--muted); font-size: 15px; }

/* ---------- Contact ---------- */
.contact { padding-bottom: 120px; }
.contact__card { display: grid; grid-template-columns: 1fr 1fr; background: linear-gradient(150deg, var(--accent), var(--accent-deep)); border-radius: var(--radius-lg); padding: 56px; gap: 40px; align-items: center; box-shadow: 0 30px 70px rgba(241,85,51,.2); }
.contact__copy h2 { font-family: var(--display); font-weight: 500; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -.02em; color: #fff; }
.contact__copy p { color: rgba(255,255,255,.9); font-size: 18px; margin-top: 18px; max-width: 30ch; }
.contact__form { background: var(--ink); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; gap: 14px; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact__form input, .contact__form textarea { width: 100%; background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); border-radius: 14px; padding: 16px 18px; color: #fff; font-family: var(--body); font-size: 15px; resize: none; transition: border-color .3s, background .3s; }
.contact__form input::placeholder, .contact__form textarea::placeholder { color: rgba(255,255,255,.4); }
.contact__form input:focus, .contact__form textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,.09); }
.contact__note { color: #fff; font-size: 14px; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; padding: 70px 0 40px; border-radius: 40px 40px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__word { font-family: var(--display); font-weight: 700; font-size: clamp(70px, 13vw, 200px); line-height: .85; letter-spacing: -.03em; background: linear-gradient(120deg, var(--accent-soft), var(--accent-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer__brand p { color: rgba(255,255,255,.6); font-size: 16px; max-width: 36ch; margin-top: 24px; }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 14px; }
.footer__nav a { color: rgba(255,255,255,.7); font-size: 15px; display: inline-block; padding: 6px 0; transition: color .25s, transform .25s var(--ease); }
.footer__nav a:hover { color: var(--accent); transform: translateX(4px); }
.footer__info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 36px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.footer__info > div { display: flex; flex-direction: column; gap: 8px; }
.footer__label { font-size: 11px; font-weight: 600; letter-spacing: .06em; color: var(--accent); }
.footer__info a, .footer__info span:not(.footer__label) { font-size: 15px; color: rgba(255,255,255,.85); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 28px; color: rgba(255,255,255,.5); font-size: 14px; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .stats__grid, .benefits__track, .testimonials__grid, .pricing__grid, .team { grid-template-columns: repeat(2, 1fr); }
  .services__layout { grid-template-columns: 1fr; }
  .services__nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .services__nav-item { font-size: 16px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 100px; }
  .services__nav-item.is-active { background: var(--ink); color: #fff; padding-left: 16px; }
  .services__nav-item::before { display: none; }
  .faq .container { grid-template-columns: 1fr; gap: 30px; }
  .faq__head { position: static; }
}
@media (max-width: 760px) {
  .nav, .header__cta { display: none; }
  .menu-toggle { display: flex; }
  section { padding: 70px 0; }
  .hero { padding: 120px 0 40px; }
  .hero__gallery { grid-template-columns: 1fr; }
  .hero__img { transform: none !important; height: 240px; }
  .stats__grid, .benefits__track, .testimonials__grid, .pricing__grid, .team, .process__grid, .compare__grid, .contact__card, .contact__row, .footer__top, .footer__info, .footer__nav { grid-template-columns: 1fr; }
  .contact__card { padding: 32px 24px; }
  .compare__grid { max-width: 100%; }
  .footer__word { font-size: 26vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade-up, .reveal { opacity: 1; transform: none; }
  .reveal-words .word { opacity: 1; }
}
