/* ============================================================
   DRIVYN — PREMIUM WEBSITE STYLESHEET v2
   Cadbury Gold (#C9A84C) + Deep Purple (#3B0073) on Near-Black
   Background: 3% lighter = #0F0F12
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-primary:    #0F0F12;
  --bg-secondary:  #141418;
  --bg-card:       #17171F;
  --bg-card-hover: #1C1C26;
  --bg-elevated:   #1E1E28;

  --gold:          #C9A84C;
  --gold-light:    #DFC06A;
  --gold-xlight:   #F0D896;
  --gold-dark:     #A8883A;
  --gold-glow:     rgba(201,168,76,0.15);
  --gold-glow-sm:  rgba(201,168,76,0.08);

  --purple-deep:   #1A0438;
  --purple:        #2D0860;
  --purple-mid:    #4A0E8F;
  --purple-light:  #7C3AED;
  --purple-glow:   rgba(74,14,143,0.25);

  --text-primary:   #F2F0FA;
  --text-secondary: #9896B2;
  --text-muted:     #5A587A;

  --border:         rgba(201,168,76,0.10);
  --border-hover:   rgba(201,168,76,0.30);
  --border-purple:  rgba(124,58,237,0.25);

  --grad-gold:   linear-gradient(135deg, #A8883A 0%, #C9A84C 40%, #E8C97A 70%, #C9A84C 100%);
  --grad-purple: linear-gradient(135deg, #2D0860, #4A0E8F);
  --grad-hero:   radial-gradient(ellipse at 70% -10%, rgba(74,14,143,0.45) 0%, transparent 55%),
                 radial-gradient(ellipse at 5% 90%, rgba(201,168,76,0.07) 0%, transparent 50%),
                 #0F0F12;

  --shadow-card:        0 4px 40px rgba(0,0,0,0.55);
  --shadow-gold:        0 0 40px rgba(201,168,76,0.15);
  --shadow-gold-strong: 0 0 60px rgba(201,168,76,0.28);
  --shadow-purple:      0 0 40px rgba(74,14,143,0.25);

  --nav-height:    80px;
  --sec-pad:       120px;
  --container-max: 1200px;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 36px;

  --t:      all 0.35s cubic-bezier(0.4,0,0.2,1);
  --t-fast: all 0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.7rem); }
p  { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.78; }

.gold { color: var(--gold); }
.gold-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === LAYOUT === */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 28px; }
.section { padding: var(--sec-pad) 0; position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.section-title   { margin-bottom: 14px; }
.section-subtitle { font-size: 1.08rem; max-width: 580px; color: var(--text-secondary); margin-bottom: 60px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-center .section-label    { justify-content: center; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  transition: var(--t);
  border: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--grad-gold); color: #080606; }
.btn-primary:hover { box-shadow: var(--shadow-gold-strong); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border-hover); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.btn-lg { padding: 17px 36px; font-size: 0.98rem; }
.btn-sm { padding: 10px 20px; font-size: 0.84rem; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--t);
}
.nav.scrolled {
  background: rgba(15,15,18,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo image */
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  /* Blend white background into dark nav */
  mix-blend-mode: multiply;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(235deg) brightness(0.85);
  transition: var(--t-fast);
}
.nav-logo-img:hover { opacity: 0.85; }

/* Fallback text logo if image missing */
.nav-logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}
.nav-logo-text span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--t-fast); display: block; }

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(15,15,18,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px 28px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 0.95rem; font-weight: 500; color: var(--text-secondary); padding: 12px 16px; border-radius: var(--r-sm); transition: var(--t-fast); }
.nav-mobile a:hover { color: var(--gold); background: var(--gold-glow); }
.nav-mobile .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* Canadian tagline bar */
.canada-bar {
  background: linear-gradient(90deg, rgba(74,14,143,0.25), rgba(201,168,76,0.1), rgba(74,14,143,0.25));
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  text-align: center;
}
.canada-bar-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.canada-bar-inner .flag { font-size: 1rem; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -80px;
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(74,14,143,0.38) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.4); }
}
.hero-headline { font-size: clamp(2.8rem, 5vw, 4.6rem); line-height: 1.06; letter-spacing: -0.035em; margin-bottom: 22px; }
.hero-subheadline { font-size: 1.12rem; color: var(--text-secondary); line-height: 1.75; max-width: 520px; margin-bottom: 38px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--border); }
.hero-stat-value { font-family: 'Sora', sans-serif; font-size: 2.1rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 5px; }

