/* =========================================
   Whitman Digital — Services Site CSS
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Mono:wght@300;400&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

:root {
  --primary:     #080e1a;
  --primary-2:   #0d1729;
  --primary-3:   #111f35;
  --secondary:   #64ffda;
  --accent:      #0af5c4;
  --light:       #a8b8d8;
  --lighter:     #ccd6f6;
  --white:       #e8f1ff;
  --muted:       #4a5878;
  --card-bg:     rgba(255,255,255,0.03);
  --card-border: rgba(100,255,218,0.12);
  --glow:        rgba(100,255,218,0.18);
  --font-display: 'Syne', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --font-body:    'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Subtle grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 2.5rem;
  transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(8,14,26,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(100,255,218,0.08);
}

.navbar-container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--secondary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.navbar-logo span { color: var(--lighter); font-weight: 400; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.navbar-links a {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--light);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.navbar-links a:hover { color: var(--secondary); background: rgba(100,255,218,0.05); }
.navbar-links a.active { color: var(--secondary); }

.navbar-cta {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  margin-left: 0.75rem;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.navbar-cta:hover {
  background: var(--accent);
  box-shadow: 0 0 20px var(--glow);
  transform: translateY(-1px);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.4rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

/* =========================================
   UTILITIES
   ========================================= */
.highlight { color: var(--secondary); }
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 400;
  transition: all 0.25s;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
}

.btn-solid {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
}

.btn-solid:hover {
  background: var(--accent);
  box-shadow: 0 0 32px rgba(100,255,218,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1px solid rgba(100,255,218,0.5);
}

.btn-outline:hover {
  background: rgba(100,255,218,0.07);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--secondary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--lighter);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  word-break: break-word;
}

.section-sub {
  color: var(--light);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
}

/* fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* staggered children */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.stagger > *.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 9rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg-glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(100,255,218,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100,255,218,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,255,218,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(100,255,218,0.07);
  border: 1px solid rgba(100,255,218,0.2);
  color: var(--secondary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.hero-badge i { font-size: 0.65rem; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--lighter);
  margin-bottom: 1.5rem;
}

.hero h1 .line2 {
  color: var(--secondary);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--light);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 2.8rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(100,255,218,0.08);
}

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

.proof-item .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.proof-item .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(100,255,218,0.15);
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: 7rem 2rem;
  border-top: 1px solid rgba(100,255,218,0.07);
}

.services-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2.4rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(100,255,218,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 24px var(--glow);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(100,255,218,0.08);
  border: 1px solid rgba(100,255,218,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--secondary);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lighter);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--light);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--light);
  padding-left: 1.2rem;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  top: 0.05rem;
}

/* Also Available row */
.also-available {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(100,255,218,0.07);
}

.also-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 0.2rem;
}

.also-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--light);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
}

.also-cta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--secondary);
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}

.also-cta:hover { opacity: 0.75; }

/* =========================================
   PROCESS
   ========================================= */
.process {
  padding: 7rem 2rem;
  border-top: 1px solid rgba(100,255,218,0.07);
  background: linear-gradient(180deg, transparent, rgba(100,255,218,0.02) 50%, transparent);
}

.process-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100,255,218,0.2), transparent);
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.step-num {
  width: 56px; height: 56px;
  background: var(--primary-3);
  border: 2px solid rgba(100,255,218,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 400;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.process-step:hover .step-num {
  border-color: var(--secondary);
  box-shadow: 0 0 20px var(--glow);
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lighter);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--light);
  line-height: 1.65;
}

/* =========================================
   WORK / PORTFOLIO
   ========================================= */
.work {
  padding: 7rem 2rem;
  border-top: 1px solid rgba(100,255,218,0.07);
}

.work-header {
  text-align: center;
  margin-bottom: 4rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.work-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.work-card:hover {
  border-color: rgba(100,255,218,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.work-card-preview {
  height: 200px;
  background: var(--primary-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--muted);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--card-border);
}

.work-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card-preview .preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,14,26,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.work-card:hover .preview-overlay { opacity: 1; }

.work-card-body { padding: 1.8rem; }

.work-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lighter);
  margin-bottom: 0.4rem;
}

.work-card-body .work-type {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--secondary);
  margin-bottom: 0.9rem;
  opacity: 0.8;
}

.work-card-body p {
  font-size: 0.9rem;
  color: var(--light);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.work-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--secondary);
  background: rgba(100,255,218,0.07);
  border: 1px solid rgba(100,255,218,0.18);
  padding: 0.18rem 0.6rem;
  border-radius: 3px;
}

