/* ================================
   MARS AGENCY — Modern, Warm, Bold
   ================================ */

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

:root {
  --bg:        #0a090f;
  --bg-alt:    #0f0e18;
  --surface:   #16152a;
  --surface-2: #1e1c35;
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.14);
  --text:      #f0effa;
  --muted:     #8a89ab;
  --font:      'Inter', -apple-system, sans-serif;
  --max-w:     1280px;
  --nav-h:     72px;
  --orange:    #e8681a;
  --purple:    #a855f7;
  --blue:      #3b82f6;
  --teal:      #06b6d4;
  --green:     #10b981;
  --pink:      #ec4899;
  --yellow:    #f59e0b;

  --grad-1:    linear-gradient(135deg, #e8681a, #a855f7);
  --grad-2:    linear-gradient(135deg, #e8681a, #f59e0b);
  --grad-3:    linear-gradient(135deg, #a855f7, #3b82f6);
  --grad-4:    linear-gradient(135deg, #10b981, #3b82f6);
  --accent:    #e8681a;
  --accent-2:  #a855f7;
}

html { scroll-behavior: smooth; }

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

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

/* Subtle noise texture */
body::after {
  content: '';
  position: fixed;
  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.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ================================
   GRADIENT TEXT UTILITY
   ================================ */
.gradient-text {
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================
   NAV
   ================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

#nav.scrolled {
  background: rgba(10,9,15,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.82; }

.logo-svg {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
  font-weight: 500;
}

.nav-links a:hover { color: var(--text); }
.nav-phone { display: flex; align-items: center; gap: 6px; }

.nav-cta {
  color: var(--text) !important;
  background: rgba(232,104,26,0.14) !important;
  border: 1px solid rgba(232,104,26,0.4) !important;
  padding: 10px 22px !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  background: rgba(232,104,26,0.26) !important;
  border-color: rgba(232,104,26,0.65) !important;
  box-shadow: 0 0 20px rgba(232,104,26,0.2) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ================================
   MOBILE MENU
   ================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(10,9,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 24px 24px 32px;
  z-index: 99;
}

.mobile-menu.open { display: flex; }

.mobile-link {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--accent); }

.mobile-link--cta {
  color: var(--accent) !important;
  font-weight: 700;
  padding-top: 20px;
  border-bottom: none;
}

/* ================================
   BUTTONS
   ================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 28px rgba(232,104,26,0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 36px rgba(232,104,26,0.5);
}

.btn-primary--large {
  font-size: 16px;
  padding: 18px 36px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border-2);
  padding: 14px 28px;
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.3);
}

/* ================================
   HERO
   ================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 80px) 48px 80px;
  position: relative;
  overflow: hidden;
}

/* Grid background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.hero-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,104,26,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
}

.hero-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.14) 0%, transparent 70%);
  bottom: 0px; left: 10%;
}

.hero-orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  top: 40%; left: 50%;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  padding: 7px 16px;
  border: 1px solid rgba(232,104,26,0.3);
  border-radius: 100px;
  background: rgba(232,104,26,0.08);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}

.hero-headline {
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 960px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.78;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* ================================
   MARQUEE
   ================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--bg-alt);
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.marquee-track .dot {
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 16px;
  line-height: 1;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================
   PAIN STRIP
   ================================ */
.pain-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.pain-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.pain-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 32px;
}

.pain-item:first-child { padding-left: 0; }
.pain-item:last-child { padding-right: 0; }

.pain-icon {
  font-size: 28px;
  line-height: 1;
}

.pain-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.pain-item strong {
  color: var(--text);
}

.pain-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* ================================
   SECTION BASE
   ================================ */
.section {
  padding: 100px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section--dark-alt {
  max-width: 100%;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
  position: relative;
  z-index: 1;
}

.section--dark-alt > .section-header,
.section--dark-alt > .case-grid {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.section--dark-alt > .section-header {
  margin-bottom: 64px;
}

.section-header {
  margin-bottom: 64px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

/* ================================
   SERVICES GRID
   ================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,104,26,0.3);
  background: var(--surface-2);
}

.service-card:hover::before { opacity: 1; }

.service-card:nth-child(1)::before,
.service-card:nth-child(5)::before,
.service-card:nth-child(9)::before  { background: var(--grad-1); }
.service-card:nth-child(2)::before,
.service-card:nth-child(6)::before,
.service-card:nth-child(10)::before { background: var(--grad-2); }
.service-card:nth-child(3)::before,
.service-card:nth-child(7)::before,
.service-card:nth-child(11)::before { background: var(--grad-3); }
.service-card:nth-child(4)::before,
.service-card:nth-child(8)::before,
.service-card:nth-child(12)::before { background: var(--grad-4); }

.service-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-icon--orange { background: rgba(232,104,26,0.16); }
.service-icon--purple { background: rgba(168,85,247,0.16); }
.service-icon--blue   { background: rgba(59,130,246,0.16); }
.service-icon--teal   { background: rgba(6,182,212,0.16); }
.service-icon--green  { background: rgba(16,185,129,0.16); }
.service-icon--pink   { background: rgba(236,72,153,0.16); }
.service-icon--yellow { background: rgba(245,158,11,0.16); }

.service-card h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.service-tags span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 6px;
}

.service-card--cta {
  background: linear-gradient(135deg, rgba(232,104,26,0.12), rgba(168,85,247,0.08));
  border-color: rgba(232,104,26,0.25);
}

.service-card--cta:hover {
  border-color: rgba(232,104,26,0.45);
}

/* ================================
   HOW IT WORKS
   ================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(232,104,26,0.3);
}

.process-num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text);
}

.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.process-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232,104,26,0.4), rgba(168,85,247,0.4));
  align-self: center;
  margin: 0 8px;
  margin-top: -40px;
}

/* ================================
   CASE STUDIES
   ================================ */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.case-card {
  position: relative;
  min-height: 320px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,104,26,0.3);
  background: var(--surface-2);
}

.case-card--featured {
  grid-column: 1 / -1;
  min-height: 400px;
  background: linear-gradient(135deg, rgba(232,104,26,0.1), rgba(168,85,247,0.06));
  border-color: rgba(232,104,26,0.2);
}

.case-pill {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.case-body h3 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.case-body p {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.72;
}

.case-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.case-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.case-stat span {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-stat {
  font-size: 12px;
  color: var(--muted);
}

.case-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
  flex-shrink: 0;
  align-self: flex-end;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
}

.case-card:hover .case-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,104,26,0.25);
}

.testimonial-stars {
  font-size: 16px;
  color: var(--yellow);
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.78;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.testimonial-author span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ================================
   STATS STRIP
   ================================ */
.stats-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 48px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ================================
   ABOUT
   ================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-left .section-title { margin-bottom: 24px; }

.about-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.about-photo-wrap {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.about-sticker {
  width: 80%;
  max-width: 320px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(232,104,26,0.2)) drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s;
}

.about-sticker:hover {
  transform: translateY(-8px) rotate(-1deg) scale(1.03);
  filter: drop-shadow(0 32px 64px rgba(232,104,26,0.3)) drop-shadow(0 12px 32px rgba(0,0,0,0.5));
}

.about-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: rgba(10,9,15,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232,104,26,0.3);
  padding: 7px 14px;
  border-radius: 100px;
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.about-card-header {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.about-card-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}

.about-card-dot--red    { background: #ff5f57; }
.about-card-dot--yellow { background: #febc2e; }
.about-card-dot--green  { background: #28c840; }

.about-card-body {
  padding: 8px 0;
}

.about-stack-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.about-stack-item:last-child { border-bottom: none; }
.about-stack-item:hover { background: rgba(255,255,255,0.03); }

.stack-icon { font-size: 18px; flex-shrink: 0; }

.about-stack-item > span:nth-child(2) {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
}

.stack-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,104,26,0.12);
  border: 1px solid rgba(232,104,26,0.25);
  padding: 3px 9px;
  border-radius: 6px;
  flex-shrink: 0;
}

/* ================================
   LEAD MAGNET
   ================================ */
.lead-magnet-section {
  background: linear-gradient(135deg, rgba(232,104,26,0.08), rgba(168,85,247,0.06));
  border-top: 1px solid rgba(232,104,26,0.15);
  border-bottom: 1px solid rgba(232,104,26,0.15);
  position: relative;
  z-index: 1;
}

.lead-magnet-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.lead-magnet-text h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}

.lead-magnet-text p {
  font-size: 15px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.72;
}

.lead-magnet-text .section-label {
  margin-bottom: 10px;
}

.lead-magnet-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lead-magnet-form input {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 13px 22px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font);
  outline: none;
  width: 280px;
  transition: border-color 0.2s;
}

.lead-magnet-form input::placeholder { color: var(--muted); }

.lead-magnet-form input:focus {
  border-color: rgba(232,104,26,0.5);
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 120px 48px;
  z-index: 1;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,104,26,0.1) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.07) 0%, transparent 65%);
  top: 20%; left: 20%;
  pointer-events: none;
}

.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--text);
}