/* Hero Dashboard */
.hero-visual { position: relative; }
.hero-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-card), var(--shadow-purple);
  position: relative;
  overflow: hidden;
}
.hero-dashboard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.45;
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 11px; height: 11px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FEBC2E; }
.dash-dots span:nth-child(3) { background: #28C840; }
.dash-title { font-size: 0.75rem; color: var(--text-muted); font-family: 'Sora', sans-serif; }
.dash-badge { font-size: 0.68rem; font-weight: 700; color: #4ADE80; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2); padding: 3px 8px; border-radius: 100px; }
.dash-metric-big { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px 22px; margin-bottom: 12px; }
.dash-metric-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.dash-metric-value { font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.dash-metric-change { font-size: 0.75rem; color: #4ADE80; margin-top: 4px; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.dash-mini { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px 16px; }
.dash-mini-val { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text-primary); }
.dash-mini-lbl { font-size: 0.68rem; color: var(--text-muted); margin-top: 3px; }
.dash-bar-wrap { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px 16px; }
.dash-bar-row { display: flex; justify-content: space-between; font-size: 0.68rem; color: var(--text-muted); margin-bottom: 8px; }
.dash-track { height: 5px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.dash-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--purple-mid), var(--gold)); width: 0; transition: width 1.6s cubic-bezier(0.4,0,0.2,1) 0.3s; }
.notification-float {
  position: absolute; top: -14px; right: -14px;
  background: var(--grad-gold);
  color: #080606;
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem; font-weight: 800;
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  animation: float 3.5s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Industries marquee */
.marquee-section { padding: 48px 0; background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.marquee-label { text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.marquee-track { display: flex; gap: 0; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color 0.2s;
}
.marquee-item:hover { color: var(--gold); }
.marquee-item .mi { font-size: 1rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === PROBLEM SECTION === */
.problem-section { background: var(--bg-secondary); }
.problem-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border-hover), transparent); }
.problem-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 64px; }
.pain-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--border); border-radius: var(--r-lg); overflow: hidden; }
.pain-card { background: var(--bg-card); padding: 40px; transition: var(--t); position: relative; overflow: hidden; }
.pain-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--purple-mid), var(--gold)); transform: scaleX(0); transition: transform 0.4s ease; }
.pain-card:hover::before  { transform: scaleX(1); }
.pain-card:hover { background: var(--bg-card-hover); }
.pain-icon { width: 50px; height: 50px; background: rgba(74,14,143,0.18); border: 1px solid var(--border-purple); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.pain-title { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.pain-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.68; }

/* === SERVICES === */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; transition: var(--t); position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(74,14,143,0.15) 0%, transparent 60%); opacity: 0; transition: opacity 0.35s ease; pointer-events: none; }
.service-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.service-card:hover::after { opacity: 1; }
.service-card.featured { border-color: rgba(201,168,76,0.3); background: linear-gradient(160deg, rgba(201,168,76,0.05), var(--bg-card)); }
.service-card.featured::before { content: 'Most Requested'; position: absolute; top: 18px; right: 18px; background: var(--grad-gold); color: #080606; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.service-icon { width: 54px; height: 54px; background: linear-gradient(135deg, var(--purple-deep), var(--purple)); border: 1px solid var(--border-purple); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 24px; transition: var(--t); }
.service-card:hover .service-icon { box-shadow: var(--shadow-purple); background: var(--grad-purple); }
.service-name { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.68; margin-bottom: 22px; }
.service-outcomes { display: flex; flex-direction: column; gap: 8px; }
.service-outcomes li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: var(--text-secondary); }
.service-outcomes li::before { content: ''; width: 16px; height: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/contain; flex-shrink: 0; margin-top: 2px; }

