/* EvolvSEO — Shared Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
* { scrollbar-width: thin; scrollbar-color: #4E4875 transparent; }
input, select, textarea, button { font-family: inherit; }
img { max-width: 100%; display: block; }

/* ── Tokens ── */
:root {
  --bg-base:        #0A0814;
  --bg-surface:     #0F0D1C;
  --bg-elevated:    #16132A;
  --bg-deep:        #060410;
  --purple-primary: #8B5AFF;
  --purple-hover:   #A880FF;
  --purple-deep:    #4D3EAA;
  --purple-muted:   #6058A0;
  --purple-glow:    rgba(139,90,255,0.32);
  --purple-focus:   rgba(139,90,255,0.55);
  --blue-primary:   #2563FF;
  --blue-hover:     #6494FF;
  --fg-primary:     #FFFFFF;
  --fg-secondary:   #C4BBEE;
  --fg-muted:       #8880B8;
  --fg-dim:         #4A4572;
  --border-subtle:  rgba(100,90,160,0.30);
  --border-default: #5A5490;
  --shadow-sm:      0 0 14px rgba(139,90,255,0.25);
  --shadow-md:      0 0 32px rgba(139,90,255,0.38);
  --shadow-lg:      0 0 56px rgba(139,90,255,0.55);
  --font-display:   'Space Grotesk', sans-serif;
  --font-body:      'DM Sans', sans-serif;
  --font-mono:      'JetBrains Mono', monospace;
  --radius-sm: 4px; --radius-md: 6px; --radius-lg: 8px;
  --radius-xl: 12px; --radius-full: 9999px;
}

