:root {
  --bg: #ffffff;
  --bg-soft: #f8f9fc;
  --bg-card: #ffffff;
  --bg-dark: #0d0d0d;
  --accent: #4f6ef7;
  --accent-light: #e8edff;
  --accent-2: #7c5cfc;
  --green: #22c55e;
  --green-light: #e7faf0;
  --orange: #f59e0b;
  --orange-light: #fff7e6;
  --red: #ef4444;
  --red-light: #fef2f2;
  --text: #111111;
  --text-secondary: #555555;
  --text-muted: #999999;
  --border: #e8e8e8;
  --border-light: #f0f0f0;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.section-title {
  font-family: 'Urbanist', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.btn-dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(15,52,96,0.3);
}
.btn-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn-dark:hover::before {
  left: 100%;
}
.btn-dark:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(15,52,96,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--text);
  background: var(--bg-soft);
  transform: translateY(-1px);
}
.btn-arrow::after { content: ' →'; transition: transform 0.3s; display: inline-block; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* CTA Book a Call - primary action */
.btn-cta {
  background: linear-gradient(135deg, #4f6ef7 0%, #7c5cfc 50%, #a855f7 100%);
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
  color: #fff;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(79,110,247,0.35), 0 0 0 0 rgba(79,110,247,0.4);
}
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}
.btn-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(79,110,247,0.45), 0 0 0 4px rgba(79,110,247,0.12);
}
.btn-cta:active {
  transform: translateY(0) scale(1);
}
.btn-cta .btn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(79,110,247,0.4);
  animation: btn-ring-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer {
  0% { left: -100%; }
  60% { left: 100%; }
  100% { left: 100%; }
}
@keyframes btn-ring-pulse {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  75%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.25); }
}

/* Nav CTA */
.nav-cta .btn-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}
.nav-cta .btn-cta .btn-pulse { display: none; }

