/* ==========================================================================
   HYPERLEADS — DESIGN SYSTEM (light agency direction)
   Headings/buttons: Oswald (uppercase) | Body: Inter | Spacing: 8px scale
   ========================================================================== */

:root {
  --bg: #faf8f5;
  --bg-alt: #f0ece3;
  --card: #ffffff;
  --ink: #16140f;
  --ink-soft: #5c5750;
  --primary: #e85d26;
  --primary-dark: #c44a1c;
  --line: rgba(22, 20, 15, 0.1);
  --line-strong: rgba(22, 20, 15, 0.18);
  --success: #1e7d4f;

  /* Dedicated dark panel tokens, used only for the AI code-visual card —
     an intentional contrast moment against the light page */
  --code-bg: #16140f;
  --code-line: rgba(255, 255, 255, 0.1);
  --code-ink-soft: #948f86;

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

  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px; --s5: 40px;
  --s6: 48px; --s8: 64px; --s10: 80px; --s12: 96px; --s15: 120px; --s16: 128px;

  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, button {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; color: var(--ink-soft); font-weight: 400; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s3); }

.section-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: var(--s2);
}
.section-title { font-size: clamp(2.2rem, 5.4vw, 3.6rem); margin-bottom: var(--s2); letter-spacing: -0.02em; }
.section-desc { font-size: 1.02rem; color: var(--ink-soft); max-width: 560px; line-height: 1.8; }

/* ================= BUTTONS ================= */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: var(--s2) var(--s5);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 93, 38, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(22, 20, 15, 0.35);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); border-color: var(--ink); }
.btn-block { width: 100%; justify-content: center; }
.btn-primary:focus-visible, .btn-ghost:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ================= NAVIGATION ================= */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: var(--s3) 0;
  background: transparent;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(20px);
  padding: var(--s2) 0;
  box-shadow: 0 4px 30px rgba(22, 20, 15, 0.08);
  border-bottom: 1px solid var(--line);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--ink);
}
.logo span { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: var(--s4); position: relative; }
.nav-links > li { position: relative; }
.nav-links a:not(.nav-cta) {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--bg-alt);
  border: 1px solid var(--line-strong);
  min-width: 220px;
  padding: var(--s1);
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a { display: block; padding: var(--s1) var(--s2); font-size: 0.8rem; letter-spacing: 0.5px; }
.dropdown a:hover { background: rgba(232,93,38,0.08); color: var(--primary); }

.nav-cta {
  font-family: var(--font-display);
  background: var(--primary);
  color: #fff !important;
  padding: 10px 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 0.82rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--primary-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}
.hamburger span { width: 26px; height: 2px; background: var(--ink); transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: var(--s15) var(--s3) var(--s10);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,93,38,0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,93,38,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 980px; }
.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: var(--s3);
  padding: 8px 20px;
  border: 1px solid rgba(232,93,38,0.35);
  background: rgba(232,93,38,0.08);
}
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); letter-spacing: -0.02em; margin-bottom: var(--s3); }
.hero h1 .highlight { color: var(--primary); }
.hero-sub {
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto var(--s5);
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: var(--s2); justify-content: center; flex-wrap: wrap; margin-bottom: var(--s8); }
.hero-stats {
  display: flex; justify-content: center; gap: var(--s8);
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-stat h3 { font-size: 2.6rem; color: var(--primary); letter-spacing: 0; }
.hero-stat p { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--ink-soft); margin-top: 4px; }

/* ================= MARQUEE ================= */
.marquee-section {
  padding: var(--s3) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-alt);
}
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee-item {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--ink-soft);
  white-space: nowrap;
  padding: 0 var(--s5);
  display: flex; align-items: center; gap: var(--s5);
}
.marquee-item .dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ================= SECTION SCAFFOLD ================= */
.section { padding: var(--s15) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 620px; margin-bottom: var(--s6); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: var(--s6); flex-wrap: wrap; gap: var(--s3);
}