body {
  background: var(--bg-base);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
nav {
  background: rgba(8,6,18,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 40px rgba(139,90,255,0.12);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  height: 62px; display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { width: 28px; height: 28px; border-radius: var(--radius-sm); }
.nav-logo-text { font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: -0.02em; background: linear-gradient(120deg, #D4C8FF 0%, #9B72FF 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-link { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--fg-secondary); padding: 6px 12px; border-radius: var(--radius-md); text-decoration: none; transition: color 150ms, background 150ms; }
.nav-link:hover { color: var(--fg-primary); background: rgba(139,90,255,0.08); }
.nav-link.active { color: var(--fg-primary); background: rgba(139,90,255,0.12); }
.nav-cta { font-family: var(--font-display); font-size: 13px; font-weight: 600; background: var(--purple-primary); color: #fff; border: none; padding: 8px 18px; border-radius: var(--radius-md); cursor: pointer; text-decoration: none; transition: background 150ms, transform 150ms; white-space: nowrap; }
.nav-cta:hover { background: var(--purple-hover); transform: translateY(-1px); }
.nav-mobile-btn { display: none; background: none; border: none; color: var(--fg-secondary); cursor: pointer; padding: 4px; margin-left: auto; }
.mobile-nav { display: none; flex-direction: column; gap: 4px; background: var(--bg-elevated); border-bottom: 1px solid var(--border-subtle); padding: 12px 20px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--fg-secondary); text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--fg-primary); }

/* ── Buttons ── */
.btn-primary { font-family: var(--font-display); font-weight: 600; font-size: 15px; background: var(--purple-primary); color: #fff; border: none; padding: 14px 30px; border-radius: 7px; cursor: pointer; text-decoration: none; transition: background 150ms, transform 150ms, box-shadow 150ms; display: inline-block; animation: btnGlow 2.5s ease-in-out infinite; }
.btn-primary:hover { background: var(--purple-hover); transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(139,90,255,0.5), 0 0 52px rgba(139,90,255,0.70), 0 0 100px rgba(139,90,255,0.18), 0 6px 20px rgba(0,0,0,0.3); animation: none; }
.btn-primary:active { transform: scale(0.98); }
.btn-ghost { font-family: var(--font-display); font-weight: 500; font-size: 15px; background: transparent; color: var(--fg-secondary); border: 1px solid var(--border-default); padding: 13px 26px; border-radius: 7px; cursor: pointer; text-decoration: none; transition: color 150ms, border-color 150ms, transform 150ms; display: inline-block; }
.btn-ghost:hover { color: var(--fg-primary); border-color: var(--purple-primary); transform: translateY(-1px); }
.btn-blue { font-family: var(--font-display); font-weight: 600; font-size: 15px; background: var(--blue-primary); color: #fff; border: none; padding: 14px 30px; border-radius: 7px; cursor: pointer; text-decoration: none; transition: background 150ms, transform 150ms; display: inline-block; }
.btn-blue:hover { background: var(--blue-hover); transform: translateY(-1px); }

/* ── Page Hero (inner pages) ── */
.page-hero { background: var(--bg-base); padding: 80px 32px 64px; position: relative; overflow: hidden; text-align: center; }
.page-hero-glow { position: absolute; top: -140px; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(139,90,255,0.30) 0%, rgba(37,99,255,0.10) 40%, transparent 70%); pointer-events: none; }
.page-hero::before { content: ''; position: absolute; top: 60%; left: 20%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,255,0.12) 0%, transparent 70%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; top: 40%; right: 15%; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(139,90,255,0.10) 0%, transparent 70%); pointer-events: none; }
.page-hero-inner { max-width: 720px; margin: 0 auto; position: relative; }
.overline { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: 16px; text-shadow: 0 0 16px rgba(37,99,255,0.55); }
.page-h1 { font-family: var(--font-display); font-size: clamp(36px,5vw,62px); font-weight: 700; line-height: 1.08; letter-spacing: -0.03em; color: var(--fg-primary); margin-bottom: 20px; }
.page-h1 .accent { color: var(--purple-primary); }
.page-lead { font-family: var(--font-body); font-size: 17px; line-height: 1.68; color: var(--fg-secondary); max-width: 560px; margin: 0 auto 36px; }
.page-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Section Shared ── */
.section { padding: 80px 32px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-overline { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: 12px; text-align: center; text-shadow: 0 0 16px rgba(37,99,255,0.55); }
.section-h2 { font-family: var(--font-display); font-size: clamp(28px,4vw,46px); font-weight: 700; letter-spacing: -0.03em; color: var(--fg-primary); text-align: center; margin-bottom: 12px; }
.section-h2-left { font-family: var(--font-display); font-size: clamp(26px,3.5vw,40px); font-weight: 700; letter-spacing: -0.03em; color: var(--fg-primary); margin-bottom: 12px; }
.section-sub { font-family: var(--font-body); font-size: 16px; color: var(--fg-secondary); text-align: center; max-width: 500px; margin: 0 auto 56px; }
.section-border-top { border-top: 1px solid var(--border-subtle); }
.section-border-both { border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.bg-surface { background: var(--bg-surface); }
.bg-base { background: var(--bg-base); }

/* ── Feature Grid (2-col) ── */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 28px 24px; transition: box-shadow 200ms, transform 200ms, border-color 200ms; position: relative; overflow: hidden; }
.feature-card:hover { box-shadow: 0 0 0 1px rgba(139,90,255,0.4), 0 0 36px rgba(139,90,255,0.24), 0 8px 32px rgba(0,0,0,0.22); transform: translateY(-3px); border-color: rgba(139,90,255,0.4); }
.feature-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(139,90,255,0.14); border: 1px solid rgba(139,90,255,0.30); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 18px; color: var(--purple-primary); }
.feature-icon svg { width: 22px; height: 22px; }
.feature-title { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--fg-primary); margin-bottom: 8px; }
.feature-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.65; color: var(--fg-secondary); }

/* ── 3-col grid ── */
.three-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

/* ── Services Cards (homepage + services page) ── */
.service-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; position: relative; transition: box-shadow 200ms, transform 200ms; }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card.featured { background: var(--bg-elevated); border-color: rgba(139,90,255,0.75); animation: cardGlow 3s ease-in-out infinite; }
.service-card.featured:hover { animation: none; box-shadow: var(--shadow-lg); }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--purple-primary); color: #fff; font-family: var(--font-display); font-size: 11px; font-weight: 600; padding: 3px 14px; border-radius: var(--radius-full); white-space: nowrap; }
.service-tag { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple-primary); }
.service-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--fg-primary); letter-spacing: -0.02em; }
.service-desc { font-family: var(--font-body); font-size: 13px; line-height: 1.65; color: var(--fg-secondary); flex: 1; }
.service-metric { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.metric-num { font-family: var(--font-display); font-size: 34px; font-weight: 700; background: linear-gradient(90deg, #C07AFF, #5EA0FF, #FF78EC, #C07AFF); background-size: 300% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradientFlow 4s ease-in-out infinite; }
.metric-label { font-family: var(--font-body); font-size: 13px; color: var(--purple-primary); }
.service-btn { font-family: var(--font-display); font-size: 13px; font-weight: 600; background: transparent; color: var(--fg-secondary); border: 1px solid var(--border-default); padding: 9px 16px; border-radius: var(--radius-md); cursor: pointer; margin-top: 4px; text-align: center; text-decoration: none; transition: color 150ms, border-color 150ms, background 150ms, transform 150ms; display: block; }
.service-btn:hover { color: var(--fg-primary); border-color: var(--purple-primary); transform: translateY(-1px); }
.service-card.featured .service-btn { background: var(--purple-primary); color: #fff; border: none; }
.service-card.featured .service-btn:hover { background: var(--purple-hover); }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.step { display: flex; flex-direction: column; align-items: center; position: relative; }
.step:not(:last-child)::after { content: ''; position: absolute; top: 23px; left: 75%; width: 50%; height: 1px; background: linear-gradient(90deg, rgba(139,90,255,0.4), rgba(94,160,255,0.7), rgba(139,90,255,0.4)); background-size: 200% 100%; animation: lineFlow 2.2s linear infinite; z-index: 0; }
.step-num { width: 48px; height: 48px; border-radius: 10px; background: rgba(139,90,255,0.14); border: 1px solid rgba(139,90,255,0.45); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--purple-primary); margin-bottom: 20px; position: relative; z-index: 1; transition: background 200ms, box-shadow 200ms; box-shadow: 0 0 0 3px rgba(139,90,255,0.10), 0 0 18px rgba(139,90,255,0.18); }
.step:hover .step-num { background: rgba(139,90,255,0.26); box-shadow: 0 0 0 4px rgba(139,90,255,0.22), 0 0 28px rgba(139,90,255,0.44); }
.step-content { text-align: center; padding: 0 14px; }
.step-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--fg-primary); margin-bottom: 8px; }
.step-desc { font-family: var(--font-body); font-size: 13px; line-height: 1.65; color: var(--fg-secondary); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; }
.faq-q { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--fg-primary); padding: 18px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none; }
.faq-q:hover { background: rgba(139,90,255,0.06); }
.faq-arrow { color: var(--purple-primary); font-size: 18px; transition: transform 200ms; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { font-family: var(--font-body); font-size: 14px; line-height: 1.7; color: var(--fg-secondary); padding: 0 20px 18px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── Two-col content ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col-text { display: flex; flex-direction: column; gap: 16px; }
.two-col-text p { font-family: var(--font-body); font-size: 15px; line-height: 1.72; color: var(--fg-secondary); }
.check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; }
.check-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-primary); flex-shrink: 0; margin-top: 7px; }
.check-text { font-family: var(--font-body); font-size: 14px; color: #C8C3E8; line-height: 1.55; }

/* ── Mini CTA Banner ── */
.cta-banner { background: var(--bg-surface); border: 1px solid rgba(139,90,255,0.28); border-radius: 12px; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; overflow: hidden; box-shadow: 0 0 48px rgba(139,90,255,0.10), inset 0 1px 0 rgba(139,90,255,0.15); }
.cta-banner-text h3 { font-family: var(--font-display); font-size: clamp(20px,2.5vw,28px); font-weight: 700; letter-spacing: -0.02em; color: var(--fg-primary); margin-bottom: 6px; }
.cta-banner-text p { font-family: var(--font-body); font-size: 14px; color: var(--fg-secondary); }
.cta-banner-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

/* ── Trust chips / tags ── */
.trust-strip { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.trust-chip { font-family: var(--font-body); font-size: 12px; font-weight: 500; background: rgba(78,72,117,0.28); color: var(--fg-secondary); border: 1px solid var(--border-subtle); padding: 4px 14px; border-radius: var(--radius-full); }
.tag-pill { display: inline-block; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(139,90,255,0.12); color: var(--purple-primary); border: 1px solid rgba(139,90,255,0.25); padding: 4px 12px; border-radius: var(--radius-full); }

/* ── Use Case Cards ── */
.usecase-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 24px; }
.usecase-biz { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--fg-primary); margin-bottom: 8px; }
.usecase-desc { font-family: var(--font-body); font-size: 13px; line-height: 1.65; color: var(--fg-secondary); }