/* =========================================
   WHY ME
   ========================================= */
.why {
  padding: 7rem 2rem;
  border-top: 1px solid rgba(100,255,218,0.07);
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text .section-sub { margin-bottom: 2rem; }

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.6;
}

.why-list li i {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-stat {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.8rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.why-stat:hover {
  border-color: rgba(100,255,218,0.3);
  transform: translateY(-4px);
}

.why-stat .stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why-stat .stat-label {
  font-size: 0.85rem;
  color: var(--light);
  line-height: 1.4;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  padding: 7rem 2rem;
  border-top: 1px solid rgba(100,255,218,0.07);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -50%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(100,255,218,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section .section-heading { margin-bottom: 1rem; }
.cta-section .section-sub { margin: 0 auto 2.5rem; }

.cta-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.cta-contact-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.cta-contact-info a i { color: var(--secondary); }
.cta-contact-info a:hover { color: var(--secondary); }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  border-top: 1px solid rgba(100,255,218,0.08);
  padding: 2.5rem 2rem;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--secondary);
  text-decoration: none;
}

.footer-logo span { color: var(--lighter); font-weight: 400; }

.footer-social {
  display: flex;
  gap: 1.2rem;
}

.footer-social a {
  color: var(--muted);
  font-size: 1.2rem;
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover { color: var(--secondary); transform: translateY(-2px); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

/* =========================================
   CONTACT MODAL
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,14,26,0.88);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--primary-2);
  border: 1px solid rgba(100,255,218,0.2);
  border-radius: 14px;
  padding: 3rem;
  max-width: 540px;
  width: 100%;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.3s;
}

.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}

.modal-close:hover { color: var(--secondary); background: rgba(100,255,218,0.06); }

.modal-header { margin-bottom: 2rem; }

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--lighter);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.modal-header p { color: var(--light); font-size: 0.93rem; }

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #0d1729;
  border: 1px solid rgba(100,255,218,0.14);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  -webkit-text-fill-color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #0d1729 inset;
  -webkit-text-fill-color: var(--white);
  caret-color: var(--white);
}

.form-group select option { background: var(--primary-2); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(100,255,218,0.07);
}

.form-group textarea { height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* =========================================
   PAIN POINTS SECTION
   ========================================= */
.pain-points {
  padding: 7rem 2rem;
  border-top: 1px solid rgba(100,255,218,0.07);
  background: linear-gradient(180deg, transparent, rgba(100,255,218,0.015) 50%, transparent);
}

.pain-points-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pain-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.pain-card:hover {
  border-color: rgba(100,255,218,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.pain-icon {
  width: 44px; height: 44px;
  background: rgba(100,255,218,0.07);
  border: 1px solid rgba(100,255,218,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.pain-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lighter);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.pain-content p {
  font-size: 0.88rem;
  color: var(--light);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.pain-solution {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--secondary);
  letter-spacing: 0.04em;
}

.pain-solution i { font-size: 0.65rem; }

/* =========================================
   SERVICE CATEGORIES
   ========================================= */
.service-categories {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.cat-btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.55rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}

.cat-btn:hover {
  color: var(--secondary);
  border-color: rgba(100,255,218,0.3);
}

.cat-btn.active {
  background: rgba(100,255,218,0.1);
  color: var(--secondary);
  border-color: var(--secondary);
}

.service-group { display: none; }
.service-group.active { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem; }

/* =========================================
   TECH FOR HIRE BANNER
   ========================================= */
.hire-banner {
  background: linear-gradient(135deg, rgba(100,255,218,0.06), rgba(100,255,218,0.02));
  border: 1px solid rgba(100,255,218,0.2);
  border-radius: 14px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.hire-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent 60%);
}

.hire-banner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--lighter);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hire-banner p {
  color: var(--light);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
}

.hire-banner p strong {
  color: var(--secondary);
  font-weight: 500;
}

@media (max-width: 680px) {
  .hire-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hire-banner .btn { width: 100%; justify-content: center; }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .why-stats { grid-template-columns: 1fr; gap: 0.75rem; width: 100%; }
  .why-stat { padding: 1rem; min-width: 0; }
  .why-stat .stat-num { font-size: 1.4rem; }
  .why-stat .stat-label { font-size: 0.78rem; }
}

@media (max-width: 768px) {
  /* Nav */
  .navbar { padding: 1rem 1.25rem; }
  .navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 62px; left: 0;
    width: 100%;
    background: rgba(8,14,26,0.99);
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(100,255,218,0.1);
    gap: 0.3rem;
    z-index: 999;
  }
  .navbar-links.active { display: flex; }
  .navbar-toggle { display: block; }
  .navbar-cta {
    width: 100%;
    margin-left: 0;
    margin-top: 0.4rem;
    padding: 0.8rem;
    text-align: center;
  }

  /* Hero */
  .hero { padding: 5.5rem 1.25rem 3rem; text-align: center; }
  .hero h1 { font-size: 1.85rem; line-height: 1.15; margin-bottom: 1rem; }
  .hero h1 .line2 { display: inline; }
  .hero-badge { font-size: 0.72rem; padding: 0.35rem 0.85rem; margin-bottom: 1.2rem; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 2rem; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Social proof strip — 2x2 grid */
  .hero-social-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
  }
  .proof-divider { display: none; }
  .proof-item .num { font-size: 1.3rem; }
  .proof-item .label { font-size: 0.65rem; }

  /* Section headings */
  .section-heading { font-size: 1.6rem; }
  .section-sub { font-size: 0.92rem; }

  /* Section padding */
  .pain-points,
  .services,
  .process,
  .work,
  .why,
  .cta-section { padding: 4rem 1.25rem; }

  /* Pain points */
  .pain-points-header { margin-bottom: 2.5rem; }
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pain-card { padding: 1.25rem; gap: 0.9rem; }
  .pain-icon { width: 38px; height: 38px; font-size: 0.95rem; }
  .pain-content h4 { font-size: 0.92rem; }
  .pain-content p { font-size: 0.83rem; }

  /* Services */
  .services-header { margin-bottom: 2.5rem; }
  .service-categories { gap: 0.5rem; margin-bottom: 2rem; }
  .cat-btn { font-size: 0.75rem; padding: 0.45rem 0.9rem; }
  .service-group.active { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.5rem; }
  .service-icon { width: 42px; height: 42px; font-size: 1.1rem; margin-bottom: 1rem; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: 0.88rem; }
  .service-features li { font-size: 0.83rem; }

  /* Hire banner */
  .hire-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.75rem 1.25rem;
    margin-top: 2rem;
  }
  .hire-banner h3 { font-size: 1.1rem; }
  .hire-banner p { font-size: 0.88rem; }
  .hire-banner .btn { width: 100%; justify-content: center; }

  /* Process */
  .process-header { margin-bottom: 2.5rem; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }
  .process-steps::before { display: none; }
  .step-num { width: 46px; height: 46px; font-size: 0.9rem; }

  /* Work */
  .work-header { margin-bottom: 2.5rem; }
  .work-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Why */
  .why-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-stats { grid-template-columns: 1fr 1fr; gap: 1rem; width: 100%; }
  .why-stat { padding: 1.25rem; min-width: 0; overflow: hidden; }
  .why-stat .stat-num { font-size: 1.7rem; }
  .why-list li { font-size: 0.88rem; }

  /* CTA */
  .cta-section .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-container { flex-direction: column; text-align: center; gap: 1rem; }

  /* Modal */
  .modal-overlay { padding: 1rem; align-items: flex-end; }
  .modal {
    padding: 1.75rem 1.25rem;
    border-radius: 14px 14px 0 0;
    max-height: 90vh;
    overflow-y: auto;
  }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .modal-header h2 { font-size: 1.5rem; }
}

/* =========================================
   EXTRA SMALL PHONES (≤ 480px)
   ========================================= */
@media (max-width: 480px) {
  .hero { padding: 4.5rem 1rem 2.5rem; }
  .hero h1 { font-size: 1.65rem; }
  .hero-badge { font-size: 0.68rem; padding: 0.3rem 0.75rem; }
  .hero-sub { font-size: 0.88rem; }

  .section-heading { font-size: 1.4rem; }
  .container { padding: 0 1rem; }
  .pain-points, .services, .process, .work, .why, .cta-section { padding: 3rem 1rem; }

  .service-categories { gap: 0.35rem; }
  .cat-btn { font-size: 0.7rem; padding: 0.4rem 0.7rem; }

  .modal { padding: 1.5rem 1rem; }
  .modal-header h2 { font-size: 1.3rem; }

  /* Prevent iOS zoom-on-focus for inputs smaller than 16px */
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; }
}