/* ================= FADE UP ================= */
.fade-up { opacity: 0; transform: translateY(36px); transition: all 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ================= LIVE LEAD FEED (signature widget) ================= */
.lead-feed-card {
  background: var(--card);
  border: 1px solid var(--line-strong);
  padding: var(--s4);
  max-width: 380px;
  margin: 0 auto var(--s8);
  text-align: left;
  position: relative;
}
.lead-feed-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--s3); padding-bottom: var(--s3);
  border-bottom: 1px solid var(--line);
}
.lead-feed-head strong {
  font-family: var(--font-display); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 2px; font-weight: 600; color: var(--ink);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  display: inline-block; margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5); animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.lead-feed-list { display: flex; flex-direction: column; gap: var(--s2); min-height: 210px; }
.lead-item {
  display: flex; align-items: center; gap: var(--s2);
  padding: var(--s2); background: var(--bg-alt);
  opacity: 0; transform: translateY(6px); animation: leadIn 0.5s ease forwards;
}
@keyframes leadIn { to { opacity: 1; transform: translateY(0); } }
.lead-item .icon {
  width: 34px; height: 34px; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0; font-size: 1rem;
}
.lead-item .details { font-size: 0.82rem; line-height: 1.35; text-align: left; }
.lead-item .details strong { display: block; font-family: var(--font-body); font-weight: 600; text-transform: none; color: var(--ink); letter-spacing: 0; }
.lead-item .time { color: var(--ink-soft); font-size: 0.75rem; }

/* ================= PROBLEM ================= */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.problem-card { background: var(--card); border: 1px solid var(--line); padding: var(--s5) var(--s4); }
.problem-card i { color: var(--primary); font-size: 1.6rem; margin-bottom: var(--s3); display: block; }
.problem-card h3 { text-transform: none; font-size: 1.2rem; letter-spacing: 0; margin-bottom: var(--s1); }
.problem-card p { font-size: 0.92rem; }

/* ================= SERVICE CARDS (lead verticals) ================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: var(--s5) var(--s4);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: block;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--primary); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); border-color: rgba(232,93,38,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.35); }
.service-card .icon { font-size: 1.9rem; margin-bottom: var(--s3); color: var(--primary); }
.service-card h3 { font-size: 1.25rem; letter-spacing: 0.5px; margin-bottom: var(--s2); }
.service-card p { font-size: 0.88rem; line-height: 1.7; margin-bottom: var(--s3); }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--primary); font-weight: 500; transition: gap 0.3s ease;
}
.service-card:hover .learn-more { gap: 14px; }

/* ================= GROWTH / INDUSTRIES CHIP GRID ================= */
.growth-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s2); margin-top: var(--s6); }
.growth-card {
  background: var(--card); border: 1px solid var(--line);
  padding: var(--s4) var(--s2); text-align: center;
  position: relative; overflow: hidden; transition: all 0.4s ease;
}
.growth-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0;
  background: linear-gradient(to top, rgba(232,93,38,0.12), transparent);
  transition: height 0.4s ease;
}
.growth-card:hover::after { height: 100%; }
.growth-card:hover { border-color: var(--primary); transform: translateY(-6px); }
.growth-card i { font-size: 1.7rem; margin-bottom: var(--s2); color: var(--primary); position: relative; z-index: 1; }
.growth-card h4 { font-size: 0.82rem; letter-spacing: 1.5px; position: relative; z-index: 1; }

/* ================= PROCESS ================= */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: var(--s6); }
.step { padding: var(--s5) var(--s4); text-align: center; border-right: 1px solid var(--line); }
.step:last-child { border-right: none; }
.step-number { font-size: 3.6rem; color: rgba(232,93,38,0.18); margin-bottom: var(--s2); }
.step h4 { font-size: 1.05rem; letter-spacing: 1.5px; margin-bottom: var(--s1); }
.step p { font-size: 0.86rem; }