/* ── Contact Form ── */
.contact-form { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-family: var(--font-body); font-size: 12px; font-weight: 500; color: var(--fg-secondary); }
.form-input { background: var(--bg-base); border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: 10px 12px; font-family: var(--font-body); font-size: 13px; color: var(--fg-primary); outline: none; width: 100%; transition: border-color 150ms, box-shadow 150ms; }
.form-input::placeholder { color: var(--fg-muted); }
.form-input:focus { border-color: var(--purple-primary); box-shadow: 0 0 0 3px var(--purple-focus); }
.form-input option { background: var(--bg-elevated); }
.form-submit { font-family: var(--font-display); font-weight: 600; font-size: 15px; background: var(--purple-primary); color: #fff; border: none; padding: 14px; border-radius: 7px; cursor: pointer; transition: background 150ms, transform 150ms, box-shadow 150ms; }
.form-submit:hover { background: var(--purple-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ── Footer ── */
footer { background: var(--bg-deep); border-top: 1px solid rgba(78,72,117,0.22); padding: 52px 32px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 44px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo-row { display: flex; align-items: center; gap: 8px; }
.footer-logo-row img { width: 24px; height: 24px; border-radius: 3px; }
.footer-logo-text { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--fg-primary); letter-spacing: -0.02em; }
.footer-tagline { font-family: var(--font-body); font-size: 13px; color: var(--fg-muted); line-height: 1.55; max-width: 220px; }
.footer-site { font-family: var(--font-body); font-size: 12px; color: var(--purple-primary); text-decoration: none; transition: color 150ms; }
.footer-site:hover { color: var(--purple-hover); }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 4px; }
.footer-col a { font-family: var(--font-body); font-size: 13px; color: var(--fg-secondary); text-decoration: none; transition: color 150ms; }
.footer-col a:hover { color: var(--fg-primary); }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(78,72,117,0.18); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-family: var(--font-body); font-size: 12px; color: var(--fg-dim); }

/* ── Animations ── */
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.22); }
}
.hero-glow, .page-hero-glow { animation: glowPulse 5s ease-in-out infinite; }

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@keyframes lineFlow {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

@keyframes cardGlow {
  0%, 100% { box-shadow: 0 0 22px rgba(139,90,255,0.22), 0 0 0 1px rgba(139,90,255,0.28); }
  50% { box-shadow: 0 0 55px rgba(139,90,255,0.50), 0 0 110px rgba(139,90,255,0.12), 0 0 0 1px rgba(139,90,255,0.65); }
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(139,90,255,0.38), 0 4px 14px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 0 42px rgba(139,90,255,0.68), 0 0 80px rgba(139,90,255,0.18), 0 4px 14px rgba(0,0,0,0.2); }
}