.cta-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-call {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  transition: color 0.2s;
}

.cta-call:hover { color: var(--text); }

.cta-call-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.cta-call-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-call-number {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.cta-note {
  font-size: 13px;
  color: var(--muted);
}

/* ================================
   FOOTER
   ================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 48px 32px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-svg {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact a:hover { color: var(--text); }

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-social .footer-col-title { margin-bottom: 16px; }

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.social-icon svg { width: 17px; height: 17px; }
.social-icon:hover {
  background: rgba(232,104,26,0.14);
  border-color: rgba(232,104,26,0.4);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--text); }

/* ================================
   WORD REVEAL ANIMATION
   ================================ */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.word {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.word.revealed {
  transform: translateY(0);
  opacity: 1;
}

/* Orb smooth parallax */
.hero-orb {
  transition: transform 0.12s ease-out;
}

/* ================================
   FLOATING CTA
   ================================ */
.float-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  background: var(--grad-1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 32px rgba(232,104,26,0.45), 0 2px 12px rgba(0,0,0,0.3);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease, box-shadow 0.2s;
  white-space: nowrap;
}

.float-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.float-cta:hover {
  box-shadow: 0 8px 40px rgba(232,104,26,0.6), 0 2px 12px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

@media (max-width: 480px) {
  .float-cta {
    bottom: 20px;
    right: 16px;
    left: 16px;
    text-align: center;
    border-radius: 14px;
  }
}

/* ================================
   FADE-IN ANIMATIONS
   ================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  #nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    padding: calc(var(--nav-h) + 60px) 24px 60px;
    align-items: flex-start;
  }

  .hero-scroll-hint { display: none; }
  .section { padding: 72px 24px; }

  .section--dark-alt { padding: 72px 24px; }

  .pain-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 0;
  }

  .pain-divider {
    width: 100%;
    height: 1px;
    margin: 24px 0;
  }

  .pain-item { padding: 0; }

  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-connector { width: 1px; height: 32px; margin: 0 auto; }

  .case-grid { grid-template-columns: 1fr; }
  .case-card--featured { grid-column: auto; min-height: 320px; }
  .case-stats { gap: 20px; flex-wrap: wrap; }

  .services-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .stats-inner {
    padding: 40px 24px;
    justify-content: center;
    gap: 24px;
  }

  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 40px 24px; }
  .stat-block { min-width: unset; }

  /* Mobile centering */
  .section-header { text-align: center; }
  .section-sub { margin: 0 auto; }
  .hero-inner { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-badge { display: inline-flex; }
  .pain-item { text-align: center; align-items: center; }
  .process-step { text-align: center; }
  .about-left { text-align: center; }
  .about-ctas { justify-content: center; }
  .stat-block { text-align: center; }
  .stats-inner { justify-content: center; }
  .cta-inner { text-align: center; }
  .testimonial-card { text-align: left; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  .lead-magnet-inner {
    flex-direction: column;
    padding: 48px 24px;
    gap: 28px;
  }

  .lead-magnet-form { flex-direction: column; width: 100%; }
  .lead-magnet-form input { width: 100%; }

  .cta-section { padding: 80px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }

  .footer { padding: 48px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .logo-img { height: 40px; }
  .hero-headline { letter-spacing: -0.03em; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .hero-trust { gap: 14px; }
  .case-card { padding: 24px; }
  .service-card { padding: 24px; }
  .testimonial-card { padding: 24px; }
  .cta-title { letter-spacing: -0.03em; }
}
