/* ── VARIABLES ── */
:root {
  --bg-primary: #f7f8fa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f4f8;
  --bg-alt: #eef1f6;
  --accent: #47b85a;
  --accent-dark: #3a9c4b;
  --accent-dim: rgba(71, 184, 90, 0.1);
  --accent-glow: rgba(71, 184, 90, 0.15);
  --navy: #1a2b4a;
  --navy-light: #243656;
  --text-primary: #1a2b4a;
  --text-secondary: #4d5e78;
  --text-muted: #8694a9;
  --border: rgba(26, 43, 74, 0.08);
  --border-accent: rgba(71, 184, 90, 0.3);
  --shadow-sm: 0 1px 3px rgba(26,43,74,0.06);
  --shadow-md: 0 4px 20px rgba(26,43,74,0.07);
  --shadow-lg: 0 12px 40px rgba(26,43,74,0.1);
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── SUBTLE GRID ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(26,43,74,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,43,74,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none; z-index: 0;
}

.glow-orb {
  position: fixed; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.25; pointer-events: none; z-index: 0; filter: blur(120px);
  top: -300px; right: -200px;
}
.glow-orb-2 {
  position: fixed; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 100, 220, 0.1) 0%, transparent 70%);
  opacity: 0.2; pointer-events: none; z-index: 0; filter: blur(120px);
  bottom: -200px; left: -150px;
}

section, header, footer, nav { position: relative; z-index: 1; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes terminalBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.animate { opacity: 0; animation: fadeUp 0.8s var(--ease) forwards; }
.animate-d1 { animation-delay: 0.1s; }
.animate-d2 { animation-delay: 0.2s; }
.animate-d3 { animation-delay: 0.3s; }
.animate-d4 { animation-delay: 0.4s; }
.animate-d5 { animation-delay: 0.5s; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  background: rgba(247, 248, 250, 0.88);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s var(--ease);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { height: 48px; transition: opacity 0.2s; }
.nav-logo:hover { opacity: 0.8; }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links .current-menu-item a,
.nav-links .current_page_item a { color: var(--accent-dark); }
.nav-cta {
  background: var(--accent) !important; color: #fff !important;
  padding: 8px 20px; border-radius: 6px; font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
  color: #fff !important;
}
.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--text-primary); font-size: 1.5rem; cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: auto; display: flex; align-items: center;
  padding: 130px 0 70px;
}
.hero-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.hero-content { max-width: 720px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--accent-dark); background: var(--accent-dim);
  padding: 6px 14px; border-radius: 4px; margin-bottom: 28px;
  border: 1px solid rgba(71, 184, 90, 0.15);
  letter-spacing: 0.5px;
}
.hero-tag::before {
  content: '>';
  animation: terminalBlink 1.2s step-end infinite;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -1.2px; margin-bottom: 20px;
  color: var(--navy);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #2ea043);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 540px; margin-bottom: 30px; line-height: 1.65;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  font-family: var(--font-display);
  transition: transform 0.2s var(--ease), box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
  color: #fff;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-primary);
  padding: 14px 28px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 1px solid rgba(26,43,74,0.15);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--text-muted); background: rgba(26,43,74,0.03); }

