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

:root {
  --bg: #080810;
  --bg2: #0d0d1a;
  --bg3: #111120;
  --surface: rgba(255,255,255,0.04);
  --surface2: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.14);
  --text: #f0f0fa;
  --muted: #6b6b88;
  --muted2: #9090b0;
  --purple: #7b6cff;
  --purple2: #a78bfa;
  --pink: #ff4d8d;
  --cyan: #00e5ff;
  --green: #00ff87;
  --r: 20px;
  --r-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(123,108,255,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.2s;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.05s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { transform: translate(-50%,-50%) scale(1.8); border-color: var(--pink); }

/* ─── LAYOUT ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 120px 0; }

/* ─── TYPOGRAPHY ─── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 48px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(110deg, var(--purple) 0%, var(--pink) 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ─── */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #080810;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: all 0.25s;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-main:hover { background: var(--purple2); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(123,108,255,0.4); }
.btn-main--full { width: 100%; justify-content: center; border-radius: var(--r-sm); }
.btn-arrow { font-size: 18px; line-height: 1; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--muted2);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border2);
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { color: #fff; border-color: #fff; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: all 0.4s;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(8,8,16,0.7);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav__logo .accent,
.accent { color: var(--purple); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: #fff; }
.nav__pill {
  background: var(--surface2) !important;
  border: 1px solid var(--border2) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav__pill:hover { background: var(--purple) !important; border-color: var(--purple) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  z-index: 901;
}
.nav__hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 0;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; width: 100%; }

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(123,108,255,0.1);
  border: 1px solid rgba(123,108,255,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--purple2);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green), 0 0 20px rgba(0,255,135,0.4);
  animation: pulseAnim 2s ease-in-out infinite;
}
@keyframes pulseAnim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.line { display: block; overflow: hidden; }
.line--stroke {
  -webkit-text-stroke: 2px rgba(255,255,255,0.35);
  color: transparent;
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 80px;
  flex-wrap: wrap;
}
.hero__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted2);
  max-width: 440px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  background: rgba(8,8,16,0.6);
  backdrop-filter: blur(20px);
  padding: 28px 0;
}
.hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  position: relative;
}
.hero__stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero__stat-unit {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}
.hero__stat-lbl {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__stat-div { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ─── MARQUEE ─── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.marquee__inner span {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.marquee__dot { color: var(--purple) !important; font-size: 10px !important; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SERVICES BENTO ─── */
.services { background: var(--bg); }
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 16px;
}

/* Card base */
.bento__card {
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.4s;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.bento__card:hover { border-color: var(--border2); transform: translateY(-4px); }
.bento__card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(circle at 80% 20%, rgba(123,108,255,0.15), transparent 60%);
}
.bento__card:hover .bento__card-bg { opacity: 1; }
.bento__card-inner {
  padding: 32px;
  flex: 1;
  position: relative;
  z-index: 2;
}
.bento__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bento__card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.bento__card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted2);
  margin-bottom: 16px;
}
.bento__card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bento__card ul li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.bento__card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple);
}

/* Card sizes */
.bento__card--lg { grid-column: span 2; }
.bento__card--wide { grid-column: span 2; }

/* Card colors */
.bento__card--purple { border-color: rgba(123,108,255,0.2); }
.bento__card--purple .bento__card-bg { background: radial-gradient(circle at 70% 30%, rgba(123,108,255,0.2), transparent 60%); opacity: 1; }
.bento__card--green { border-color: rgba(0,255,135,0.1); }
.bento__card--green .bento__card-bg { background: radial-gradient(circle at 70% 30%, rgba(0,255,135,0.1), transparent 60%); opacity: 1; }
.bento__card--pink { border-color: rgba(255,77,141,0.15); }
.bento__card--pink .bento__card-bg { background: radial-gradient(circle at 70% 30%, rgba(255,77,141,0.15), transparent 60%); opacity: 1; }

/* Decos */
.bento__deco {
  position: absolute;
  bottom: 0; right: 0;
  pointer-events: none;
  z-index: 1;
}

