/* ============================================================
   IRON WOLF PRESS — styles.css
   Theme: Industrial Dark / Geometric Wolf / Cyber-Forge
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:      #070710;
  --bg-dark:      #0b0b18;
  --bg-mid:       #0f0f20;
  --bg-card:      #13132a;
  --bg-card-hover:#181834;
  --accent:       #00e5c8;
  --accent-dim:   #00c4ae;
  --accent-glow:  rgba(0, 229, 200, 0.18);
  --accent2:      #ff6b35;
  --accent2-glow: rgba(255, 107, 53, 0.15);
  --text-primary: #e8e8f0;
  --text-secondary: #8888aa;
  --text-muted:   #4a4a6a;
  --border:       rgba(0, 229, 200, 0.12);
  --border-bright: rgba(0, 229, 200, 0.35);

  --font-display: 'Cinzel Decorative', serif;
  --font-head:    'Rajdhani', sans-serif;
  --font-body:    'Crimson Pro', Georgia, serif;

  --radius:       6px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}
.cursor-trail {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 30px; height: 30px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, left 0.12s, top 0.12s, opacity 0.3s;
  opacity: 0.5;
}
body:hover .cursor { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { width: 20px; height: 20px; }

/* ── PARTICLE CANVAS ── */
#particleCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(7, 7, 16, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.8rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-wolf { width: 36px; height: 30px; }
.nav-name {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  white-space: nowrap;
}
.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--text-secondary);
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-dark);
  z-index: 99;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 1.5rem 0; }
.mobile-link {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700;
  text-decoration: none;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  padding: 8rem 3rem 5rem;
  /* NO overflow:hidden — that was clipping the email card */
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  flex: 1 1 0;
  min-width: 0;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.eyebrow-line {
  flex: 1; max-width: 60px; height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.eyebrow-text {
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  display: flex; flex-direction: column;
}
.title-line {
  display: block;
  background: linear-gradient(135deg, #e8e8f0 30%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleReveal 0.8s ease both;
}
.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.25s; }
.title-line:nth-child(3) { animation-delay: 0.4s; }
.title-wolf {
  background: linear-gradient(135deg, var(--accent) 0%, #00b8a0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

@keyframes titleReveal {
  from { opacity: 0; transform: translateY(30px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  animation: titleReveal 0.8s ease 0.55s both;
}
.hero-cta-group {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: titleReveal 0.8s ease 0.7s both;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: none;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: var(--accent);
  color: var(--bg-deep);
  border: 1px solid var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { box-shadow: 0 0 40px var(--accent-glow), 0 0 80px var(--accent-glow); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  width: 100%; justify-content: center;
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--bg-deep);
  box-shadow: 0 0 30px var(--accent-glow);
}
.btn-full { width: 100%; justify-content: center; }

/* ── HERO STATS ── */
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  animation: titleReveal 0.8s ease 0.85s both;
}
.stat {
  display: flex; flex-direction: column; gap: 0.1rem;
}
.stat-prefix { font-family: var(--font-head); font-size: 0.85rem; color: var(--text-muted); line-height: 1; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-unit { font-family: var(--font-head); font-size: 0.9rem; color: var(--text-secondary); }
.stat-label { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--text-muted); text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: var(--border-bright); }

/* ── HERO EMAIL CARD ── */
.hero-email-card {
  /* In-flow flex child — NOT position:absolute anymore */
  position: relative;
  z-index: 2;
  flex: 0 0 clamp(300px, 34vw, 420px);
  width: clamp(300px, 34vw, 420px);
  background: rgba(13, 13, 30, 0.88);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 2rem 2rem 1.5rem;
  backdrop-filter: blur(16px);
  animation: titleReveal 1s ease 0.5s both;
  box-shadow: 0 0 60px rgba(0,229,200,0.06), 0 24px 60px rgba(0,0,0,0.5);
  align-self: center;
}
.email-card-glow {
  position: absolute; inset: -1px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), transparent 60%, var(--accent2));
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}
.email-card-header {
  margin-bottom: 1.25rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.email-card-icon {
  width: 36px; height: 36px;
  color: var(--accent); margin-bottom: 0.25rem;
}
.email-card-icon svg { width: 100%; height: 100%; }
.email-card-label {
  font-family: var(--font-head);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
}
.email-card-title {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}
.email-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.email-card-perks {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.email-card-perks li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: var(--text-secondary);
  line-height: 1.5;
}
.perk-icon {
  color: var(--accent); font-size: 0.7rem;
  margin-top: 0.25rem; flex-shrink: 0;
}
.email-highlight { color: #ffd700 !important; }
.email-card-perks strong { color: var(--text-primary); }

/* Email form */
.email-signup-form { display: flex; flex-direction: column; gap: 0.6rem; }
.email-input-row {
  display: flex; gap: 0.5rem;
}
.email-input-row input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.email-input-row input::placeholder { color: var(--text-muted); }
.email-input-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.email-signup-btn {
  padding: 0.7rem 1.1rem !important;
  white-space: nowrap; flex-shrink: 0;
}
.email-signup-btn svg { width: 14px; height: 14px; }
.email-signup-success {
  display: none;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.82rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  text-align: center;
}
.email-signup-success.show { display: block; }
.email-privacy {
  font-size: 0.72rem; color: var(--text-muted);
  text-align: center;
}

/* Live counter bar */
.email-card-counter {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.counter-pulse {
  display: inline-block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  flex-shrink: 0;
  animation: counterPulse 1.8s ease-in-out infinite;
}
@keyframes counterPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 6px rgba(0,229,200,0); }
}
.counter-text {
  font-size: 0.72rem; color: var(--text-muted);
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}

/* ── AUDIENCE ROW ── */
.audience-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}
.audience-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: border-color var(--transition);
}
.audience-item:hover { border-color: var(--border-bright); }
.audience-icon {
  font-size: 1.6rem; flex-shrink: 0;
  line-height: 1; margin-top: 0.1rem;
}
.audience-item div { display: flex; flex-direction: column; gap: 0.3rem; }
.audience-item strong {
  font-family: var(--font-head);
  font-size: 0.95rem; color: var(--text-primary);
}
.audience-item span { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.5; }

/* ── SCROLL HINT ── */
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2;
  animation: titleReveal 1s ease 1.2s both;
}
.hero-scroll-hint span {
  font-family: var(--font-head);
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.5) translateY(10px); }
}

