/* ==========================================================================
   Creative Juice Consulting — production stylesheet
   ========================================================================== */

:root {
  --bg: #09090f;
  --bg-card: #12121e;
  --bg-alt: #0e0e1a;
  --a: #FF6B2B;
  --b: #F7B731;
  --c: #2ABFB0;
  --d: #9B5DE5;
  --text: #f0eee8;
  --muted: #888;
  --nav: rgba(9,9,15,0.85);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s;
}

/* ── NAV ──────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: var(--nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-logo-link { display: block; line-height: 0; }
.nav-logo { height: 40px; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 15px;
  font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 18px; }

.theme-dots { display: flex; align-items: center; gap: 8px; }
.theme-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  cursor: pointer; padding: 0;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  background-clip: padding-box;
}
.theme-dot[data-theme="dark-orange"]  { background: linear-gradient(135deg, #FF6B2B, #F7B731); }
.theme-dot[data-theme="midnight-teal"] { background: linear-gradient(135deg, #2ABFB0, #F7B731); }
.theme-dot[data-theme="deep-purple"]   { background: linear-gradient(135deg, #9B5DE5, #FF6B2B); }
.theme-dot:hover { transform: scale(1.12); border-color: rgba(255,255,255,0.35); }
.theme-dot.active {
  border-color: var(--text);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.08), 0 0 14px rgba(255,255,255,0.15);
}

.nav-cta {
  background: var(--a);
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, background 0.3s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── HERO ──────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 60px 80px;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
  animation: drift 12s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}
.orb-1 { width: 600px; height: 600px; background: var(--a); top: -150px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: var(--c); bottom: -100px; left: -80px; animation-delay: -4s; }
.orb-3 { width: 400px; height: 400px; background: var(--d); top: 30%; left: 40%; animation-delay: -8s; }
.orb-4 { width: 300px; height: 300px; background: var(--b); bottom: 10%; right: 20%; animation-delay: -2s; }

@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-40px) scale(1.08); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 960px; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; color: var(--muted);
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.6s 0.2s forwards;
}
.hero-badge span { color: var(--b); }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s 0.4s forwards;
  text-wrap: balance;
}
.hero-title .line-grad {
  background: linear-gradient(90deg, var(--a), var(--b) 45%, var(--c));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--muted); font-weight: 300;
  max-width: 600px; margin: 0 auto 48px;
  opacity: 0; animation: fadeUp 0.7s 0.6s forwards;
  line-height: 1.55;
}
.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.8s forwards;
}
.btn-primary {
  background: linear-gradient(135deg, var(--a), var(--b));
  color: #0a0a0a; font-weight: 700; font-size: 16px;
  padding: 16px 36px; border-radius: 100px;
  text-decoration: none; letter-spacing: 0.01em;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 0 40px rgba(255,107,43,0.35);
  display: inline-block;
  border: none; cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(255,107,43,0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text); font-size: 16px; font-weight: 500;
  padding: 16px 36px; border-radius: 100px;
  text-decoration: none; letter-spacing: 0.01em;
  transition: background 0.18s, border-color 0.18s;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }

.hero-stats {
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
  margin-top: 80px;
  opacity: 0; animation: fadeUp 0.7s 1.0s forwards;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 42px; font-weight: 800;
  background: linear-gradient(135deg, var(--a), var(--b));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE ──────────────────────────────────── */
.marquee-section {
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  background: var(--bg-alt);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-item {
  padding: 18px 48px;
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
  display: flex; align-items: center; gap: 20px;
}
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--a); display: inline-block; }
.marquee-dot.c { background: var(--c); }
.marquee-dot.d { background: var(--d); }
.marquee-dot.b { background: var(--b); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION COMMON ──────────────────────────────────── */
section { padding: 120px 60px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--a);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 700px;
  margin-bottom: 20px;
}
.section-sub {
  color: var(--muted); font-size: 18px; font-weight: 300;
  max-width: 560px; line-height: 1.6;
  margin-bottom: 64px;
}

