/* ============================================
   BEAVARO — BRAND CSS
   Colors: #FF0020 (Red), #FD6A00 (Orange)
   Fonts: Neue Haas Grotesk / Inter
   Theme: Light, Modern, 2026 Era
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700;1,800&display=swap');

:root {
  --red: #FF0020;
  --orange: #FD6A00;
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f8f7f5;
  --light-gray: #f2f2f0;
  --mid-gray: #e8e8e4;
  --text-muted: #888884;
  --text-body: #3a3a38;
  --iridescent-blue: #49C6FF;
  --neon-violet: #C965FF;
  --aqua-green: #5CFFE1;
  --soft-silver: #D9E0E3;

  --font-display: 'Inter', Helvetica, sans-serif;
  --font-body: 'Inter', Helvetica, sans-serif;

  --max-width: 1200px;
  --section-pad: 120px;
  --radius: 12px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
  font-feature-settings: "kern" 1;
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ---- SELECTION ---- */
::selection { background: var(--red); color: var(--white); }

/* ============================================
   HEADER / NAV
   ============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,0,32,0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

#header.scrolled {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--mid-gray);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  position: relative;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--red), #e8001a);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 12px rgba(255,0,32,0.2);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: linear-gradient(135deg, #d40018, #c00015) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,0,32,0.3);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  min-height: 100vh;
  background: var(--off-white);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,0,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,32,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,0,32,0.12), transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(253,106,0,0.10), transparent 70%);
  bottom: 50px; left: -50px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { 
    transform: translateY(0) scale(1); 
  }
  50% { 
    transform: translateY(-40px) scale(1.08); 
  }
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  box-sizing: border-box;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,0,32,0.08);
  border: 1px solid rgba(255,0,32,0.18);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

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

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s forwards;
}

.hero-headline .accent {
  color: var(--red);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 480px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.65s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red), #e8001a);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(255,0,32,0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d40018, #c00015);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,0,32,0.35);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  font-size: 12px;
  transition: transform 0.25s;
}

.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--red); }

.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--mid-gray);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.stat-item { 
  flex: 1;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-value span { color: var(--red); }

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}

/* HERO RIGHT SIDE */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}

.hero-card-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08), 0 0px 1px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}

.hero-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.3;
}

.hero-metric-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-metric {
  flex: 1;
  background: var(--off-white);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.hero-metric-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-metric-lbl {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.progress-bar-wrap {
  margin-bottom: 12px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 6px;
}

.progress-track {
  height: 6px;
  background: var(--light-gray);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 3px;
  transform-origin: left;
  animation: fillBar 1.5s ease 1s both;
}

@keyframes fillBar {
  from { 
    transform: scaleX(0); 
    opacity: 0;
  }
  to { 
    transform: scaleX(1); 
    opacity: 1;
  }
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-card-float-1 {
  top: -24px; right: -24px;
  animation-delay: 0s;
}

.hero-card-float-2 {
  bottom: -20px; left: -24px;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% { 
    transform: translateY(0); 
  }
  50% { 
    transform: translateY(-12px); 
  }
}

.float-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.float-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
}

.float-val span { color: var(--red); }

/* ============================================
   TICKER / MARQUEE
   ============================================ */
#ticker {
  background: var(--black);
  padding: 18px 0;
  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerMove 30s linear infinite;
  white-space: nowrap;
  width: 100%;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-right: 60px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.ticker-item b { color: var(--red); }

.ticker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 24px;
}

.section-title .italic { font-style: italic; }
.section-title .red { color: var(--red); }

.section-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 560px;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
#problem {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 72px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--mid-gray);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  background: var(--white);
}

.problem-item:hover {
  border-color: rgba(255,0,32,0.25);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08), inset 0 0 20px rgba(255,0,32,0.04);
}

.problem-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,0,32,0.1), rgba(255,0,32,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,0,32,0.08);
}

.problem-item:hover .problem-icon {
  background: linear-gradient(135deg, rgba(255,0,32,0.15), rgba(255,0,32,0.08));
  box-shadow: 0 8px 16px rgba(255,0,32,0.1);
}

.problem-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.problem-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.problem-callout {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.callout-stat {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.callout-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.callout-sub {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--mid-gray);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.12), 0 0 20px rgba(255,0,32,0.08);
  border-color: rgba(255,0,32,0.12);
}

.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,0,32,0.1), rgba(255,0,32,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,0,32,0.1);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(255,0,32,0.15), rgba(255,0,32,0.08));
  box-shadow: 0 8px 16px rgba(255,0,32,0.1);
  border-color: rgba(255,0,32,0.2);
}

.service-icon-wrap svg {
  width: 24px; height: 24px;
  stroke: var(--red);
}

.service-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ============================================
   RESULTS / NUMBERS SECTION
   ============================================ */