/* === HOW IT WORKS === */
.steps-container { position: relative; }
.steps-connector { position: absolute; top: 39px; left: calc(12.5% + 10px); right: calc(12.5% + 10px); height: 1px; background: linear-gradient(90deg, var(--purple-mid), var(--gold), var(--purple-mid)); opacity: 0.25; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; position: relative; z-index: 1; }
.step { text-align: center; padding: 0 12px; }
.step-number { width: 80px; height: 80px; background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid)); border: 1px solid var(--border-purple); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--gold); margin: 0 auto 28px; box-shadow: 0 0 0 8px rgba(74,14,143,0.08); transition: var(--t); }
.step:hover .step-number { box-shadow: 0 0 0 12px rgba(74,14,143,0.14), var(--shadow-purple); transform: scale(1.06); }
.step-title { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-desc  { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.65; }

/* === WHY DRIVYN === */
.why-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 80px; align-items: center; }
.why-points { display: flex; flex-direction: column; gap: 30px; }
.why-point { display: flex; gap: 20px; align-items: flex-start; }
.why-point-icon { width: 46px; height: 46px; background: var(--gold-glow-sm); border: 1px solid rgba(201,168,76,0.18); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.why-point-title { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.why-point-desc  { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }
.why-visual { position: relative; }
.result-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.result-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-gold); }
.result-number { font-family: 'Sora', sans-serif; font-size: 3.6rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.result-label { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 28px; }
.result-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.result-mini { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px; text-align: center; }
.result-mini-val { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.result-mini-lbl { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; }

/* === COMPARISON === */
.comparison-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); }
.comp-table { width: 100%; border-collapse: collapse; background: var(--bg-card); min-width: 600px; }
.comp-table th { padding: 18px 24px; text-align: center; font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 700; background: var(--bg-elevated); border-bottom: 1px solid var(--border); white-space: nowrap; }
.comp-table th:first-child { text-align: left; }
.comp-table th.col-drivyn { background: linear-gradient(180deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04)); color: var(--gold); border-bottom-color: rgba(201,168,76,0.25); }
.comp-table td { padding: 16px 24px; font-size: 0.88rem; border-bottom: 1px solid var(--border); color: var(--text-secondary); vertical-align: middle; text-align: center; }
.comp-table td:first-child { color: var(--text-primary); font-weight: 500; text-align: left; }
.comp-table td.col-drivyn { background: rgba(201,168,76,0.03); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: rgba(255,255,255,0.015); }
.comp-table tr:hover td.col-drivyn { background: rgba(201,168,76,0.055); }
.c-check { color: #4ADE80; font-size: 1.05rem; }
.c-cross  { color: #F87171; font-size: 1.05rem; }
.c-maybe  { color: #FBBF24; font-size: 0.82rem; font-weight: 600; }

/* === TESTIMONIALS === */
.testimonials-section { background: var(--bg-secondary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; transition: var(--t); }
.testimonial-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-gold); }
.t-stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--gold); font-size: 0.88rem; }
.t-text  { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--purple), var(--purple-mid)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--gold-light); flex-shrink: 0; }
.t-name     { font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.t-business { font-size: 0.75rem; color: var(--text-muted); }

/* === WHO IT'S FOR === */
.for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.for-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px; }
.for-card.yes { border-color: rgba(74,222,128,0.2); }
.for-card.no  { border-color: rgba(248,113,113,0.15); opacity: 0.85; }
.for-label { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 24px; }
.for-card.yes .for-label { background: rgba(74,222,128,0.1); color: #4ADE80; border: 1px solid rgba(74,222,128,0.2); }
.for-card.no  .for-label { background: rgba(248,113,113,0.1); color: #F87171; border: 1px solid rgba(248,113,113,0.2); }
.for-list { display: flex; flex-direction: column; gap: 13px; }
.for-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--text-secondary); }
.for-list li .ico { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color 0.25s ease; }
.faq-item.open { border-color: rgba(201,168,76,0.28); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; cursor: pointer; gap: 20px; user-select: none; }
.faq-q-text { font-family: 'Sora', sans-serif; font-size: 0.97rem; font-weight: 600; color: var(--text-primary); flex: 1; }
.faq-icon { width: 30px; height: 30px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 1.1rem; font-weight: 300; transition: var(--t); line-height: 1; }
.faq-item.open .faq-icon { background: var(--gold-glow); border-color: rgba(201,168,76,0.3); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner { padding: 0 28px 24px; font-size: 0.91rem; color: var(--text-secondary); line-height: 1.78; }
.faq-item.open .faq-answer { max-height: 350px; }

/* === PRICING === */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 56px; }
.toggle-label { font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); }
.toggle-label.active { color: var(--text-primary); }
.toggle-switch { width: 44px; height: 24px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 100px; position: relative; cursor: pointer; transition: var(--t); }
.toggle-switch.on { background: var(--gold-glow); border-color: rgba(201,168,76,0.3); }
.toggle-knob { position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: var(--text-muted); border-radius: 50%; transition: var(--t); }
.toggle-switch.on .toggle-knob { left: 22px; background: var(--gold); }
.save-badge { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #4ADE80; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2); padding: 3px 8px; border-radius: 100px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; position: relative; transition: var(--t); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pricing-card.popular {
  border-color: rgba(201,168,76,0.35);
  background: linear-gradient(160deg, rgba(201,168,76,0.06), var(--bg-card));
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad-gold); color: #080606; font-family: 'Sora', sans-serif; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-family: 'Sora', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.plan-price { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 6px; }
.plan-amount { font-family: 'Sora', sans-serif; font-size: 3rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.plan-amount.gold-gradient { font-size: 3rem; }
.plan-period { font-size: 0.88rem; color: var(--text-muted); padding-bottom: 8px; }
.plan-desc { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.6; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: var(--text-secondary); }
.plan-features li::before { content: ''; width: 16px; height: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/contain; flex-shrink: 0; margin-top: 2px; }
.plan-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

.pricing-onetime { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.onetime-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; transition: var(--t); }
.onetime-card:hover { border-color: var(--border-hover); }
.onetime-label { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.onetime-desc { font-size: 0.85rem; color: var(--text-secondary); }
.onetime-price { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--gold); white-space: nowrap; }

/* === INDUSTRIES === */
.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.industry-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px 20px; text-align: center; transition: var(--t); text-decoration: none; display: block; }
.industry-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.industry-emoji { font-size: 2rem; margin-bottom: 10px; }
.industry-name { font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.industry-tagline { font-size: 0.74rem; color: var(--text-muted); line-height: 1.4; }

/* === FINAL CTA === */
.cta-section { overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 900px; height: 450px; background: radial-gradient(ellipse, rgba(74,14,143,0.38) 0%, transparent 68%); pointer-events: none; }
.cta-box { background: linear-gradient(140deg, rgba(74,14,143,0.18), rgba(201,168,76,0.06)); border: 1px solid rgba(201,168,76,0.22); border-radius: var(--r-xl); padding: 88px 80px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 55%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.cta-box h2  { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.cta-box > p { font-size: 1.08rem; max-width: 540px; margin: 0 auto 38px; }
.cta-ctas    { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-note    { margin-top: 20px; font-size: 0.78rem; color: var(--text-muted); }

/* === FOOTER === */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.footer-logo-img { height: 36px; width: auto; object-fit: contain; mix-blend-mode: multiply; filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(235deg) brightness(0.65); margin-bottom: 14px; opacity: 0.7; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); max-width: 270px; line-height: 1.68; }
.footer-tagline { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.08em; font-weight: 600; margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.footer-col-title { font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 0.86rem; color: var(--text-secondary); transition: var(--t-fast); }
.footer-col-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }

/* === PAGE HERO === */
.page-hero { padding: 160px 0 88px; background: var(--grad-hero); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -120px; right: -40px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(74,14,143,0.28) 0%, transparent 68%); pointer-events: none; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-photo-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; position: relative; }
.about-photo-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, var(--purple-deep), var(--purple)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.about-photo-placeholder .big-initial { font-family: 'Sora', sans-serif; font-size: 5rem; font-weight: 800; color: var(--gold); opacity: 0.4; }
.about-photo-badge { position: absolute; bottom: -12px; right: -12px; background: var(--grad-gold); color: #080606; font-family: 'Sora', sans-serif; font-size: 0.75rem; font-weight: 800; padding: 12px 20px; border-radius: var(--r-md); box-shadow: var(--shadow-gold-strong); text-align: center; line-height: 1.4; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md); padding: 28px; text-align: center; transition: var(--t); }
.value-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-gold); }
.value-icon  { font-size: 2rem; margin-bottom: 12px; }
.value-title { font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.value-desc  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; background: var(--gold-glow-sm); border: 1px solid rgba(201,168,76,0.18); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-title { font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 700; margin-bottom: 3px; }
.contact-info-val   { font-size: 0.88rem; color: var(--text-secondary); }
.contact-form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 48px; position: relative; overflow: hidden; }
.contact-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad-gold); }
.form-group   { margin-bottom: 22px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label   { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; font-family: 'Sora', sans-serif; }
.form-input,.form-textarea,.form-select { width: 100%; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 13px 18px; color: var(--text-primary); font-size: 0.92rem; font-family: 'Inter', sans-serif; transition: var(--t-fast); outline: none; appearance: none; }
.form-input::placeholder,.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,.form-textarea:focus,.form-select:focus { border-color: rgba(201,168,76,0.45); background: rgba(201,168,76,0.025); box-shadow: 0 0 0 3px rgba(201,168,76,0.08); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select option { background: var(--bg-elevated); color: var(--text-primary); }
.cal-placeholder { background: var(--bg-elevated); border: 1px dashed var(--border-hover); border-radius: var(--r-lg); padding: 48px 32px; text-align: center; margin-top: 32px; }
.cal-icon  { font-size: 2.5rem; margin-bottom: 14px; }
.cal-title { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.cal-desc  { font-size: 0.85rem; color: var(--text-muted); }

/* === SERVICE DETAIL === */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
.service-detail-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 40px; transition: var(--t); position: relative; overflow: hidden; }
.service-detail-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--grad-gold); transition: height 0.4s ease; }
.service-detail-card:hover::before { height: 100%; }
.service-detail-card:hover { border-color: var(--border-hover); }
.sdc-icon  { font-size: 2.2rem; margin-bottom: 20px; }
.sdc-name  { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.sdc-desc  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.sdc-list  { display: flex; flex-direction: column; gap: 10px; }
.sdc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-secondary); }
.sdc-list li::before { content: ''; width: 16px; height: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/contain; flex-shrink: 0; margin-top: 2px; }
.sdc-outcome { margin-top: 24px; padding: 14px 18px; background: var(--gold-glow-sm); border: 1px solid rgba(201,168,76,0.18); border-radius: var(--r-sm); font-size: 0.85rem; color: var(--gold-light); font-weight: 600; }

/* === MISC === */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 100px; font-size: 0.73rem; font-weight: 600; }
.badge-gold   { background: rgba(201,168,76,0.1); color: var(--gold); border: 1px solid rgba(201,168,76,0.2); }
.badge-purple { background: var(--purple-glow); color: var(--purple-light); border: 1px solid var(--border-purple); }
.badge-green  { background: rgba(74,222,128,0.1); color: #4ADE80; border: 1px solid rgba(74,222,128,0.2); }

/* === ANIMATIONS === */
.fade-up { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.72s cubic-bezier(0.33,1,0.68,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--purple-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  :root { --sec-pad: 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-connector { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-box { padding: 64px 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(3,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .pricing-onetime { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --sec-pad: 72px; --nav-height: 68px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .for-grid { grid-template-columns: 1fr; }
  .comparison-wrap { margin: 0 -28px; border-radius: 0; border-left: none; border-right: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-box { padding: 48px 24px; }
  .contact-form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .problem-intro { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .onetime-card { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  :root { --sec-pad: 58px; }
  .steps-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  h1 { font-size: 2.2rem; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
}
