/* ==========================================================================
   APEXLOCAL STYLESHEET
   Replicated from AgenAI Dark Aesthetic with Precision Layout & Typography
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Accent Colors (Matched to Momentum Marketing Logo) */
  --color-primary: #e11d2d;         /* Momentum Crimson */
  --color-primary-hover: #f32b3b;
  --color-primary-glow: rgba(225, 29, 45, 0.35);
  
  /* Dark Neutral Spectrum */
  --bg-page: #08080a;              /* Ultra-Deep Obsidian Canvas */
  --bg-card: rgba(18, 18, 22, 0.75); /* Translucent Card */
  --bg-card-hover: rgba(24, 24, 30, 0.9);
  --bg-card-subtle: #16161b;
  
  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.18);
  --border-active: rgba(225, 29, 45, 0.55);

  /* Typography Colors */
  --text-primary: #ffffff;         /* Pure crisp white */
  --text-secondary: #a3a3b0;       /* Refined cool ash */
  --text-muted: #737380;           /* Subtle slate caption */
  --text-inverse: #08080a;

  /* Glassmorphic & Depth Effects */
  --glass-bg: rgba(16, 16, 20, 0.65);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-blur: blur(20px);
  --glass-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.8), 0 0 1px 1px rgba(255, 255, 255, 0.05) inset;

  /* Spacing Scale */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Premium Typography Stack */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* --------------------------------------------------------------------------
   02. RESET & GLOBAL RESETS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-page);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(225, 29, 45, 0.15) 0%, rgba(8, 8, 10, 0) 65%),
    radial-gradient(circle at 80% 35%, rgba(225, 29, 45, 0.06) 0%, rgba(8, 8, 10, 0) 50%),
    radial-gradient(circle at 20% 70%, rgba(225, 29, 45, 0.08) 0%, rgba(8, 8, 10, 0) 55%);
  background-attachment: fixed;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.text-center { text-align: center; }
.w-full { width: 100%; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }

/* --------------------------------------------------------------------------
   03. TYPOGRAPHY & GRADIENTS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, #cbd5e1 70%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   04. UI COMPONENTS: BUTTONS, BADGES, GLASS PANELS
   -------------------------------------------------------------------------- */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253, 58, 37, 0.4);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-color: var(--border-highlight);
}

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

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

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

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
}

/* --------------------------------------------------------------------------
   05. FLOATING GLASS NAVBAR
   -------------------------------------------------------------------------- */
.navbar-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.navbar {
  width: 100%;
  max-width: 1060px;
  padding: 12px 16px 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 14, 18, 0.85);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

.footer-logo {
  height: 52px;
  max-width: 320px;
  border-radius: 10px;
}

.logo-symbol {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e11d2d, #9b1c0e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.logo-text {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.logo-text strong {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-drawer {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 20px;
  right: 20px;
  background: rgba(18, 18, 22, 0.98);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--glass-shadow);
}

.mobile-drawer.is-open {
  display: flex;
}

.mobile-nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}

/* --------------------------------------------------------------------------
   06. SECTION 02: HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 170px 0 90px;
  text-align: center;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1020px;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.12;
  margin-bottom: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  line-height: 1.65;
  max-width: 840px;
  margin-bottom: 44px;
  color: var(--text-secondary);
}

.hero-subtitle strong {
  color: var(--text-primary);
  font-weight: 700;
}

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

.trust-ribbon {
  display: inline-flex;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.trust-badge-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.925rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
  justify-content: center;
}

.star-rating {
  color: #fbbf24;
  letter-spacing: 3px;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   07. SECTION 03: QUOTE & MISSION STRIP
   -------------------------------------------------------------------------- */
.quote-strip {
  padding: 50px 0 70px;
}

.quote-card {
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 36px;
  background: linear-gradient(180deg, rgba(26, 26, 32, 0.8) 0%, rgba(14, 14, 18, 0.95) 100%);
  border: 1px solid var(--border-highlight);
  box-shadow: var(--glass-shadow);
}

.quote-content {
  position: relative;
  padding-left: 52px;
}