@keyframes heroBgShift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Neon Visual Effects ── */

/* Animated gradient accent text */
.accent {
  background: linear-gradient(90deg, #C07AFF, #5EA0FF, #FF78EC, #C07AFF);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease-in-out infinite;
}

/* Dot grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(139,90,255,0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
nav, section, footer, .hero-section, .page-hero { position: relative; z-index: 1; }

/* Second orb (blue) on inner page heroes */
.page-hero::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -160px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,255,0.14) 0%, transparent 68%);
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite;
  animation-delay: -3s;
}

/* Second orb (blue) on homepage hero */
.hero-section::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,255,0.16) 0%, transparent 68%);
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite;
  animation-delay: -3s;
}

/* Gradient top border on service cards */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,90,255,0.5), transparent);
}
.service-card.featured::before {
  background: linear-gradient(90deg, transparent, #9B6AFF, #5EA0FF, #FF78EC, #9B6AFF, transparent);
  background-size: 300% 100%;
  animation: borderFlow 3.5s linear infinite;
}

/* Gradient top border on feature cards */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,90,255,0.3), transparent);
  transition: background 300ms;
}
.feature-card:hover::before {
  background: linear-gradient(90deg, transparent, #9B6AFF 30%, #5EA0FF 50%, #FF78EC 70%, transparent);
}

/* Neon glowing line on CTA banner */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,90,255,0.9), rgba(94,160,255,0.7), rgba(255,120,236,0.6), rgba(139,90,255,0.9), transparent);
}