#results {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.results-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.results-top {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.results-top .section-sub { margin: 0 auto; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.metric-card {
  background: linear-gradient(135deg, var(--off-white) 0%, rgba(255,0,32,0.02) 100%);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--light-gray);
}

.metric-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(255,0,32,0.08), transparent 70%);
  pointer-events: none;
}

.metric-card:hover { 
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(255,0,32,0.15);
}

.metric-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}

.metric-number {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 12px;
}

.metric-number span { color: var(--red); }

.metric-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 320px;
}

.metric-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
#process {
  padding: var(--section-pad) 0;
  background: var(--black);
  color: var(--white);
}

.process-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.process-inner .section-eyebrow { color: var(--orange); }

.process-inner .section-title { color: var(--white); }

.process-inner .section-title .red { color: var(--red); }

.process-inner .section-sub { color: rgba(255,255,255,0.6); max-width: 520px; }

.process-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  background: #111;
  padding: 40px 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(255,0,32,0.08);
}

.process-step:hover { 
  background: #1a1a1a;
  box-shadow: inset 0 0 30px rgba(255,0,32,0.1);
}

.step-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.process-step:hover .step-num { color: rgba(255,0,32,0.15); }

.step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,0,32,0.15), rgba(255,0,32,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,0,32,0.1);
}

.process-step:hover .step-icon {
  background: linear-gradient(135deg, rgba(255,0,32,0.2), rgba(255,0,32,0.12));
  box-shadow: 0 8px 16px rgba(255,0,32,0.15);
}

.step-icon svg { width: 20px; height: 20px; stroke: var(--red); }

.step-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   WHY US / DTC SECTION
   ============================================ */
#why {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.why-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 80px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--mid-gray);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-feature:hover {
  border-color: rgba(255,0,32,0.2);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08), inset 0 0 20px rgba(255,0,32,0.03);
  transform: translateX(6px);
}

.why-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,0,32,0.1), rgba(255,0,32,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,0,32,0.08);
}

.why-feature:hover .why-feature-icon {
  background: linear-gradient(135deg, rgba(255,0,32,0.15), rgba(255,0,32,0.08));
  box-shadow: 0 8px 16px rgba(255,0,32,0.1);
}

.why-feature-icon svg { width: 20px; height: 20px; stroke: var(--red); }

.why-feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.why-feature p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.why-testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--mid-gray);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover { 
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: rgba(255,0,32,0.15);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   CTA BAND
   ============================================ */
#cta-band {
  padding: var(--section-pad) 0;
  background: var(--red);
  position: relative;
  overflow: hidden;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-band-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.cta-band-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.cta-band-title .italic { font-style: italic; color: rgba(255,255,255,0.75); }

.cta-band-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 44px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--red);
  padding: 18px 40px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.btn-white:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 72px;
  align-items: start;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,0,32,0.1), rgba(255,0,32,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,0,32,0.08);
}

.contact-item:hover .contact-item-icon {
  background: linear-gradient(135deg, rgba(255,0,32,0.15), rgba(255,0,32,0.08));
  box-shadow: 0 8px 16px rgba(255,0,32,0.1);
}

.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--red); }

.contact-item h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-item a, .contact-item p {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--red); }

.contact-form-wrap {
  background: linear-gradient(135deg, var(--off-white) 0%, rgba(255,0,32,0.01) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--light-gray);
  backdrop-filter: blur(10px);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 14px 16px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,0,32,0.1), inset 0 0 0 1px rgba(255,0,32,0.15);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--red), #e8001a);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(255,0,32,0.25);
}

