/* ============================================================
   SiteGuys3 — Main Stylesheet
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg:         #080c14;
  --color-bg-2:       #0d1320;
  --color-bg-card:    #111827;
  --color-bg-card-2:  #0f1a2e;
  --color-border:     rgba(255,255,255,0.08);
  --color-border-2:   rgba(255,255,255,0.12);

  --color-text:       #f0f4ff;
  --color-text-muted: #8b9ab5;
  --color-text-dim:   #5a6a82;

  --color-primary:    #3b7dff;
  --color-primary-2:  #2563eb;
  --color-accent:     #06d6a0;
  --color-accent-2:   #00b4d8;
  --color-purple:     #8b5cf6;

  --gradient-primary: linear-gradient(135deg, #3b7dff 0%, #06d6a0 100%);
  --gradient-glow:    linear-gradient(135deg, rgba(59,125,255,0.15) 0%, rgba(6,214,160,0.15) 100%);

  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 60px rgba(59,125,255,0.25);

  --transition: 0.2s ease;
}

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

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

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 1.5rem);
}

/* ---- Typography ---- */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(6,214,160,0.1);
  border: 1px solid rgba(6,214,160,0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 580px;
  margin-bottom: 3.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; }

.logo-icon { font-size: 1.4rem; }
.logo-accent { color: var(--color-accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--color-text); background: rgba(255,255,255,0.06); }

.nav-cta {
  background: var(--color-primary) !important;
  color: white !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--color-primary-2) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,125,255,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(59,125,255,0.5); }

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--color-text);
  border: 1px solid var(--color-border-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,125,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,125,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,125,255,0.5) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,214,160,0.4) 0%, transparent 70%);
  bottom: -100px; right: -50px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59,125,255,0.2);
  animation: orbit 12s linear infinite;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
}
.hero-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.hero-orb-2 {
  width: 600px; height: 600px;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  animation-duration: 18s;
  animation-direction: reverse;
  border-color: rgba(6,214,160,0.12);
}