/* Feature icon glow on card hover */
.feature-card:hover .feature-icon {
  background: rgba(139,90,255,0.30);
  box-shadow: 0 0 18px rgba(139,90,255,0.45);
  border-color: rgba(139,90,255,0.55);
}

/* Card entrance animations */
.will-animate {
  opacity: 0;
}
.will-animate.in-view {
  opacity: 1;
  transition: opacity 600ms ease;
}

/* Heading reveal */
.heading-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.heading-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Stats Band ── */
.stats-band { padding: 36px 32px; }
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; text-align: center; }
.stat-item { padding: 12px 8px; }
.stat-row { display: flex; align-items: baseline; justify-content: center; gap: 3px; }
.stat-num { font-family: var(--font-display); font-size: clamp(38px,4vw,56px); font-weight: 700; color: var(--fg-primary); letter-spacing: -0.04em; }
.stat-suffix { font-family: var(--font-display); font-size: clamp(16px,2vw,24px); font-weight: 600; color: var(--purple-primary); }
.stat-label { font-family: var(--font-body); font-size: 13px; color: var(--fg-muted); margin-top: 4px; }

/* ── Flow Diagram ── */
.flow-diagram { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 4px; margin: 40px 0 52px; }
.flow-node { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 16px 18px; display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 108px; transition: box-shadow 200ms, transform 200ms; }
.flow-node:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.flow-node-highlight { background: var(--bg-elevated); border-color: rgba(139,90,255,0.6); box-shadow: var(--shadow-sm); }
.flow-icon { width: 38px; height: 38px; border-radius: 8px; background: rgba(139,90,255,0.14); border: 1px solid rgba(139,90,255,0.30); display: flex; align-items: center; justify-content: center; color: var(--purple-primary); }
.flow-icon svg { width: 18px; height: 18px; }
.flow-node-label { font-family: var(--font-display); font-size: 11px; font-weight: 600; color: var(--fg-secondary); text-align: center; line-height: 1.4; }
.flow-arrow { color: rgba(139,90,255,0.55); font-size: 22px; padding: 0 2px; flex-shrink: 0; line-height: 1; }