/* ── SLASH DIVIDERS ── */
.slash-divider { line-height: 0; z-index: 1; position: relative; }
.slash-divider svg { display: block; width: 100%; height: 60px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-bright);
  padding: 0.35rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, #00b0a0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  max-width: 600px; margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SERVICES SECTION ── */
.services { padding: 6rem 0; background: var(--bg-mid); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.service-list { list-style: none; }
.service-list li {
  padding: 0.35rem 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  padding-left: 1.5rem;
  position: relative;
}
.service-list li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--accent);
}

/* ── TURNAROUND BANNER ── */
.turnaround-banner {
  display: flex; align-items: center; gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}
.turnaround-item {
  display: flex; align-items: center; gap: 1rem;
  flex: 1; min-width: 260px;
}
.turnaround-item svg {
  width: 36px; height: 36px;
  color: var(--accent); flex-shrink: 0;
}
.turnaround-item div { display: flex; flex-direction: column; gap: 0.2rem; }
.turnaround-item strong {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--text-primary);
}
.turnaround-item span { color: var(--text-secondary); font-size: 0.9rem; }
.turnaround-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ── PRICING SECTION ── */
.pricing { padding: 6rem 0; background: var(--bg-dark); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.pricing-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(0,229,200,0.04) 100%);
  box-shadow: 0 0 40px rgba(0, 229, 200, 0.08), inset 0 0 0 1px var(--accent);
  transform: scale(1.02);
}
.pricing-featured:hover { transform: scale(1.02) translateY(-4px); }

.featured-badge {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-head);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.9rem;
  border-radius: 0 0 4px 4px;
}
.pricing-tier-badge {
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.pricing-page-count {
  font-family: var(--font-head);
  font-size: 1rem; color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.pricing-setup {
  display: flex; align-items: baseline; gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.setup-label { font-size: 0.8rem; color: var(--text-muted); }
.setup-price {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-secondary);
}
.pricing-monthly {
  display: flex; align-items: baseline; gap: 0.25rem;
  margin-bottom: 2rem;
}
.monthly-price {
  font-family: var(--font-head);
  font-size: 3.5rem; font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.monthly-unit {
  font-family: var(--font-head);
  font-size: 1rem; color: var(--text-muted);
}
.pricing-features {
  list-style: none; margin-bottom: 2rem;
}
.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.6rem;
}
.pricing-features li:last-child { border-bottom: none; }
.check { color: var(--accent); font-size: 0.75rem; flex-shrink: 0; }
.pricing-features strong { color: var(--text-primary); }
.pricing-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 1rem; text-align: center; }

/* ── ADD-ONS ── */
.addon-row {
  display: flex; align-items: center; gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
  row-gap: 1rem;
}
.addon-tag {
  font-family: var(--font-head);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent2);
  border: 1px solid rgba(255,107,53,0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  white-space: nowrap;
}
.addon-item { flex: 1; min-width: 180px; }
.addon-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem; color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.addon-item span { font-size: 0.85rem; color: var(--text-secondary); }
.addon-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── PROCESS SECTION ── */
.process { padding: 6rem 0; background: var(--bg-mid); }
.process-steps {
  display: flex; gap: 0; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.process-step {
  flex: 1; min-width: 240px;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; padding: 2rem 2rem 2rem 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 700;
  color: var(--border-bright);
  line-height: 1;
  transition: color var(--transition);
}
.process-step:hover .step-num { color: var(--accent); }
.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.step-content p { color: var(--text-secondary); font-size: 0.95rem; }
.step-arrow {
  position: absolute; right: 0; top: 2.5rem;
  font-size: 1.5rem; color: var(--accent);
  opacity: 0.4;
}
.step-arrow.last { opacity: 0.7; }

/* ── OWNERSHIP BLOCK ── */
.ownership-block {
  display: flex; align-items: center; gap: 2rem;
  background: linear-gradient(135deg, var(--bg-card), rgba(0,229,200,0.04));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 2.5rem;
  flex-wrap: wrap;
}
.ownership-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  color: var(--accent);
}
.ownership-icon svg { width: 100%; height: 100%; }
.ownership-text h3 {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.6rem;
}
.ownership-text p { color: var(--text-secondary); font-size: 0.95rem; }

/* ── CONTACT SECTION ── */
.contact {
  padding: 6rem 0;
  background: var(--bg-dark);
  position: relative; overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(0,229,200,0.04), transparent),
    radial-gradient(ellipse 400px 600px at 80% 50%, rgba(255,107,53,0.03), transparent);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: start;
}
.contact-lead {
  font-size: 1.1rem; color: var(--text-secondary);
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2rem;
  color: var(--accent);
}
.contact-detail svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-detail span { font-family: var(--font-head); font-size: 1rem; }
.contact-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.contact-note strong { color: var(--accent); }