@keyframes orbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 6rem;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  background: rgba(6,214,160,0.08);
  border: 1px solid rgba(6,214,160,0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent);
  animation: pulse 2s ease infinite;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 580px;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.hero-sub strong { color: var(--color-text); }

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-dim);
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--color-text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-2);
  padding: 1.5rem 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-dim);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-logos li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  transition: color var(--transition), border-color var(--transition);
}
.trust-logos li:hover {
  color: var(--color-accent);
  border-color: rgba(6,214,160,0.3);
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  padding: 6rem 0;
  background: var(--color-bg);
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.why-col {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.why-old {
  background: rgba(255,255,255,0.02);
  opacity: 0.7;
}

.why-new {
  background: linear-gradient(135deg, rgba(59,125,255,0.08) 0%, rgba(6,214,160,0.08) 100%);
  border-color: rgba(6,214,160,0.2);
  box-shadow: 0 0 40px rgba(6,214,160,0.05);
}

.why-col-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.why-col h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.why-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}
.why-badge-old  { background: rgba(255,255,255,0.06); color: var(--color-text-dim); }
.why-badge-new  { background: rgba(6,214,160,0.15); color: var(--color-accent); }

.why-list { display: flex; flex-direction: column; gap: 0.65rem; }
.why-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
}
.why-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.why-list-no li {
  color: var(--color-text-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.2);
}
.why-list-no li::before {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
}
.why-list-yes li { color: var(--color-text); }
.why-list-yes li::before {
  background: rgba(6,214,160,0.15);
  border: 1px solid rgba(6,214,160,0.4);
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--color-accent);
  font-weight: 700;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  border-color: rgba(59,125,255,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.why-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 6rem 0;
  background: var(--color-bg-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: rgba(59,125,255,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.service-card-featured {
  border-color: rgba(59,125,255,0.3);
  background: linear-gradient(135deg, rgba(59,125,255,0.06) 0%, rgba(6,214,160,0.06) 100%);
}

.service-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.service-card ul li::before {
  content: '→';
  color: var(--color-primary);
  font-weight: 600;
  flex-shrink: 0;
}

/* ============================================================
   EXAMPLES
   ============================================================ */
.examples-section {
  padding: 6rem 0;
  background: var(--color-bg);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.example-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.example-card:hover {
  border-color: rgba(59,125,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* ---- Style Preview Mockups ---- */
.style-preview {
  height: 240px;
  position: relative;
  overflow: hidden;
  padding: 14px 14px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Background themes */
.style-dark       { background: linear-gradient(160deg, #080c18 0%, #0d1a30 100%); }
.style-light      { background: linear-gradient(160deg, #f4f6fb 0%, #e8edf5 100%); }
.style-gradient   { background: linear-gradient(160deg, #1a0533 0%, #0d1a40 60%, #003328 100%); }
.style-editorial  { background: #fafaf8; }

/* Style label badge */
.sp-label {
  position: absolute;
  bottom: 8px; right: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.sp-label-light, .sp-label-edit { color: rgba(0,0,0,0.25); }

/* Nav bar */
.sp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 14px;
  padding: 0 2px;
  margin-bottom: 4px;
}
.sp-nav-light { border-bottom: 1px solid rgba(0,0,0,0.07); padding-bottom: 8px; }
.sp-nav-edit  { border-bottom: 2px solid #1a1a1a; padding-bottom: 8px; }

.sp-logo {
  width: 40px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}
.sp-logo-light { background: rgba(0,0,0,0.3); }
.sp-logo-grad  { background: linear-gradient(90deg, rgba(168,85,247,0.8), rgba(59,130,246,0.8)); }
.sp-logo-edit  { background: #1a1a1a; width: 32px; height: 10px; border-radius: 0; }

.sp-nav-links { display: flex; gap: 6px; }
.sp-nav-links span {
  width: 24px; height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}
.sp-link-light { background: rgba(0,0,0,0.15) !important; }
.sp-link-edit  { background: rgba(0,0,0,0.2) !important; width: 20px !important; border-radius: 0 !important; }

/* Hero area */
.sp-hero { padding: 10px 6px 8px; border-radius: 4px; flex-shrink: 0; }
.sp-hero-light    { background: transparent; }
.sp-hero-gradient { background: transparent; }
.sp-hero-edit     { background: transparent; padding-top: 4px; }

.sp-eyebrow {
  width: 50px; height: 5px;
  background: rgba(6,214,160,0.6);
  border-radius: 10px;
  margin-bottom: 7px;
}
.sp-eyebrow-light { background: rgba(59,125,255,0.5); }
.sp-eyebrow-grad  { background: rgba(168,85,247,0.7); }

.sp-rule {
  width: 100%; height: 2px;
  background: #1a1a1a;
  margin-bottom: 8px;
}

.sp-h1 {
  height: 11px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  margin-bottom: 5px;
  width: 85%;
}
.sp-h1-short { width: 60%; }
.sp-h1-light { background: rgba(10,20,50,0.65); }
.sp-h1-grad  { background: rgba(255,255,255,0.9); }
.sp-h1-edit  { background: #1a1a1a; border-radius: 0; height: 13px; }
.sp-h1-xl    { height: 15px; }

.sp-body {
  width: 90%; height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-bottom: 9px;
}
.sp-body-light { background: rgba(0,0,0,0.15); }
.sp-body-edit  { background: rgba(0,0,0,0.2); height: 4px; margin-bottom: 10px; }

.sp-btns { display: flex; gap: 5px; }
.sp-btn {
  height: 14px; width: 52px;
  border-radius: 3px;
}
.sp-btn-primary { background: linear-gradient(90deg, #3b7dff, #06d6a0); }
.sp-btn-ghost   { width: 42px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
.sp-btn-blue    { background: #3b7dff; }
.sp-btn-outline { width: 42px; background: transparent; border: 1px solid rgba(59,125,255,0.5); }
.sp-btn-white   { background: #fff; }
.sp-btn-clear   { width: 42px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); }
.sp-btn-edit    { background: #1a1a1a; border-radius: 0; width: 44px; }

/* Card row */
.sp-cards { display: flex; gap: 5px; }
.sp-card {
  flex: 1; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
}
.sp-card-light { background: #fff; border-color: rgba(0,0,0,0.1); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.sp-card-grad  { background: rgba(255,255,255,0.06); border-color: rgba(168,85,247,0.2); }

/* Editorial two-col */
.sp-editorial-cols {
  display: flex;
  gap: 6px;
}
.sp-edit-col { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sp-edit-img {
  height: 36px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px;
}
.sp-edit-caption {
  height: 4px; width: 70%;
  background: rgba(0,0,0,0.15);
  border-radius: 2px;
}

/* ---- Example Info ---- */
.example-info {
  padding: 1.5rem;
}

.example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.tag-aeo { background: rgba(59,125,255,0.1); color: #7eb3ff; border-color: rgba(59,125,255,0.2); }
.tag-geo { background: rgba(6,214,160,0.1); color: var(--color-accent); border-color: rgba(6,214,160,0.2); }

.example-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.example-info p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.example-metric {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.metric-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  padding: 6rem 0;
  background: var(--color-bg-2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,125,255,0.4), rgba(6,214,160,0.4), transparent);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(6,214,160,0.1);
  border: 2px solid rgba(6,214,160,0.3);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 6rem 0;
  background: var(--color-bg);
}

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(59,125,255,0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-icon {
  font-size: 1.4rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--color-border);
}
.faq-answer[hidden] { display: none; }

.faq-answer p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-top: 1rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 6rem 0;
  background: var(--color-bg-2);
}

.contact-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid rgba(59,125,255,0.2);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  overflow: hidden;
}

.contact-bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,125,255,0.1) 0%, transparent 70%);
  top: -200px; left: -200px;
  pointer-events: none;
}

.contact-content { position: relative; }

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-sub {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.contact-detail svg { color: var(--color-primary); flex-shrink: 0; }

/* ---- Form ---- */
.contact-form { position: relative; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group:last-child { margin-bottom: 1.5rem; }

.form-group label {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.7rem 0.9rem;
  width: 100%;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(59,125,255,0.6);
  background: rgba(59,125,255,0.05);
  box-shadow: 0 0 0 3px rgba(59,125,255,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand .nav-logo {
  margin-bottom: 0.85rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--color-text-dim);
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a,
.footer-col address {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}
.footer-tagline { font-style: italic; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(8,12,20,0.97);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    gap: 0.25rem;
  }
  .nav-links.open a { width: 100%; display: block; }

  .hero-headline { font-size: clamp(2.2rem, 9vw, 3.5rem); }

  .why-split { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .examples-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  .contact-card { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }

  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { width: 100%; height: 1px; }
}

@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }
  .trust-bar .container { flex-direction: column; align-items: flex-start; }
  .footer-bottom .container { flex-direction: column; }
}