/* ── Full-Service Deep-Dive (services page) ── */
.services-deep { padding: 64px 32px; background: var(--bg-base); }
.full-service { max-width: 1000px; margin: 0 auto 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.fs-visual { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 14px; padding: 32px; min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; gap: 20px; }
.fs-visual-glow { position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(139,90,255,0.2) 0%, transparent 70%); pointer-events: none; }
.fs-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(139,90,255,0.10); border: 1px solid rgba(139,90,255,0.28); border-radius: var(--radius-full); padding: 4px 12px; font-size: 11px; font-weight: 600; color: var(--purple-primary); margin-bottom: 4px; width: fit-content; }
.fs-visual-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--fg-primary); letter-spacing: -0.02em; margin-bottom: 6px; }
.fs-visual-sub { font-size: 13px; color: var(--fg-secondary); line-height: 1.6; }
.fs-metrics { display: flex; gap: 24px; }
.fs-metric { display: flex; flex-direction: column; gap: 2px; }
.fs-metric-n { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--fg-primary); letter-spacing: -0.02em; }
.fs-metric-n span { color: var(--purple-primary); }
.fs-metric-l { font-size: 11px; color: var(--fg-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.fs-terminal { background: var(--bg-elevated); border-radius: 10px; padding: 16px; font-family: var(--font-mono); font-size: 12px; line-height: 1.8; }
.fs-seq-row { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 7px; padding: 9px 12px; font-size: 12px; font-family: var(--font-mono); color: var(--fg-secondary); }
.fs-seq-row.active { border-color: rgba(37,99,255,0.38); color: var(--blue-primary); }
.fs-crm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fs-crm-card { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 7px; padding: 10px 12px; }
.fs-crm-label { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--fg-primary); margin-bottom: 3px; }
.fs-crm-action { font-size: 11px; color: var(--purple-primary); }
.fs-content { display: flex; flex-direction: column; gap: 20px; }
.fs-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-primary); }
.fs-title { font-family: var(--font-display); font-size: clamp(22px,3vw,34px); font-weight: 700; letter-spacing: -0.03em; color: var(--fg-primary); line-height: 1.15; }
.fs-desc { font-size: 15px; line-height: 1.75; color: var(--fg-secondary); }
.fs-features { display: flex; flex-direction: column; gap: 10px; }
.fs-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--fg-secondary); line-height: 1.5; }
.fs-feature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-primary); flex-shrink: 0; margin-top: 6px; }
.fs-ideal { background: rgba(139,90,255,0.05); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 16px 18px; }
.fs-ideal-title { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 8px; }
.fs-ideal-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.fs-ideal-tag { font-size: 12px; color: var(--fg-secondary); background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: var(--radius-full); padding: 3px 10px; }
.service-divider { max-width: 1000px; margin: 0 auto 80px; height: 1px; background: linear-gradient(90deg, transparent, rgba(139,90,255,0.4), transparent); }

/* ── Pricing Plans ── */
.plans-section { padding: 80px 32px; background: var(--bg-surface); }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1000px; margin: 40px auto 0; }
.plan { background: var(--bg-base); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 28px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.plan.popular { background: #1E1840; border-color: var(--purple-primary); box-shadow: 0 0 48px rgba(139,90,255,0.18); }
.plan-pill { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--purple-primary); color: #fff; font-family: var(--font-display); font-size: 11px; font-weight: 600; padding: 3px 14px; border-radius: var(--radius-full); white-space: nowrap; }
.plan-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--fg-primary); }
.plan-price { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--fg-primary); letter-spacing: -0.03em; }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--fg-muted); letter-spacing: 0; }
.plan-desc { font-size: 13px; color: var(--fg-secondary); line-height: 1.55; }
.plan-divider { height: 1px; background: var(--border-subtle); }
.plan-features { display: flex; flex-direction: column; gap: 9px; }
.plan-feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-secondary); }
.plan-feature-check { color: #4ADE80; flex-shrink: 0; }
.plan-btn { font-family: var(--font-display); font-size: 14px; font-weight: 600; padding: 11px; border-radius: 7px; border: 1px solid var(--border-default); background: transparent; color: var(--fg-secondary); cursor: pointer; transition: all 150ms; text-align: center; margin-top: auto; text-decoration: none; display: block; }
.plan.popular .plan-btn { background: var(--purple-primary); border-color: transparent; color: #fff; }
.plan-btn:hover { background: var(--purple-glow); color: var(--fg-primary); border-color: var(--purple-primary); }

/* ── FAQ (animated max-height) ── */
.faq-list-new { max-width: 760px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item-new { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 10px; overflow: hidden; cursor: pointer; transition: border-color 200ms; }
.faq-item-new.open { border-color: rgba(139,90,255,0.45); }
.faq-q-new { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q-text { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--fg-primary); }
.faq-arrow-new { color: var(--fg-muted); font-size: 12px; transition: transform 200ms, color 200ms; flex-shrink: 0; }
.faq-item-new.open .faq-arrow-new { transform: rotate(180deg); color: var(--purple-primary); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 350ms ease; }
.faq-item-new.open .faq-body { max-height: 400px; }
.faq-body-inner { padding: 0 22px 18px; font-size: 14px; line-height: 1.7; color: var(--fg-secondary); }

/* ── How It Works vertical timeline ── */
.hiw-timeline { padding: 64px 32px; background: var(--bg-base); }
.hiw-steps { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.hiw-step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; position: relative; padding-bottom: 48px; }
.hiw-step:last-child { padding-bottom: 0; }
.hiw-step-left { display: flex; flex-direction: column; align-items: center; }
.hiw-step-num { width: 52px; height: 52px; border-radius: 12px; background: rgba(139,90,255,0.10); border: 1px solid rgba(139,90,255,0.38); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--purple-primary); flex-shrink: 0; z-index: 1; transition: all 200ms; }
.hiw-step.step-active .hiw-step-num { background: var(--purple-primary); color: #fff; box-shadow: 0 0 24px var(--purple-glow); border-color: var(--purple-primary); }
.hiw-step-line { width: 2px; flex: 1; background: rgba(139,90,255,0.18); margin-top: 12px; border-radius: 2px; min-height: 40px; }
.hiw-step:last-child .hiw-step-line { display: none; }
.hiw-step-content { padding-top: 10px; }
.hiw-step-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: 8px; }
.hiw-step-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--fg-primary); letter-spacing: -0.02em; margin-bottom: 12px; }
.hiw-step-desc { font-size: 15px; line-height: 1.75; color: var(--fg-secondary); margin-bottom: 16px; }
.hiw-step-details { display: flex; flex-direction: column; gap: 8px; }
.hiw-detail { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--fg-secondary); line-height: 1.55; }
.hiw-detail-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--purple-primary); flex-shrink: 0; margin-top: 6px; }
.hiw-step-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 16px 18px; margin-top: 16px; }
.hiw-step-card-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 8px; }
.hiw-step-card p { font-size: 13px; color: var(--fg-secondary); line-height: 1.6; }