/* ── FORM ── */
.contact-form {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.form-group {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.form-group label {
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-card); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-success {
  display: none;
  text-align: center;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.95rem;
  padding: 1rem;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
}
.form-success.show { display: block; }

/* ── FOOTER ── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-wolf { width: 44px; height: 36px; }
.footer-name {
  font-family: var(--font-display);
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--text-primary);
}
.footer-tagline {
  font-size: 0.8rem; color: var(--text-muted);
  font-family: var(--font-head);
}
.footer-links {
  display: flex; gap: 2rem;
}
.footer-links a {
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--text-secondary);
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.footer-divider { color: var(--border-bright); }

/* ── RESPONSIVE ── */

/* Large tablets: tighten the two columns */
@media (max-width: 1100px) {
  .hero { padding: 8rem 2rem 5rem; gap: 2rem; }
  .hero-email-card { flex: 0 0 clamp(280px, 40vw, 380px); width: clamp(280px, 40vw, 380px); }
  .nav { padding: 1rem 2rem; }
  .nav.scrolled { padding: 0.7rem 2rem; }
}

/* Tablets: stack hero to single column */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    padding: 7rem 1.5rem 4rem;
    min-height: auto;
    gap: 2.5rem;
  }
  .hero-content { flex: none; }
  .hero-email-card {
    flex: none;
    width: 100%;
    max-width: 560px;
    align-self: center;
  }
  .hero-scroll-hint { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav { padding: 0.9rem 1.25rem; }
  .nav.scrolled { padding: 0.65rem 1.25rem; }
  .nav-name { font-size: 0.6rem; letter-spacing: 0.08em; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  /* Sections */
  .services, .pricing, .process, .contact { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }

  /* Hero text sizing */
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .stat-num { font-size: 1.8rem; }

  /* Hero CTA buttons */
  .hero-cta-group { gap: 0.75rem; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pricing-featured { transform: none; box-shadow: 0 0 30px rgba(0,229,200,0.08); }
  .pricing-featured:hover { transform: translateY(-3px); }

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

  /* Process */
  .process-steps { flex-direction: column; gap: 0; }
  .process-step { padding: 1.5rem 1rem 1.5rem 0; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .step-arrow { display: none; }
  .step-num { font-size: 3rem; }

  /* Turnaround banner */
  .turnaround-banner { flex-direction: column; gap: 1.5rem; padding: 1.5rem; }
  .turnaround-divider { width: 100%; height: 1px; }

  /* Add-ons */
  .addon-row { flex-direction: column; gap: 1rem; padding: 1.25rem; }
  .addon-divider { width: 100%; height: 1px; }

  /* Audience */
  .audience-row { grid-template-columns: 1fr; }

  /* Section headers */
  .section-title { font-size: clamp(1.9rem, 6vw, 2.5rem); }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }

  /* Disable custom cursor on touch */
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
}

/* Small phones */
@media (max-width: 480px) {
  .hero { padding: 6rem 1rem 3rem; }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-eyebrow { gap: 0.6rem; }
  .eyebrow-text { font-size: 0.62rem; letter-spacing: 0.15em; }
  .hero-cta-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  /* Email card on small phones */
  .email-input-row { flex-direction: column; }
  .email-signup-btn { width: 100%; justify-content: center; }
  .email-card-title { font-size: 1.1rem; }

  /* Pricing card monthly price */
  .monthly-price { font-size: 2.8rem; }

  /* Ownership block */
  .ownership-block { flex-direction: column; text-align: center; }

  /* Contact */
  .contact-inner { gap: 2rem; }
}