.quote-icon {
  position: absolute;
  left: 0;
  top: -12px;
  font-size: 4.5rem;
  color: var(--color-primary);
  font-family: serif;
  line-height: 1;
  opacity: 0.9;
}

.quote-text {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.45;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  font-family: var(--font-display);
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.author-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
}

.author-title {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.trade-ticker {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.trade-tag {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  font-size: 0.825rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   08. SECTION 04: CORE PILLARS GRID
   -------------------------------------------------------------------------- */
.pillars-section {
  padding: 90px 0;
}

.section-header {
  max-width: 840px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.section-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.pillar-card {
  padding: 42px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s ease;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.7);
}

.pillar-number {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(225, 29, 45, 0.12);
  border: 1px solid rgba(225, 29, 45, 0.25);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillar-title {
  font-size: 1.55rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.pillar-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.pillar-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-bullets li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-bullets li::before {
  content: '→';
  color: var(--color-primary);
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   09. SECTION 05: FEATURED CASE STUDIES / PROOF
   -------------------------------------------------------------------------- */
.proof-section {
  padding: 90px 0;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0) 0%, rgba(20, 20, 26, 0.6) 50%, rgba(9, 9, 11, 0) 100%);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto;
}

@media (max-width: 840px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

.case-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 1px 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 45, 0.45);
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.95), 0 0 30px rgba(225, 29, 45, 0.2);
}

.case-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.case-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-bg-img {
  transform: scale(1.05);
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.4) 0%, rgba(12, 12, 16, 0.75) 45%, rgba(8, 8, 12, 0.97) 100%);
}

