/* ScaleForge Partners — Revenue Growth Partner Design System */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-glow: rgba(37, 99, 235, 0.65);
  
  --emerald: #10b981;
  --emerald-light: #34d399;
  --emerald-glow: rgba(16, 185, 129, 0.45);
  
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --indigo: #6366f1;
  --indigo-light: #818cf8;
  --rose: #f43f5e;

  --bg-dark: #070b14;
  --bg-surface: #0e1424;
  --bg-card: rgba(14, 20, 36, 0.78);
  --bg-card-hover: rgba(22, 31, 56, 0.95);
  
  --border-subtle: rgba(255, 255, 255, 0.09);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(59, 130, 246, 0.4);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 8%, rgba(37, 99, 235, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 85% 25%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 15% 45%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, .font-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-dark {
  background: rgba(11, 16, 30, 0.65);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  max-width: 820px;
  margin: 0 auto 52px auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 12px;
}

.section-eyebrow.emerald { color: #34d399; }
.section-eyebrow.amber { color: #fbbf24; }
.section-eyebrow.indigo { color: #818cf8; }
.section-eyebrow.rose { color: #fb7185; }

.section-title {
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Text Gradients */
.hero-highlight-gradient {
  background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 40%, #38bdf8 70%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-marketing {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-sales {
  background: linear-gradient(135deg, #34d399 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border: 1px solid rgba(96, 165, 250, 0.4);
  box-shadow: 0 0 25px var(--primary-glow);
}

.btn-primary:hover {
  background: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(37, 99, 235, 0.85);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-emerald {
  background: #059669;
  color: #ffffff;
  border: 1px solid rgba(52, 211, 153, 0.4);
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.45);
}

.btn-emerald:hover {
  background: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(16, 185, 129, 0.7);
  color: #ffffff;
}

.btn-outline-blue {
  background: rgba(37, 99, 235, 0.12);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.btn-outline-blue:hover {
  background: rgba(37, 99, 235, 0.25);
  border-color: #60a5fa;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.25);
}

.glass-card-featured {
  background: linear-gradient(180deg, rgba(30, 58, 138, 0.35) 0%, rgba(14, 20, 36, 0.95) 100%);
  border: 1px solid rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 45px -10px rgba(37, 99, 235, 0.35);
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 20, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 80px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-svg {
  height: 42px;
  width: auto;
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta-btn {
  padding: 9px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  background: #2563eb;
  color: #ffffff;
  border: 1px solid rgba(96, 165, 250, 0.4);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
}

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
}

.mobile-menu {
  display: none;
  background: #070b14;
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.mobile-menu-links a {
  font-size: 1rem;
  font-weight: 600;
  color: #cbd5e1;
  display: block;
  padding: 6px 0;
}

.mobile-menu-links a.active, .mobile-menu-links a:hover {
  color: #60a5fa;
}

/* ================= HERO SECTION ================= */
.hero {
  padding: 100px 0 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-layer,
.stage-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-img,
.stage-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  filter: brightness(1.06) contrast(1.06) saturate(1.2);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(14, 20, 36, 0.72) 0%, rgba(30, 27, 75, 0.58) 50%, rgba(7, 11, 20, 0.84) 100%),
    radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.22) 0%, transparent 70%);
}

.stage-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(180deg, rgba(10, 15, 30, 0.65) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(7, 11, 20, 0.88) 100%),
    radial-gradient(circle at 50% 25%, rgba(37, 99, 235, 0.16) 0%, transparent 65%);
}

.hero-content,
.stage-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  background: rgba(30, 58, 138, 0.65);
  border: 1px solid rgba(96, 165, 250, 0.45);
  color: #eff6ff;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 12px var(--emerald);
}

.hero-title {
  font-size: clamp(2.8rem, 5.8vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 1020px;
  margin: 0 auto 22px auto;
  color: #ffffff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #e2e8f0;
  max-width: 860px;
  margin: 0 auto 32px auto;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.95);
}

/* Visual Pipeline Flow Strip */
.flow-pipeline-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 34px auto;
  max-width: 920px;
}

.flow-node {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(14, 20, 36, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.flow-node:hover {
  border-color: #60a5fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.flow-node.marketing { border-color: rgba(56, 189, 248, 0.45); color: #7dd3fc; }
.flow-node.leads { border-color: rgba(129, 140, 248, 0.45); color: #a5b4fc; }
.flow-node.sales { border-color: rgba(52, 211, 153, 0.45); color: #6ee7b7; }
.flow-node.revenue { 
  border-color: rgba(251, 191, 36, 0.6); 
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(14, 20, 36, 0.9) 100%);
  color: #fde68a; 
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.3);
}

.flow-arrow {
  color: #60a5fa;
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.hero-supporting-statement {
  font-size: 0.92rem;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 34px;
}

/* Stats in Hero */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 940px;
  margin: 0 auto;
  padding: 24px 44px;
  background: rgba(14, 20, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #60a5fa;
}

.stat-num.emerald { color: #34d399; }
.stat-num.gold { color: #fbbf24; }

.stat-label {
  font-size: 0.88rem;
  color: #cbd5e1;
  font-weight: 600;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
}

/* ================= 4-PROBLEM SECTION ================= */
.problem-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.problem-card-item {
  background: rgba(14, 20, 36, 0.75);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, transparent);
  opacity: 0.6;
}

.problem-card-item:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 16px 36px -10px rgba(239, 68, 68, 0.2);
}

.problem-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.problem-card-title {
  font-size: 1.22rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.problem-card-text {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ================= 4-STEP SOLUTION JOURNEY ================= */
.solution-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.solution-step-card {
  background: rgba(14, 20, 36, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.solution-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.3);
}

.solution-step-card.active-journey {
  border-color: rgba(59, 130, 246, 0.6);
  background: linear-gradient(180deg, rgba(30, 58, 138, 0.25) 0%, rgba(14, 20, 36, 0.95) 100%);
}

.step-badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-step-title {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.solution-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-indicator-tag {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  font-weight: 700;
  color: #34d399;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================= TWO CORE SERVICES CARDS ================= */
.two-core-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.core-service-box {
  background: rgba(14, 20, 36, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.core-service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0.8;
}

.core-service-box.marketing-box::before {
  background: linear-gradient(90deg, #38bdf8, #818cf8);
}

.core-service-box.sales-box::before {
  background: linear-gradient(90deg, #34d399, #fbbf24);
}

.core-service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -15px rgba(0, 0, 0, 0.6);
}

.core-service-box.marketing-box:hover {
  border-color: rgba(56, 189, 248, 0.5);
}

.core-service-box.sales-box:hover {
  border-color: rgba(52, 211, 153, 0.5);
}

.service-box-header {
  margin-bottom: 24px;
}

.service-box-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.service-box-tag.blue {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.service-box-tag.emerald {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.service-box-title {
  font-size: 1.85rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-box-copy {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.service-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px 0;
}

.service-skill-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.service-skill-tag:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  color: #ffffff;
}

/* ================= WHERE WE HELP (4 CARDS) ================= */
.where-help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.where-help-card {
  background: rgba(14, 20, 36, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.where-help-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(22, 31, 56, 0.85);
}

.where-help-q {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 12px;
}

.where-help-ans {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ================= RESULTS / TESTIMONIALS SECTION ================= */
.results-featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.results-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
}

.testimonial-case-card {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.22) 0%, rgba(14, 20, 36, 0.92) 100%);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 45px -15px rgba(37, 99, 235, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.testimonial-case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.6);
}

.testimonial-case-card.emerald-accent {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.16) 0%, rgba(14, 20, 36, 0.92) 100%);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 45px -15px rgba(16, 185, 129, 0.2);
}

.testimonial-case-card.emerald-accent:hover {
  border-color: rgba(52, 211, 153, 0.6);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.case-link-btn {
  font-size: 0.86rem;
  font-weight: 700;
  color: #60a5fa;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.case-link-btn:hover {
  color: #93c5fd;
  transform: translateX(4px);
}

.case-link-btn.emerald {
  color: #34d399;
}

.case-link-btn.emerald:hover {
  color: #6ee7b7;
}

.results-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1fr;
  gap: 16px;
  align-items: stretch;
}

.results-cta-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16) 0%, rgba(14, 20, 36, 0.9) 100%);
  border: 1px solid rgba(59, 130, 246, 0.45);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.results-cta-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.results-cta-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.case-metric-highlight {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 16px;
  line-height: 1.2;
}

.case-flow-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
  padding: 16px;
  background: rgba(11, 16, 30, 0.7);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.case-flow-col strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 4px;
}

.case-flow-col p {
  font-size: 0.84rem;
  color: #e2e8f0;
  line-height: 1.4;
}

.testimonial-quote-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #e2e8f0;
  font-style: italic;
  margin: 16px 0;
}

.testimonial-author {
  font-size: 0.88rem;
  font-weight: 700;
  color: #60a5fa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.results-side-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-result-box {
  background: rgba(14, 20, 36, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all 0.2s ease;
}

.mini-result-box:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(4px);
}

.mini-result-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #34d399;
  margin-bottom: 4px;
}

.mini-result-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.mini-result-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ================= 5-STEP HOW IT WORKS ================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.25s ease;
}

.process-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.4);
}

.process-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.4);
  margin-bottom: 12px;
}

.process-card.active-step {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(30, 58, 138, 0.22);
}

.process-card.active-step .process-num {
  color: #60a5fa;
}

.process-title {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.process-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.process-footer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  font-weight: 600;
  color: #60a5fa;
}

/* ================= ABOUT / FOUNDER SECTION ================= */
.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.founder-photo-frame {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 4px;
  background: linear-gradient(135deg, #3b82f6, #10b981, #f59e0b);
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
}

.founder-quote {
  background: rgba(37, 99, 235, 0.1);
  border-left: 4px solid #3b82f6;
  padding: 18px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: #cbd5e1;
  margin: 20px 0;
  font-size: 0.95rem;
}

/* ================= SUBPAGE HERO & LAYOUTS ================= */
.subpage-hero {
  padding: 80px 0 60px 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(14, 20, 36, 0.6) 0%, rgba(7, 11, 20, 0.9) 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.subpage-breadcrumb {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.subpage-breadcrumb a {
  color: #60a5fa;
}

.subpage-hero-title {
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.subpage-hero-desc {
  font-size: 1.12rem;
  color: #cbd5e1;
  max-width: 820px;
  margin: 0 auto 28px auto;
  line-height: 1.7;
}

.features-detailed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.feature-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 16px 36px -10px rgba(37, 99, 235, 0.25);
}

.feature-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.feature-detail-title {
  font-size: 1.28rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-detail-text {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ================= FINAL HOMEPAGE CTA ================= */
.final-cta-banner {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(14, 20, 36, 0.95) 50%, rgba(16, 185, 129, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.45);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px -15px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

.final-cta-title {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.final-cta-sub {
  font-size: 1.08rem;
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

.final-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ================= CONTACT FORM ================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  transition: border-color 0.2s ease;
}

.contact-info-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
}

.contact-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  background: rgba(11, 16, 30, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

select.form-control option {
  background: #0e1424;
  color: #f8fafc;
  padding: 8px;
}

/* ================= FLOATING WHATSAPP BUTTON ================= */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.floating-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65);
}

.whatsapp-svg-icon {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

/* ================= MODALS ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #0e1424;
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

/* ================= FOOTER ================= */
.footer {
  background: #04070e;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1080px) {
  .hero-title { font-size: 3.2rem; }
  .problem-grid-4, .solution-journey-grid, .where-help-grid { grid-template-columns: repeat(2, 1fr); }
  .two-core-services-grid { grid-template-columns: 1fr; gap: 24px; }
  .features-detailed-grid { grid-template-columns: repeat(2, 1fr); }
  .results-featured-grid { grid-template-columns: 1fr; }
  .results-dual-grid { grid-template-columns: 1fr; }
  .results-summary-strip { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; border-radius: var(--radius-lg); }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta-btn { padding: 8px 14px; font-size: 0.85rem; }
  .hamburger { display: block; }
  .hero { padding: 80px 0 70px 0; min-height: auto; }
  .hero-title { font-size: 2.35rem; }
  .hero-subtitle { font-size: 1.02rem; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { padding: 20px; flex-direction: column; gap: 16px; border-radius: var(--radius-lg); }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 1.95rem; }
  .problem-grid-4, .solution-journey-grid, .where-help-grid, .process-grid, .features-detailed-grid { grid-template-columns: 1fr; }
  .case-flow-strip { grid-template-columns: 1fr; }
  .results-summary-strip { grid-template-columns: 1fr; }
  .final-cta-btns { flex-direction: column; }
  .final-cta-btns .btn { width: 100%; }
}