/* Large CTA for final section */
.btn-cta-lg {
  padding: 18px 48px;
  font-size: 1.1rem;
  box-shadow: 0 6px 28px rgba(79,110,247,0.4), 0 0 0 0 rgba(79,110,247,0.4);
}
.btn-cta-lg:hover {
  box-shadow: 0 14px 48px rgba(79,110,247,0.5), 0 0 0 6px rgba(79,110,247,0.1);
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 12px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.logo-img-sm {
  height: 50px;
}
/* Horizontal logo variant - wider but shorter */
.logo-hori {
  height: 50px;
}
.logo-hori.logo-img-sm {
  height: 42px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ===== MOBILE NAV TOGGLE (Hamburger) ===== */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px 9px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-left: 10px;
  position: relative;
  z-index: 102;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at 30% 40%, #c7d8ff 0%, #e0e7ff 20%, #f0e6ff 40%, #fce7f3 60%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
  filter: blur(60px);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-light);
  border-radius: 60px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Urbanist', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text);
}
.hero h1 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.hero-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(79,110,247,0.2);
}
.hero-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.hc-blue { background: #eef2ff; }
.hc-green { background: #e7faf0; }
.hc-orange { background: #fff7e6; }
.hc-purple { background: #f3edff; }
.hero-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.hero-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== PROBLEMS ===== */
.problems {
  padding: 120px 0 100px;
  background: var(--bg-soft);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.problem-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(239,68,68,0.2);
}
.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.problem-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== EXPECTATIONS ===== */
.expectations { padding: 120px 0 100px; }
.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.expect-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.expect-card:hover {
  box-shadow: 0 8px 32px rgba(79,110,247,0.1);
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(79,110,247,0.25);
}
.expect-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.expect-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.expect-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== SOLUTION ===== */
.solution {
  padding: 120px 0 100px;
  background: var(--bg-soft);
}
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sol-features { display: flex; flex-direction: column; gap: 8px; }
.sol-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.sol-feat:hover { background: rgba(79,110,247,0.04); }
.sol-feat-dot {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sol-feat-dot svg { width: 24px; height: 24px; }
.sfd-calls { background: #eef0ff; }
.sfd-calls svg { color: #4f6ef7; }
.sfd-leads { background: #fff3e6; }
.sfd-leads svg { color: #e67e22; }
.sfd-book { background: #e8faf0; }
.sfd-book svg { color: #10b981; }
.sfd-247 { background: #f0e6ff; }
.sfd-247 svg { color: #8b5cf6; }
.sol-feat h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.sol-feat p { color: var(--text-secondary); font-size: 0.88rem; }
.sol-visual {
  background: linear-gradient(135deg, #f0f4ff, #faf5ff, #fff0f5);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
}
.sol-visual-emoji { font-size: 56px; margin-bottom: 20px; }
.sol-visual h3 {
  font-family: 'Urbanist', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.sol-visual h3 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.sol-visual p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

/* ===== INDUSTRIES ===== */
.industries { padding: 120px 0 100px; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.industry-card:hover {
  box-shadow: 0 8px 32px rgba(79,110,247,0.1);
  transform: translateY(-6px) scale(1.03);
  border-color: var(--accent);
}
.ind-icon { font-size: 32px; margin-bottom: 12px; }
.industry-card h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.industry-card p { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; }

/* ===== STATS ===== */
.stats-section {
  padding: 72px 0;
  background: var(--bg-dark);
  color: #fff;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-number {
  font-family: 'Urbanist', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
.stat-desc { font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.stat-sub { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ===== REPOSITIONING ===== */
.repositioning {
  padding: 100px 0;
  background: var(--bg-soft);
}
.repo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.repo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.25s;
}
.repo-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(79,110,247,0.2);
}
.repo-emoji { font-size: 28px; margin-bottom: 16px; }
.repo-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.repo-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== TURNKEY ===== */
.turnkey { padding: 100px 0; }
.turnkey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.turnkey-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
}
.turnkey-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(79,110,247,0.2);
}
.tk-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}
.tk-1 { background: #eef2ff; }
.tk-2 { background: #f3edff; }
.tk-3 { background: #e7faf0; }
.tk-4 { background: #fff7e6; }
.tk-5 { background: #fef2f2; }
.turnkey-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.turnkey-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ===== PRICING / REVENUE ===== */
.revenue {
  padding: 100px 0;
  background: var(--bg-soft);
}
.revenue-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.pricing-card h3 {
  font-family: 'Urbanist', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 28px;
  text-align: center;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.pricing-row:last-child { border: none; }
.pr-label { font-size: 0.92rem; color: var(--text-secondary); }
.pr-value { font-weight: 700; font-size: 1rem; }
.pr-highlight {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

.scale-list { display: flex; flex-direction: column; gap: 12px; }
.scale-title {
  font-family: 'Urbanist', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.scale-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.scale-item:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.scale-clients { font-size: 0.92rem; color: var(--text-secondary); }
.scale-amount { font-weight: 700; color: var(--accent); }
.scale-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 4px;
}
.scale-note p { font-size: 0.88rem; color: var(--text-secondary); }

/* ===== GROWTH ===== */
.growth { padding: 100px 0; }
.growth-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.growth-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.2;
}
.growth-step { text-align: center; padding: 0 16px; position: relative; }
.step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(79,110,247,0.12);
}
.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.growth-step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.growth-step p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--bg);
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent-light); border-color: var(--accent); color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
}

/* ===== FINAL CTA ===== */
.final-cta { padding: 60px 0 100px; }
.cta-banner {
  background: linear-gradient(135deg, #e8edff 0%, #faf5ff 30%, #fce7f3 60%, #e0f2fe 100%);
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Urbanist', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}
.cta-banner h2 em { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; color: var(--accent); }
.cta-banner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ===== FOOTER ===== */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p { color: var(--text-muted); font-size: 0.82rem; }
footer .logo { font-size: 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .turnkey-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .solution-grid, .revenue-wrapper { grid-template-columns: 1fr; }
  .problem-grid, .repo-grid { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr 1fr; }
  .growth-timeline { grid-template-columns: 1fr 1fr; gap: 28px; }
  .growth-timeline::before { display: none; }
  .stats-row { grid-template-columns: 1fr; gap: 28px; }

  /* Show hamburger, push CTA to right */
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: auto; }

  /* Convert nav-links into a slide-down dropdown panel */
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links a {
    padding: 16px 24px;
    font-size: 0.98rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a.nav-active { color: var(--accent); }
  nav.menu-open .nav-links { max-height: 500px; }

  .industry-grid { grid-template-columns: 1fr 1fr; }
  .turnkey-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .growth-timeline { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .turnkey-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 56px 24px; }
  .pricing-card { padding: 28px 20px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  /* Slightly tighter CTA + logo on tiny screens so hamburger fits comfortably */
  .nav-cta .btn-cta { padding: 9px 16px; font-size: 0.78rem; }
  .logo-img { height: 48px; }
  .nav-cta .btn { width: auto; }
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