.case-inner {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.case-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.industry-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(225, 29, 45, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(225, 29, 45, 0.4);
}

.case-location {
  font-size: 0.85rem;
  color: #f4f4f5;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.case-hero-stat {
  margin: 8px 0;
}

.stat-big {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.stat-sub {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: #10b981;
  margin-top: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.case-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.case-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d4d4d8;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.c-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #e4e4e7;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   10. SECTION 06: THE 3-STEP PLAN
   -------------------------------------------------------------------------- */
.plan-section {
  padding: 80px 0;
}

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

.process-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.step-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.step-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.step-title {
  font-size: 1.25rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex-grow: 1;
}

.step-tag-pill {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

/* --------------------------------------------------------------------------
   11. SECTION 07: WHY CHOOSE US / BENEFITS
   -------------------------------------------------------------------------- */
.benefits-section {
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
}

.benefit-index {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.benefit-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   12. SECTION 08: CAPABILITIES GRID
   -------------------------------------------------------------------------- */
.features-section {
  padding: 80px 0;
}

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

.feature-item {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(253, 58, 37, 0.15);
  color: var(--color-primary);
  font-weight: bold;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-name {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   13. SECTION 09: LIVE LEAD PREVIEW & DELIVERY
   -------------------------------------------------------------------------- */
.integrations-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.5) 0%, rgba(24, 24, 30, 0.9) 50%, rgba(14, 14, 18, 0.5) 100%);
  position: relative;
}

.mobile-phone-container {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-phone-frame {
  width: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: #ffffff;
  border: 7px solid #1f1f26;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.mobile-phone-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 80px -15px rgba(225, 29, 45, 0.3), 0 0 0 1px rgba(225, 29, 45, 0.4);
}

.mobile-gmail-img {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-caption-bar {
  width: 100%;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.terminal-delivery-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

.pulse-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 12px #10b981;
  flex-shrink: 0;
}

.terminal-crm-sync {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.terminal-crm-sync {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   14. SECTION 10: TEAM SECTION
   -------------------------------------------------------------------------- */
.team-section {
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

.team-card {
  padding: 48px 32px 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid var(--border-highlight);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-primary);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.04);
  border-color: var(--color-primary);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-name {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.team-role {
  font-size: 0.925rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.team-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   15. SECTION 11: METRICS & TESTIMONIAL CAROUSEL
   -------------------------------------------------------------------------- */
.metrics-section {
  padding: 90px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-box {
  padding: 38px 28px;
  text-align: center;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.featured-testimonial {
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(26, 26, 32, 0.85) 0%, rgba(14, 14, 18, 0.98) 100%);
  border: 1px solid var(--border-highlight);
  box-shadow: var(--glass-shadow);
  text-align: center;
}

.testimonial-stars {
  color: #fbbf24;
  letter-spacing: 4px;
  font-size: 1.35rem;
  margin-bottom: 24px;
}

.testimonial-body {
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto 36px;
  font-weight: 500;
  font-style: italic;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.author-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.author-details strong {
  font-size: 1rem;
  color: var(--text-primary);
}

.author-details span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.verified-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* --------------------------------------------------------------------------
   16. SECTION 12: PRICING & ENGAGEMENT TIERS
   -------------------------------------------------------------------------- */
.pricing-section {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}

.pricing-card {
  padding: 44px 38px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
}

.pricing-card.best-deal-card {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, rgba(32, 22, 24, 0.9) 0%, rgba(18, 18, 22, 0.98) 100%);
  box-shadow: 0 15px 45px -10px var(--color-primary-glow);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px var(--color-primary-glow);
}

.popular-ribbon.dark-ribbon {
  background: #27272a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.plan-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.plan-name {
  font-size: 1.85rem;
  margin-bottom: 12px;
}

.price-box {
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-strike-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.save-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-amount {
  font-family: var(--font-mono);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}

.price-period {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.roi-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-top: 6px;
  width: fit-content;
}

.plan-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.plan-divider {
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 24px;
}

.included-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex-grow: 1;
  text-align: left;
}

.plan-features li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: block;
  text-align: left;
}

.plan-features li strong {
  color: var(--text-primary);
  font-weight: 700;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 800;
}

.value-free {
  font-size: 0.725rem;
  color: var(--color-primary);
  font-weight: 700;
  background: rgba(225, 29, 45, 0.12);
  border: 1px solid rgba(225, 29, 45, 0.25);
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 6px;
  display: inline-block;
  vertical-align: baseline;
}

/* --------------------------------------------------------------------------
   17. SECTION 13: FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 80px 0;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-question {
  width: 100%;
  padding: 26px 32px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-chevron {
  font-size: 1.6rem;
  color: var(--color-primary);
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item.is-active .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 32px;
}

.faq-item.is-active .faq-answer {
  max-height: 400px;
  padding-bottom: 28px;
}

.faq-answer p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   18. SECTION 14: CONTACT & INTAKE FORM
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 90px 0 130px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
  padding: 60px 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(24, 24, 30, 0.85) 0%, rgba(14, 14, 18, 0.98) 100%);
  border: 1px solid var(--border-highlight);
  box-shadow: var(--glass-shadow);
}

.contact-title {
  font-size: 2.35rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.c-icon {
  font-size: 1.5rem;
}

.contact-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.contact-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form-card {
  background: rgba(0, 0, 0, 0.3);
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background-color: var(--bg-card);
  color: var(--text-primary);
}

.form-success-state {
  text-align: center;
  padding: 32px 16px;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid #10b981;
  color: #10b981;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success-state h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.form-success-state p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 60px 0 36px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(9, 9, 11, 0.98);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 380px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.footer-bottom-spacer {
  display: block;
}

.copyright {
  font-size: 0.825rem;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

.back-to-top {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  text-align: right;
  justify-self: end;
  white-space: nowrap;
  display: inline-block;
  transition: color 0.2s ease;
}

.back-to-top:hover {
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.75rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .case-studies-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; padding: 36px; }
}

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-toggle { display: flex; }
  .navbar-wrapper { top: 12px; padding: 0 12px; }
  .navbar { padding: 8px 12px 8px 16px; }
  .brand-logo-img { height: 32px; max-width: 190px; }
  
  .hero-section { padding: 130px 0 60px; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { width: 100%; }
  
  .quote-card { padding: 28px 20px; }
  .quote-content { padding-left: 0; }
  .quote-icon { display: none; }
  .quote-text { font-size: 1.25rem; }
  
  .benefits-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .footer-right { align-items: flex-start; }
}