/* ================= STATS BANNER ================= */
.stats-banner { background: var(--primary); padding: var(--s6) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4); text-align: center; }
.stat-item h3 { font-size: 2.6rem; color: #fff; letter-spacing: -0.02em; }
.stat-item p { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* ================= PRICING ================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.pricing-card { background: var(--card); border: 1px solid var(--line); padding: var(--s5) var(--s4); display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--primary); position: relative; box-shadow: 0 20px 44px rgba(232,93,38,0.15); }
.pricing-card.featured::before {
  content: 'MOST FLEXIBLE'; position: absolute; top: -12px; left: var(--s3);
  background: var(--primary); color: #fff; font-family: var(--font-display);
  font-size: 0.65rem; letter-spacing: 1.5px; padding: 4px 10px;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: var(--s1); }
.pricing-card .tagline { font-size: 0.88rem; margin-bottom: var(--s4); font-weight: 400; }
.pricing-card ul { display: flex; flex-direction: column; gap: var(--s2); flex-grow: 1; margin-bottom: var(--s4); }
.pricing-card li { font-size: 0.88rem; display: flex; gap: 8px; color: var(--ink-soft); }
.pricing-card li i { color: var(--success); margin-top: 3px; font-size: 0.78rem; }

/* ================= COMPARISON TABLE ================= */
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--card); min-width: 620px; }
.compare-table th, .compare-table td { padding: var(--s3); text-align: left; border-bottom: 1px solid var(--line); font-size: 0.9rem; font-weight: 400; }
.compare-table thead th { font-family: var(--font-display); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1.5px; color: var(--ink-soft); }
.compare-table td:nth-child(2), .compare-table th:nth-child(2) { background: rgba(232,93,38,0.06); font-weight: 600; color: var(--ink); }
.compare-table i.yes { color: var(--success); }
.compare-table i.no { color: #b23b3b; }
.compare-table tr:last-child td { border-bottom: none; }

/* ================= AI AUTOMATION SPOTLIGHT ================= */
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s10); align-items: center; }
.ai-features { display: flex; flex-direction: column; gap: var(--s3); margin-top: var(--s4); }
.ai-feature { display: flex; gap: var(--s2); align-items: flex-start; }
.ai-feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(232,93,38,0.1); border: 1px solid rgba(232,93,38,0.25);
  display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.05rem;
}
.ai-feature h4 { font-size: 0.98rem; letter-spacing: 0.5px; margin-bottom: 4px; }
.ai-feature p { font-size: 0.85rem; }

.ai-visual { background: var(--code-bg); border: 1px solid var(--code-line); padding: var(--s5); box-shadow: 0 24px 50px rgba(22,20,15,0.14); }
.ai-visual-header { display: flex; gap: 8px; margin-bottom: var(--s4); }
.ai-visual-dot { width: 12px; height: 12px; border-radius: 50%; }
.code-block { font-family: 'Courier New', monospace; font-size: 0.82rem; line-height: 2; color: #e8e6e1; }
.code-comment { color: var(--code-ink-soft); }
.code-key { color: var(--primary); }
.code-value { color: #7ec8e3; }
.code-string { color: #a8d8a8; }

/* ================= TESTIMONIALS ================= */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.testimonial-card { background: var(--card); border: 1px solid var(--line); padding: var(--s4); display: flex; flex-direction: column; gap: var(--s3); position: relative; }
.quote-mark { font-family: var(--font-display); font-size: 2.6rem; color: rgba(232,93,38,0.35); line-height: 1; }
.testimonial-card p.quote { color: var(--ink); font-size: 0.95rem; line-height: 1.65; font-weight: 400; }
.testimonial-author { display: flex; align-items: center; gap: var(--s2); margin-top: auto; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); color: var(--primary); font-size: 0.85rem; flex-shrink: 0;
}
.testimonial-name { font-size: 0.9rem; font-family: var(--font-body); font-weight: 600; }
.testimonial-role { font-size: 0.78rem; color: var(--ink-soft); }

/* ================= CONTACT / LEAD FORM ================= */
.contact-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--s10); align-items: start; }
.contact-benefits ul { display: flex; flex-direction: column; gap: var(--s3); margin-top: var(--s4); }
.contact-benefits li { display: flex; gap: var(--s2); font-size: 0.96rem; color: var(--ink-soft); }
.contact-benefits li i { color: var(--primary); margin-top: 4px; }
.contact-social-proof {
  margin-top: var(--s5); padding: var(--s3); background: var(--bg-alt);
  border-left: 2px solid var(--primary); font-size: 0.86rem; display: flex; gap: var(--s2); align-items: center; color: var(--ink-soft);
}
.contact-social-proof i { color: var(--primary); }