/* ── What You Get grid ── */
.wyg-section { padding: 80px 32px; background: var(--bg-surface); }
.wyg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 900px; margin: 40px auto 0; }
.wyg-card { background: var(--bg-base); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 24px; transition: all 200ms; }
.wyg-card:hover { border-color: rgba(139,90,255,0.4); box-shadow: 0 0 28px var(--purple-glow); transform: translateY(-2px); }
.wyg-icon { width: 40px; height: 40px; border-radius: 9px; background: rgba(139,90,255,0.10); border: 1px solid rgba(139,90,255,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--purple-primary); }
.wyg-icon svg { width: 18px; height: 18px; }
.wyg-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--fg-primary); margin-bottom: 8px; }
.wyg-desc { font-size: 13px; line-height: 1.65; color: var(--fg-secondary); }

/* ── Timeline Callout ── */
.tl-section { padding: 80px 32px; background: var(--bg-base); }
.tl-inner { max-width: 900px; margin: 0 auto; }
.tl-track { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding-bottom: 32px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-time { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--blue-primary); padding-top: 2px; text-align: right; }
.tl-content { border-left: 2px solid rgba(139,90,255,0.20); padding-left: 24px; position: relative; }
.tl-content::before { content: ''; position: absolute; left: -5px; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--purple-primary); box-shadow: 0 0 8px var(--purple-glow); }
.tl-label { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--fg-primary); margin-bottom: 6px; }
.tl-desc { font-size: 13px; line-height: 1.6; color: var(--fg-secondary); }

/* ── About Page ── */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; max-width: 1000px; margin: 0 auto 80px; }
.about-headshot { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 16px; min-height: 380px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-headshot-placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.about-headshot-initials { width: 96px; height: 96px; border-radius: 20px; background: rgba(139,90,255,0.14); border: 1px solid rgba(139,90,255,0.35); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--purple-primary); }
.about-headshot-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--fg-primary); }
.about-headshot-role { font-size: 13px; color: var(--fg-muted); }
.about-headshot-glow { position: absolute; top: -80px; left: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(139,90,255,0.14) 0%, transparent 70%); pointer-events: none; }
.about-story { display: flex; flex-direction: column; gap: 18px; }
.about-story-p { font-size: 15px; line-height: 1.8; color: var(--fg-secondary); }
.about-story-p strong { color: var(--fg-primary); }
.highlight { color: var(--purple-primary); }
.highlight-blue { color: var(--blue-primary); }