/* ── HERO TERMINAL ── */
.hero-terminal {
  width: 380px; max-width: 100%;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
@media (max-width: 1099px) {
  .hero-terminal { width: 100%; max-width: 480px; margin: 40px auto 0; }
}
@media (max-width: 480px) {
  .terminal-body { font-size: 0.7rem; padding: 16px; line-height: 1.8; }
}
.terminal-bar {
  display: flex; gap: 7px; padding: 14px 16px;
  background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.terminal-dot { width: 11px; height: 11px; border-radius: 50%; }
.terminal-dot:nth-child(1) { background: #ff5f57; }
.terminal-dot:nth-child(2) { background: #febc2e; }
.terminal-dot:nth-child(3) { background: #28c840; }
.terminal-body {
  padding: 20px; font-family: var(--font-mono);
  font-size: 0.78rem; line-height: 1.9; color: rgba(255,255,255,0.6);
}
.terminal-body .cmd { color: #5cdb6f; }
.terminal-body .flag { color: #7aa2f7; }
.terminal-body .val { color: #e0af68; }
.terminal-body .comment { color: rgba(255,255,255,0.3); font-style: italic; }

/* ── SECTIONS ── */
.section { padding: 110px 0; }
.section-alt { background: var(--bg-secondary); }
.section-label {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--accent-dark); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700; letter-spacing: -0.8px;
  margin-bottom: 16px; line-height: 1.2;
  color: var(--navy);
}
.section-desc {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 600px; margin-bottom: 56px;
}

/* ── PAGE HERO (sub pages) ── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label { margin-bottom: 14px; }
.page-hero .section-title { margin-bottom: 12px; }
.page-hero .section-desc { margin-bottom: 0; }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 30px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.3rem;
}
.service-card h3 {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 10px; letter-spacing: -0.3px;
  color: var(--navy);
}
.service-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; }

/* ── WHY SECTION ── */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-item {
  padding: 32px 28px;
  border-left: 2px solid var(--border);
  transition: border-color 0.3s;
}
.why-item:hover { border-color: var(--accent); }
.why-number {
  font-family: var(--font-mono); font-size: 2rem;
  font-weight: 700; color: var(--accent); margin-bottom: 8px;
  opacity: 0.6;
}
.why-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.why-item p { color: var(--text-secondary); font-size: 0.9rem; }

/* ── TRACK RECORD ── */
.track-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.track-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.track-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-md); }
.track-stat {
  font-family: var(--font-mono); font-size: 2.2rem;
  font-weight: 700; color: var(--accent-dark);
  margin-bottom: 4px;
}
.track-label {
  font-size: 0.82rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px; font-weight: 500;
}
.track-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 28px; text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.pricing-card:hover { border-color: var(--border-accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pricing-card.featured { border-color: var(--border-accent); }
.pricing-type {
  font-size: 0.82rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 600; margin-bottom: 10px;
}
.pricing-rate {
  font-family: var(--font-mono); font-size: 2.4rem;
  font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.pricing-unit { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 18px; }
.pricing-desc { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }

/* ── CTA ── */
.cta-section { padding: 100px 0; }
.cta-box {
  background: var(--navy);
  border-radius: 20px; padding: 72px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(71,184,90,0.2) 0%, transparent 70%);
  opacity: 0.6; filter: blur(60px); pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; margin-bottom: 16px;
  letter-spacing: -0.5px; position: relative; color: #fff;
}
.cta-box p {
  color: rgba(255,255,255,0.65); max-width: 500px;
  margin: 0 auto 32px; font-size: 1.05rem; position: relative;
}
.cta-box .btn-primary { position: relative; }

/* ── FOOTER ── */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { height: 40px; opacity: 0.5; margin-bottom: 8px; }
.footer-text { color: var(--text-muted); font-size: 0.85rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-dark); }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.contact-info h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-info p { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.7; }
.contact-detail {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; color: var(--text-secondary);
  font-size: 0.95rem;
}
.contact-detail strong { color: var(--navy); min-width: 60px; }
.contact-form label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--bg-primary); color: var(--text-primary);
  font-family: var(--font-display); font-size: 0.92rem;
  margin-bottom: 20px; transition: border-color 0.2s;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-secondary);
    padding: 20px 28px; gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .hero { padding: 120px 0 80px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-inner { flex-direction: column; }
  .section { padding: 80px 0; }
  .services-grid, .track-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-box { padding: 48px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .page-hero { padding: 130px 0 60px; }
}

/* ── HERO ANIMATED BACKGROUND ── */
.hero-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.hero-content, .hero-terminal { position: relative; z-index: 2; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  position: relative;
}
.stat-block { text-align: center; }
.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.stat-num .plus { font-size: 0.7em; opacity: 0.8; }
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ── PROCESS TIMELINE ── */
.process-section { padding: 110px 0; background: var(--bg-secondary); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 100%);
  opacity: 0.25;
}
.timeline-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.timeline-dot {
  width: 64px; height: 64px;
  background: var(--bg-secondary);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s var(--ease);
}
.timeline-step:hover .timeline-dot {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.timeline-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
@media (max-width: 768px) {
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .timeline::before { display: none; }
}

/* ── FOUNDER SECTION ── */
.founder-section { padding: 110px 0; }
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.founder-photo {
  width: 280px; height: 280px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-dim), var(--bg-card));
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  color: var(--accent);
  position: relative;
  overflow: hidden;
}
.founder-photo::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(71,184,90,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71,184,90,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
.founder-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.founder-content .quote {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  font-style: italic;
}
.founder-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.founder-sig {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-dark);
  margin-top: 20px;
}
@media (max-width: 768px) {
  .founder-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .founder-photo { width: 200px; height: 200px; margin: 0 auto; }
  .founder-content .quote { text-align: left; }
}

/* ── TECH STACK MARQUEE ── */
.tech-strip {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.tech-strip-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}
.tech-marquee {
  display: flex;
  gap: 60px;
  animation: scroll-tech 30s linear infinite;
  white-space: nowrap;
}
.tech-marquee span {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
  transition: color 0.3s;
}
.tech-marquee span:hover { color: var(--accent-dark); }
@keyframes scroll-tech {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO TRUST PILLS ── */
.hero-trust {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 540px;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 30px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s var(--ease);
}
.trust-pill:hover {
  border-color: var(--border-accent);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.trust-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}


/* ── MOBILE POLISH OVERRIDES ── */
@media (max-width: 768px) {
  .services-compact { margin-top: 24px !important; }
  .why-mobile { margin-top: 24px !important; }
  .service-row { padding: 16px 18px !important; }
  .service-row-content h4 { font-size: 0.92rem !important; }
  .service-row-content p { font-size: 0.76rem !important; color: var(--text-muted) !important; }
  .service-row-arrow { font-size: 1.4rem !important; font-weight: 300 !important; }
  .why-mobile-card { padding: 20px 22px !important; }
  .why-mobile-card h4 { font-size: 1.02rem !important; }
  .why-mobile-card p { font-size: 0.88rem !important; padding-left: 44px; margin-top: -4px; }
  .why-mobile-num { box-shadow: 0 2px 8px rgba(71,184,90,0.3); }
}

/* ── MOBILE-ONLY ALT SECTIONS ── */
.mobile-only { display: none !important; }
.desktop-only { display: block !important; }

@media (max-width: 768px) {
  .mobile-only { display: block !important; }
  .desktop-only { display: none !important; }

  .services-compact {
    display: flex; flex-direction: column; gap: 12px; margin-top: 24px;
  }
  .service-row {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 16px 18px;
    display: flex; align-items: center; gap: 14px;
    transition: border-color 0.2s, transform 0.15s ease;
  }
  .service-row:active { transform: scale(0.98); border-color: var(--border-accent); }
  .service-row-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--accent-dim);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; flex-shrink: 0;
  }
  .service-row-content { flex: 1; min-width: 0; }
  .service-row-content h4 {
    font-size: 0.95rem; font-weight: 700;
    color: var(--navy); margin: 0 0 2px 0; line-height: 1.3;
  }
  .service-row-content p {
    font-size: 0.78rem; color: var(--text-muted);
    line-height: 1.4; margin: 0;
  }
  .service-row-arrow {
    color: var(--accent); font-size: 1.5rem; font-weight: 300;
    flex-shrink: 0; opacity: 0.7;
  }

  .why-mobile {
    display: flex; flex-direction: column; gap: 14px; margin-top: 24px;
  }
  .why-mobile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 20px 22px;
  }
  .why-mobile-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 10px;
  }
  .why-mobile-num {
    width: 34px; height: 34px;
    background: var(--accent); color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.78rem; font-weight: 700; flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(71,184,90,0.3);
  }
  .why-mobile-card h4 {
    font-size: 1.02rem; font-weight: 700;
    color: var(--navy); margin: 0;
  }
  .why-mobile-card p {
    font-size: 0.88rem; color: var(--text-secondary);
    line-height: 1.55; margin: 0; padding-left: 48px;
  }
}

/* Hide hero terminal on mobile - it's now shown in the How We Work section instead */
@media (max-width: 768px) {
  .hide-on-mobile { display: none !important; }
}