.grad-ab {
  background: linear-gradient(90deg, var(--a), var(--b));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── START / INTAKE FORM ──────────────────────────────────── */
.start-section {
  padding: 80px 60px;
  background: var(--bg-alt);
}
.start-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.start-title { margin-bottom: 16px; }
.start-desc {
  color: var(--muted); font-size: 17px; line-height: 1.7;
  margin-bottom: 32px;
}
.start-checks { flex-direction: column; gap: 14px; margin-bottom: 0; display: flex; }

.cta-steps {
  display: flex; gap: 32px;
  flex-wrap: wrap; position: relative;
}
.cta-step {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--muted);
}
.cta-step-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--a), var(--b));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0; color: #000; font-weight: 700;
}

.start-right {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.cta-orb-1 {
  position: absolute; width: 300px; height: 300px;
  background: var(--a); border-radius: 50%; filter: blur(100px);
  opacity: 0.2; top: -80px; right: -60px; pointer-events: none;
}
.cta-orb-1.small { width: 200px; height: 200px; opacity: 0.15; top: -60px; right: -40px; }

/* Intake Form */
.form-step { display: none; position: relative; }
.form-step.active { display: block; }

.form-progress {
  display: flex; gap: 6px; margin-bottom: 28px;
  position: relative;
}
.form-pip {
  height: 4px; flex: 1; border-radius: 100px;
  background: rgba(255,255,255,0.1);
  transition: background 0.4s;
}
.form-pip.done { background: var(--a); }

.choice-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px; margin-bottom: 28px;
}
.choice-grid.single { grid-template-columns: 1fr; }

.choice-btn {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 24px 20px;
  cursor: pointer; text-align: left;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  color: var(--text);
  font-family: var(--font-body);
  width: 100%;
}
.choice-btn.choice-row {
  display: flex; flex-direction: row; align-items: center;
  gap: 14px; padding: 16px 20px;
}
.choice-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.choice-btn.selected { border-color: var(--a); background: rgba(255,107,43,0.08); }
.choice-icon { font-size: 26px; margin-bottom: 10px; display: block; }
.choice-icon.inline { margin: 0; font-size: 22px; }
.choice-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.choice-sub { font-size: 13px; color: var(--muted); }

.form-input {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px 20px;
  color: var(--text); font-family: var(--font-body);
  font-size: 16px; margin-bottom: 14px;
  transition: border-color 0.2s;
  outline: none;
}
.form-input.textarea { min-height: 110px; resize: vertical; }
.form-input:focus { border-color: var(--a); }
.form-input::placeholder { color: var(--muted); }

.form-label {
  display: block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.form-label-lg { margin-bottom: 16px; }
.form-group { margin-bottom: 20px; }

/* Timeline pill buttons */
.timeline-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pill-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.pill-btn.selected { border-color: var(--a); background: rgba(255,107,43,0.12); color: #fff; }

.form-nav { display: flex; gap: 12px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.btn-next {
  background: linear-gradient(135deg, var(--a), var(--b));
  color: #0a0a0a; font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: var(--font-body);
}
.btn-next:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(255,107,43,0.4); }
.btn-back {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--muted); font-size: 15px; padding: 14px 24px;
  border-radius: 100px; cursor: pointer; font-family: var(--font-body);
  transition: border-color 0.2s, color 0.2s;
}
.btn-back:hover { border-color: rgba(255,255,255,0.3); color: var(--text); }
.step-indicator { font-size: 13px; color: var(--muted); margin-left: auto; }

/* Success state */
.form-success {
  text-align: center; padding: 40px 0; display: none;
  position: relative;
}
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--a), var(--b));
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--font-head); font-size: 28px; font-weight: 800;
  margin-bottom: 12px;
}
.form-success p { color: var(--muted); font-size: 16px; }

/* ── SERVICES ──────────────────────────────────── */
#services { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 44px 40px;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--card-a), var(--card-b), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 80px rgba(0,0,0,0.5); }
.service-card.c1 { --card-a: var(--a); --card-b: var(--b); }
.service-card.c2 { --card-a: var(--c); --card-b: var(--d); }
.service-card.c3 { --card-a: var(--d); --card-b: var(--a); }