/* ── Mission ── */
.mission-section { padding: 80px 32px; background: var(--bg-surface); }
.mission-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.mission-quote { font-family: var(--font-display); font-size: clamp(20px,3vw,30px); font-weight: 600; color: var(--fg-primary); line-height: 1.45; letter-spacing: -0.02em; max-width: 700px; margin: 24px auto 40px; }

/* ── Values Grid ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1000px; margin: 40px auto 0; }
.value-card-new { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 24px; transition: all 200ms; }
.value-card-new:hover { border-color: rgba(139,90,255,0.4); transform: translateY(-2px); }
.value-num-new { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--blue-primary); margin-bottom: 10px; }
.value-title-new { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--fg-primary); margin-bottom: 8px; }
.value-desc-new { font-size: 13px; line-height: 1.65; color: var(--fg-secondary); }

/* ── Tools Grid ── */
.tools-section { padding: 80px 32px; background: var(--bg-base); }
.tools-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; max-width: 960px; margin: 40px auto 0; }
.tool-card { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 8px; transition: all 200ms; }
.tool-card:hover { border-color: rgba(139,90,255,0.4); box-shadow: 0 0 20px var(--purple-glow); transform: translateY(-2px); }
.tool-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--fg-primary); }
.tool-use { font-size: 12px; color: var(--fg-muted); line-height: 1.5; }
.tool-pill { display: inline-flex; align-items: center; background: rgba(139,90,255,0.09); border: 1px solid rgba(139,90,255,0.22); border-radius: var(--radius-full); padding: 2px 9px; font-size: 10px; font-weight: 600; color: var(--purple-primary); margin-top: 4px; width: fit-content; }

/* ── Contact redesign ── */
.contact-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; max-width: 1000px; margin: 0 auto; }
.contact-left-new { display: flex; flex-direction: column; gap: 28px; }
.contact-info-block { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 20px 22px; }
.contact-info-label { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 10px; }
.contact-info-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-secondary); margin-bottom: 8px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon { width: 28px; height: 28px; border-radius: 6px; background: rgba(139,90,255,0.09); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.expect-list { display: flex; flex-direction: column; gap: 14px; }
.expect-item { display: flex; gap: 14px; align-items: flex-start; }
.expect-num { width: 28px; height: 28px; border-radius: 7px; background: rgba(139,90,255,0.10); border: 1px solid rgba(139,90,255,0.28); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--purple-primary); flex-shrink: 0; }
.expect-text { display: flex; flex-direction: column; gap: 2px; }
.expect-title { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--fg-primary); }
.expect-desc { font-size: 12px; color: var(--fg-muted); line-height: 1.5; }
.contact-form-wrap { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: 14px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.form-note { font-size: 11px; color: var(--fg-muted); text-align: center; line-height: 1.5; }
.form-success-state { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; padding: 32px 0; }
.success-icon-wrap { width: 56px; height: 56px; border-radius: 50%; background: rgba(74,222,128,0.10); border: 1px solid rgba(74,222,128,0.28); display: flex; align-items: center; justify-content: center; font-size: 22px; color: #4ADE80; margin: 0 auto; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .three-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step:not(:last-child)::after { display: none; }
  .cta-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .full-service { grid-template-columns: 1fr; gap: 32px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin: 40px auto 0; }
  .hiw-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .wyg-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .tl-item { grid-template-columns: 90px 1fr; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .page-hero { padding: 60px 20px 48px; }
  .section { padding: 56px 20px; }
  footer { padding: 40px 20px 20px; }
  .three-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-banner { padding: 24px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { padding: 28px 20px; }
  .flow-arrow { display: none; }
  .flow-diagram { gap: 8px; }
  .wyg-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 70px 1fr; gap: 14px; }
  .hiw-timeline, .wyg-section, .tl-section, .plans-section, .tools-section, .mission-section, .services-deep { padding: 56px 20px; }
  .about-intro-grid { gap: 32px; }
  .contact-split { gap: 32px; }
  .fs-crm-grid { grid-template-columns: 1fr; }
}