/* Social grid deco */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 20px;
  opacity: 0.5;
}
.sg-post {
  border-radius: 8px;
  aspect-ratio: 1;
}
.sg-post--1 { background: linear-gradient(135deg, #7b6cff, #ff4d8d); width: 80px; }
.sg-post--2 { background: linear-gradient(135deg, #00e5ff, #7b6cff); width: 80px; }
.sg-post--3 { background: linear-gradient(135deg, #00ff87, #00e5ff); width: 80px; }
.sg-post--4 { background: linear-gradient(135deg, #ff4d8d, #ff9a00); width: 80px; }
.sg-post--5 { background: linear-gradient(135deg, #7b6cff, #00ff87); width: 80px; }
.sg-post--6 { background: linear-gradient(135deg, #00e5ff, #ff4d8d); width: 80px; }

/* Web mock deco */
.bento__deco--web {
  bottom: 20px; right: 20px;
}
.web-mock {
  width: 140px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.7;
}
.wm-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--purple) 30%, transparent);
  opacity: 0.6;
  margin: 10px 10px 8px;
  border-radius: 4px;
}
.wm-hero {
  height: 50px;
  background: linear-gradient(135deg, rgba(123,108,255,0.3), rgba(255,77,141,0.2));
  margin: 0 10px 8px;
  border-radius: 6px;
}
.wm-row {
  display: flex;
  gap: 4px;
  padding: 0 10px 12px;
}
.wm-row div {
  flex: 1;
  height: 24px;
  background: var(--surface2);
  border-radius: 4px;
}

/* CRM flow deco */
.bento__deco--crm {
  bottom: 20px; right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.flow-node {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.flow-node--a { background: rgba(123,108,255,0.2); border: 1px solid rgba(123,108,255,0.4); color: var(--purple2); }
.flow-node--b { background: rgba(0,229,255,0.1); border: 1px solid rgba(0,229,255,0.3); color: var(--cyan); }
.flow-node--c { background: rgba(0,255,135,0.15); border: 1px solid rgba(0,255,135,0.4); color: var(--green); }
.flow-arrow { color: var(--muted); font-size: 12px; line-height: 1; }

/* Ads chart deco */
.bento__deco--ads {
  bottom: 20px; right: 24px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.ads-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}
.ads-bar {
  width: 16px;
  height: var(--h);
  background: var(--surface2);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.ads-bar span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--muted);
  white-space: nowrap;
}
.ads-bar--active { background: linear-gradient(180deg, var(--purple), rgba(123,108,255,0.3)); }
.ads-roas {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 4px;
}
.ads-roas-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.ads-roas-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* Email mock deco */
.bento__deco--email {
  bottom: 20px; right: 16px;
}
.email-mock {
  width: 150px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.75;
}
.em-header {
  padding: 10px 12px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.em-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  flex-shrink: 0;
}
.em-line { height: 5px; border-radius: 3px; background: var(--surface2); }
.em-line--name { width: 70px; margin-bottom: 5px; }
.em-line--sub { width: 50px; background: var(--surface); }
.em-body { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 5px; }
.em-line--lg { width: 100%; height: 5px; }
.em-line--md { width: 80%; height: 5px; }
.em-line--sm { width: 60%; height: 5px; }
.em-cta {
  margin-top: 6px;
  padding: 5px 10px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

/* Brand deco */
.bento__deco--brand {
  bottom: 16px; right: 24px;
}
.brand-rings {
  position: relative;
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.br {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spinRing 8s linear infinite;
}
.br--1 { width: 80px; height: 80px; border-color: rgba(123,108,255,0.5); animation-duration: 8s; }
.br--2 { width: 56px; height: 56px; border-color: rgba(255,77,141,0.4); animation-duration: 5s; animation-direction: reverse; }
.br--3 { width: 34px; height: 34px; border-color: rgba(0,229,255,0.4); animation-duration: 3s; }
.brand-rings span {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── RESULTS ─── */
.results { background: var(--bg2); }
.results__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.result {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.4s;
}
.result:hover { border-color: var(--border2); transform: translateY(-4px); }
.result__industry {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}
.result__big {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.result__big span {
  font-size: 0.55em;
  color: var(--purple);
}
.result__meta {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.result p { font-size: 14px; color: var(--muted2); line-height: 1.65; margin-bottom: 20px; }
.result__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.result__chips span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border2);
  color: var(--muted2);
  letter-spacing: 0.04em;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.testi {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s;
}
.testi:hover { border-color: var(--border2); }
.testi__stars { color: #FFD200; letter-spacing: 2px; font-size: 14px; }
.testi p { font-size: 15px; color: var(--muted2); line-height: 1.7; flex: 1; }
.testi__who { display: flex; align-items: center; gap: 12px; }
.testi__av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi__who strong { display: block; font-size: 14px; color: #fff; font-weight: 600; }
.testi__who span { font-size: 12px; color: var(--muted); }

/* ─── PROCESS ─── */
.process { background: var(--bg); }
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process__step {
  display: grid;
  grid-template-columns: 80px 40px 1fr;
  align-items: flex-start;
  gap: 0;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.process__step:last-child { border-bottom: none; }
.ps__num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.ps__line {
  width: 1px;
  background: linear-gradient(180deg, var(--purple) 0%, transparent 100%);
  height: 100%;
  min-height: 60px;
  margin: 0 auto;
}
.ps__line.last { background: transparent; }
.ps__content { padding-left: 32px; }
.ps__content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.ps__content p { font-size: 15px; color: var(--muted2); line-height: 1.7; max-width: 600px; }

/* ─── CONTACT ─── */
.contact { background: var(--bg2); }
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__left .section-title { font-size: clamp(36px, 4vw, 56px); }
.contact__left p { font-size: 16px; color: var(--muted2); line-height: 1.75; max-width: 400px; margin-bottom: 40px; }
.contact__info { display: flex; flex-direction: column; gap: 16px; }
.ci {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.ci:hover { color: #fff; }
.ci:last-child { border-bottom: none; }
.ci__icon {
  width: 36px; height: 36px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--purple);
}

.cform {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform__group { display: flex; flex-direction: column; gap: 8px; }
.cform__group label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.cform__group input,
.cform__group select,
.cform__group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.cform__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236b6b88' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: none;
}
.cform__group input:focus,
.cform__group select:focus,
.cform__group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,108,255,0.12);
}
.cform__group input::placeholder,
.cform__group textarea::placeholder { color: var(--muted); }
.cform__group textarea { resize: vertical; min-height: 90px; }
.cform__note { font-size: 12px; color: var(--muted); text-align: center; }

.cform__success {
  background: var(--bg3);
  border: 1px solid rgba(0,255,135,0.2);
  border-radius: var(--r);
  padding: 80px 40px;
  text-align: center;
  display: none;
}
.cs__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0,255,135,0.1);
  border: 2px solid rgba(0,255,135,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--green);
  margin: 0 auto 24px;
}
.cform__success h3 { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cform__success p { color: var(--muted2); font-size: 16px; }

/* ─── FOOTER ─── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer__logo {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.footer__brand p { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 320px; margin-bottom: 28px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--muted2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer__social a:hover { background: var(--purple); border-color: var(--purple); color: #fff; }
.footer__links { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}
.footer__col a {
  font-size: 14px;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer__legal a:hover { color: #fff; }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2,1fr); }
  .bento__card--lg { grid-column: span 2; }
  .bento__card--wide { grid-column: span 2; }
  .contact__wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .hero__title { font-size: clamp(48px, 12vw, 80px); }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; }
  .hero__stat-div { display: none; }
  .hero__stat { border-bottom: 1px solid var(--border); padding: 20px; align-items: flex-start; }
  .bento { grid-template-columns: 1fr; }
  .bento__card--lg, .bento__card--wide { grid-column: span 1; }
  .results__grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .process__step { grid-template-columns: 50px 30px 1fr; }
  .ps__content h3 { font-size: 22px; }
  .cform { padding: 24px; }
  .cform__row { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(2,1fr); }
  .nav__links {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 260px;
    background: var(--bg2);
    border-left: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 88px 0 40px;
    z-index: 899;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  .nav__links.open { display: flex; transform: translateX(0); }
  .nav__links li { border-bottom: 1px solid var(--border); }
  .nav__links a { padding: 18px 28px; display: block; font-size: 16px; }
  .nav__pill { margin: 20px 28px 0 !important; border-radius: var(--r-sm) !important; }
  .nav__hamburger { display: flex; }
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
  .btn-main, .btn-ghost { cursor: pointer; }
  .cform__group select { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(40px, 13vw, 64px); }
  .section-title { font-size: clamp(32px, 8vw, 48px); }
  .footer__links { grid-template-columns: 1fr; }
}