.form-submit:hover {
  background: linear-gradient(135deg, #d40018, #c00015);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255,0,32,0.35);
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin: 20px 0 28px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--red), #e8001a);
  color: var(--white);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 8px 16px rgba(255,0,32,0.3);
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-copy a {
  color: var(--red);
  text-decoration: none;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { 
    opacity: 0; 
    transform: translateY(24px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 560px; margin: 0 auto; position: relative; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-inner { padding: 0 24px; }

  .hero-inner { padding: 0 24px; gap: 40px; }
  
  /* Hero Visual: Constrain and hide floating cards on mobile */
  .hero-visual { 
    max-width: 100%; 
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
  }

  .hero-card-float {
    display: none;
  }

  .hero-card-main {
    padding: 24px;
  }

  .hero-card-title {
    font-size: 18px;
  }

  .hero-metric-row {
    gap: 12px;
  }

  .hero-metric {
    padding: 12px;
  }

  .hero-metric-val {
    font-size: 22px;
  }

  .hero-stats { 
    flex-wrap: wrap; 
    gap: 16px;
    border-top: 1px solid var(--mid-gray);
    padding-top: 24px;
    margin-top: 24px;
  }

  .stat-item { 
    flex: 0 0 calc(50% - 8px);
  }

  .stat-value {
    font-size: 24px;
  }

  .problem-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .problem-callout {
    position: static;
    top: auto;
    padding: 32px 24px;
  }

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

  .process-steps { grid-template-columns: 1fr; }

  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }

  .process-header-row { flex-direction: column; align-items: flex-start; gap: 20px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .services-inner, .results-inner, .process-inner,
  .why-inner, .cta-band-inner, .contact-inner,
  .problem-inner, .footer-inner { padding: 0 24px; }

  .cta-band-title { font-size: 40px; }

  .hero-headline {
    font-size: clamp(36px, 5vw, 56px);
  }

  .hero-sub {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  :root { --section-pad: 60px; }

  .nav-inner { 
    padding: 0 16px; 
    height: 60px;
  }

  .nav-logo img {
    height: 24px;
  }

  #header {
    z-index: 999;
  }

  #hero {
    padding-top: 60px;
  }

  .hero-inner { 
    padding: 0 16px; 
    gap: 32px;
  }

  .hero-badge {
    font-size: 10px;
    margin-bottom: 20px;
  }

  .hero-headline {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--mid-gray);
  }

  .stat-item {
    flex: 1 1 100%;
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(255,0,32,0.02) 100%);
    padding: 18px 16px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
  }

  .stat-item:hover {
    border-color: rgba(255,0,32,0.15);
    background: linear-gradient(135deg, var(--off-white) 0%, rgba(255,0,32,0.04) 100%);
  }

  .stat-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    display: block;
  }

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

  .hero-card-main {
    padding: 16px;
  }

  .hero-card-tag {
    font-size: 10px;
  }

  .hero-card-title {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-metric-row {
    gap: 8px;
  }

  .hero-metric {
    padding: 10px;
  }

  .hero-metric-val {
    font-size: 18px;
  }

  .hero-metric-lbl {
    font-size: 9px;
  }

  .progress-label {
    font-size: 10px;
  }

  .section-title {
    font-size: clamp(28px, 4vw, 42px);
  }

  .section-eyebrow {
    font-size: 10px;
  }

  .section-sub {
    font-size: 14px;
  }

  .problem-item {
    padding: 16px;
    gap: 12px;
  }

  .problem-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .problem-text h4 {
    font-size: 13px;
  }

  .problem-text p {
    font-size: 12px;
  }

  .problem-callout {
    padding: 24px 16px;
  }

  .callout-stat {
    font-size: 48px;
  }

  .callout-text {
    font-size: 16px;
  }

  .service-card {
    padding: 24px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-desc,
  .service-list li {
    font-size: 12px;
  }

  .metrics-grid {
    gap: 16px;
  }

  .metric-card {
    padding: 24px;
  }

  .metric-number {
    font-size: clamp(40px, 6vw, 60px);
  }

  .metric-desc {
    font-size: 13px;
  }

  .process-step {
    padding: 24px 16px;
  }

  .step-num {
    font-size: 36px;
  }

  .step-title {
    font-size: 15px;
  }

  .step-desc {
    font-size: 12px;
  }

  .why-feature {
    padding: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .contact-form-wrap {
    padding: 28px 16px;
  }

  .contact-form-title {
    font-size: 18px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 13px;
    padding: 12px 14px;
  }

  .cta-band-title {
    font-size: 28px;
  }

  .cta-band-sub {
    font-size: 14px;
  }

  .services-inner, .results-inner, .process-inner,
  .why-inner, .cta-band-inner, .contact-inner,
  .problem-inner, .footer-inner { padding: 0 16px; }

  .footer-top {
    gap: 24px;
  }

  .footer-col h5 {
    font-size: 11px;
  }

@media (max-width: 360px) {
  :root { --section-pad: 48px; }

  .nav-inner { 
    padding: 0 12px; 
    height: 56px;
  }

  .nav-logo img {
    height: 20px;
  }

  .hamburger {
    gap: 4px;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }

  .hero-inner { 
    padding: 0 12px; 
  }

  .hero-headline {
    font-size: clamp(24px, 4vw, 32px);
  }

  .hero-badge {
    font-size: 8px;
    gap: 4px;
  }

  .hero-actions {
    gap: 8px;
  }

  .btn-primary,
  .btn-ghost {
    font-size: 12px;
    padding: 12px 16px;
  }

  .btn-arrow {
    width: 20px;
    height: 20px;
  }

  .hero-stats {
    gap: 8px;
  }

  .stat-value {
    font-size: 18px;
  }

  .section-title {
    font-size: clamp(24px, 3.5vw, 32px);
  }

  .services-inner, .results-inner, .process-inner,
  .why-inner, .cta-band-inner, .contact-inner,
  .problem-inner, .footer-inner { padding: 0 12px; }

  .ticker-item {
    font-size: 10px;
    gap: 12px;
    padding-right: 40px;
  }
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

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

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
  text-align: center;
  padding: 0 20px;
  word-break: break-word;
}

.nav-mobile a:hover { color: var(--red); }

.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--black);
  padding: 4px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