.form-card { background: var(--card); border: 1px solid var(--line-strong); padding: var(--s5); }
.form-step { display: none; flex-direction: column; gap: var(--s3); }
.form-step.active { display: flex; }
.form-field label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; letter-spacing: 0.3px; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; padding: var(--s2);
  border: 1.5px solid var(--line-strong); background: var(--bg); color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--primary); outline: none; }
.form-progress { display: flex; gap: 6px; margin-bottom: var(--s2); }
.form-progress span { height: 3px; flex: 1; background: var(--line-strong); overflow: hidden; }
.form-progress span.done { background: var(--primary); }
.form-consent { display: flex; gap: 8px; align-items: flex-start; font-size: 0.8rem; color: var(--ink-soft); }
.form-consent input { margin-top: 3px; }
.form-consent a { color: var(--primary); text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success { display: none; text-align: center; padding: var(--s6) 0; }
.form-success.active { display: block; }
.form-success i { font-size: 2.4rem; color: var(--success); margin-bottom: var(--s2); }
.form-success h3 { text-transform: none; letter-spacing: 0; }
.form-success p { margin-top: var(--s1); }

/* ================= CTA BAND ================= */
.cta-section { padding: var(--s15) 0; text-align: center; }
.cta-section .section-desc { margin-left: auto; margin-right: auto; margin-bottom: var(--s5); }

/* ================= FOOTER ================= */
.footer { padding: var(--s10) 0 var(--s4); border-top: 1px solid var(--line); background: var(--bg-alt); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s5); margin-bottom: var(--s6); }
.footer-brand p { margin-top: var(--s2); font-size: 0.86rem; max-width: 32ch; line-height: 1.7; }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 3px; margin-bottom: var(--s3); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--s2); }
.footer-col ul a { font-size: 0.85rem; color: var(--ink-soft); font-weight: 400; transition: color 0.3s ease; }
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: var(--s3); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s2); }
.footer-bottom p { font-size: 0.8rem; }
.footer-socials { display: flex; gap: var(--s2); }
.footer-socials a {
  width: 38px; height: 38px; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; font-size: 0.82rem; color: var(--ink-soft);
  transition: all 0.3s ease;
}
.footer-socials a:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .problem-grid, .services-grid, .pricing-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .growth-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap, .ai-grid { grid-template-columns: 1fr; gap: var(--s6); }
}

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

  .mobile-menu {
    position: fixed; inset: 0; background: var(--bg); z-index: 900;
    padding: calc(var(--s8) + var(--s4)) var(--s4) var(--s6);
    display: flex; flex-direction: column; gap: var(--s1);
    transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1.5px; font-size: 1.2rem; padding: var(--s2) 0; border-bottom: 1px solid var(--line); }
  .mobile-menu .btn-primary { margin-top: var(--s4); }
  .mobile-sub { padding-left: var(--s3); display: flex; flex-direction: column; }
  .mobile-sub a { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 0.95rem; border-bottom: none; padding: 6px 0; color: var(--ink-soft); }

  .problem-grid, .services-grid, .pricing-grid, .testimonial-grid, .growth-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: var(--s5); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .section { padding: var(--s10) 0; }
  .hero-buttons .btn-primary, .hero-buttons .btn-ghost { width: 100%; justify-content: center; }
}