.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 28px;
  position: relative;
}
.c1 .service-icon { background: linear-gradient(135deg, var(--a), var(--b)); }
.c2 .service-icon { background: linear-gradient(135deg, var(--c), var(--d)); }
.c3 .service-icon { background: linear-gradient(135deg, var(--d), var(--a)); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 24px; font-weight: 700;
  margin-bottom: 14px; letter-spacing: -0.01em;
  position: relative;
}
.service-card p {
  color: var(--muted); font-size: 15px; line-height: 1.65;
  margin-bottom: 32px;
  position: relative;
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.03em;
  text-decoration: none; text-transform: uppercase;
  transition: gap 0.2s;
  position: relative;
}
.c1 .service-link { color: var(--a); }
.c2 .service-link { color: var(--c); }
.c3 .service-link { color: var(--d); }
.service-link:hover { gap: 14px; }

.service-bg-num {
  position: absolute; bottom: -20px; right: 20px;
  font-family: var(--font-head); font-size: 140px; font-weight: 800;
  opacity: 0.04; line-height: 1; pointer-events: none;
  user-select: none;
}

/* ── PROCESS ──────────────────────────────────── */
#process { background: var(--bg); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; position: relative;
  margin-top: 64px;
}
.process-step {
  background: var(--bg-card);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.process-step:first-child { border-radius: 20px 0 0 20px; }
.process-step:last-child { border-radius: 0 20px 20px 0; }
.process-step:hover { background: #1a1a2c; }
.step-num {
  font-family: var(--font-head);
  font-size: 64px; font-weight: 800; line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.step-1 .step-num { color: var(--a); }
.step-2 .step-num { color: var(--b); }
.step-3 .step-num { color: var(--c); }
.step-4 .step-num { color: var(--d); }
.process-step h3 {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.process-step p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.step-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
}
.step-1 .step-bar { background: var(--a); }
.step-2 .step-bar { background: var(--b); }
.step-3 .step-bar { background: var(--c); }
.step-4 .step-bar { background: var(--d); }

/* ── WHY US ──────────────────────────────────── */
#about { background: var(--bg-alt); }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.about-desc {
  color: var(--muted); font-size: 17px; line-height: 1.7;
  margin-bottom: 32px;
}
.inline-btn { display: inline-block; }

.about-right { display: flex; flex-direction: column; gap: 20px; }
.about-feature {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px; border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.25s, transform 0.25s;
}
.about-feature:hover { border-color: rgba(255,255,255,0.12); transform: translateX(6px); }
.feat-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 20px;
}
.feat-1 .feat-icon { background: rgba(255,107,43,0.15); }
.feat-2 .feat-icon { background: rgba(42,191,176,0.15); }
.feat-3 .feat-icon { background: rgba(155,93,229,0.15); }
.feat-4 .feat-icon { background: rgba(247,183,49,0.15); }
.feat-text h4 {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  margin-bottom: 6px;
}
.feat-text p { color: var(--muted); font-size: 14px; line-height: 1.55; }

.big-quote {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.big-quote .accent {
  background: linear-gradient(90deg, var(--a), var(--b));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--bg-alt);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { height: 36px; margin-bottom: 18px; display: block; }
.footer-tagline { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 15px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px; margin: 24px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 13px; }
.footer-tagline-bottom {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  background: linear-gradient(90deg, var(--a), var(--b));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-badge, .hero-title, .hero-sub, .hero-ctas, .hero-stats { opacity: 1; }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-right { gap: 12px; }
  #hero { padding: 100px 24px 60px; }
  section { padding: 80px 24px; }
  .start-section { padding: 60px 24px; }
  .start-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(1) { border-radius: 20px 0 0 0; }
  .process-step:nth-child(2) { border-radius: 0 20px 0 0; }
  .process-step:nth-child(3) { border-radius: 0 0 0 20px; }
  .process-step:nth-child(4) { border-radius: 0 0 20px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 24px; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step:first-child { border-radius: 20px 20px 0 0; }
  .process-step:last-child { border-radius: 0 0 20px 20px; }
  .process-step:nth-child(2), .process-step:nth-child(3) { border-radius: 0; }
  .start-right { padding: 28px; }
  .step-indicator { width: 100%; margin-left: 0; text-align: right; order: 10; }
}
