/* Jewell Strategies — Global Styles */

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

:root {
  --navy: #1B3A6B;
  --blue: #4B9CD3;
  --charcoal: #2C2C2C;
  --offwhite: #F5F5F0;
  --white: #ffffff;
  --border: #E0DED9;
  --text-muted: #6B7280;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 6px rgba(0,0,0,0.07), 0 12px 40px rgba(0,0,0,0.10);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 600; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { color: var(--charcoal); }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: #16305a; transform: translateY(-2px); box-shadow: var(--shadow-lg); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); text-decoration: none; transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--offwhite); transform: translateY(-2px); text-decoration: none; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
nav .btn-primary {
  background: var(--blue);
  color: var(--white);
}
nav .btn-primary:hover { background: var(--navy); transform: translateY(-1px); }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 36px; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: var(--charcoal);
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 6px;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); background: var(--offwhite); text-decoration: none; }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-links .btn { padding: 8px 18px; font-size: 13.5px; margin-left: 6px; white-space: nowrap; }

/* ======== HERO ======== */
.hero {
  background: linear-gradient(135deg, #0d2147 0%, #1B3A6B 45%, #1e4a85 100%);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(75,156,211,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,156,211,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(75,156,211,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(75,156,211,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border: 1px solid rgba(75,156,211,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring::before {
  content: '';
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(75,156,211,0.08);
  border-radius: 50%;
}
.hero-ring::after {
  content: '';
  position: absolute;
  inset: 96px;
  border: 1px solid rgba(75,156,211,0.05);
  border-radius: 50%;
}

.hero .container { position: relative; z-index: 1; width: 100%; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 580px; margin-bottom: 36px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  padding: 5px 12px;
  background: rgba(75,156,211,0.12);
  border: 1px solid rgba(75,156,211,0.25);
  border-radius: 100px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 24px; }

/* Section labels */
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

/* ======== SERVICES GRID ======== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.services-grid.grid-2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .services-grid.grid-2col {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: var(--offwhite);
  border-radius: 14px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(75,156,211,0.3); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(27,58,107,0.2);
}
.service-icon svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Results / highlight section */
.highlight {
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-top: 48px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 6px; }

/* Case study card */
.case-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 48px;
  transition: box-shadow 0.2s;
}
.case-card:hover { box-shadow: var(--shadow-lg); }
.case-card-header {
  background: var(--navy);
  padding: 28px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.case-card-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(75,156,211,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.case-card-header .label { color: var(--blue); }
.case-card-header h3 { color: var(--white); font-size: 1.35rem; margin-top: 8px; position: relative; z-index: 1; }
.case-card-body { padding: 36px; }
.case-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.case-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.case-col p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.case-results {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-result-item {
  background: var(--offwhite);
  border-radius: 8px;
  padding: 16px 20px;
}
.case-result-item .num { font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.case-result-item .desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, #0d2147 0%, #1B3A6B 60%, #1e4a85 100%);
  color: var(--white);
  text-align: center;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(75,156,211,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,156,211,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.0625rem; max-width: 480px; margin: 0 auto 36px; }

/* Footer */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 48px;
}
.footer-brand-col {}
.footer-brand { display: inline-flex; align-items: center; text-decoration: none; }
.footer-brand:hover { text-decoration: none; opacity: 0.85; }
.footer-logo { height: 52px; display: block; }
.footer-tagline {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 220px;
}
.footer-links-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-link-group {}
.footer-link-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}
.footer-link-group a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  font-weight: 400;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.footer-link-group a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.38); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); font-size: 12px; text-decoration: none; transition: color 0.15s; }
.footer-bottom a:hover { color: var(--white); }

/* Legacy single-line footer fallback */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer p { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 400; letter-spacing: 0.01em; }
footer a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.15s; }
footer a:hover { color: var(--white); }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, #0d2147 0%, #1B3A6B 60%, #1e4a85 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(75,156,211,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,156,211,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .hero-eyebrow { color: var(--blue); }
.page-hero h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.6rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.0625rem; max-width: 520px; }

/* Work page */
.work-grid { margin-top: 28px; display: flex; flex-direction: column; gap: 40px; }

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}
.contact-info h3 { color: var(--navy); margin-bottom: 12px; }
.contact-info p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.contact-detail svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 1.75; flex-shrink: 0; }
.pricing-note {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 28px;
}
.pricing-note p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.pricing-note strong { color: var(--navy); }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group label span { color: var(--text-muted); font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(75,156,211,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; cursor: pointer; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-disclaimer { font-size: 12px; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* Divider */
.divider { height: 1px; background: var(--border); margin: 0; }

/* Homepage highlights */
.highlights-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.highlight-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background 0.15s;
}
.highlight-item:first-child { border-top: 1px solid var(--border); }
.highlight-icon {
  width: 42px;
  height: 42px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s;
}
.highlight-item:hover .highlight-icon {
  background: var(--navy);
  border-color: var(--navy);
}
.highlight-item:hover .highlight-icon svg { stroke: white; }
.highlight-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--navy); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s; }
.highlight-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.highlight-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  font-weight: 300;
}
.lightbox-close:hover { opacity: 1; }
.screenshot-hint { font-size: 11px; color: var(--text-muted); margin-top: 8px; font-style: italic; }

/* ======== SCROLL ANIMATIONS ======== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ======== PROCESS STEPS ======== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4px;
  margin-top: 48px;
  position: relative;
}
.process-connector {
  display: none;
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--blue) 20%, var(--blue) 80%, transparent 100%);
  opacity: 0.2;
}
@media (min-width: 768px) { .process-connector { display: block; } }

.process-step {
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(75,156,211,0.3);
}
.process-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 3px solid var(--blue);
  box-shadow: 0 0 0 6px rgba(75,156,211,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.process-step:hover .process-step-num {
  transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(75,156,211,0.12);
}
.process-step h3 { font-size: 16px; margin-bottom: 10px; color: var(--navy); }
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ======== WHO I WORK WITH ======== */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.client-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
}
.client-card:hover {
  border-color: rgba(75,156,211,0.35);
  background: white;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.client-card-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.client-card-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
}
.client-card-text h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.client-card-text p { font-size: 12px; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ======== FAQ ======== */
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  gap: 20px;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
}
.faq-item.open .faq-icon svg { stroke: white; transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
}

/* ======== ABOUT PAGE ======== */
.about-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 64px;
}
.about-photo-col {
  position: sticky;
  top: 90px;
}
.about-photo {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 3 / 4;
}
.about-photo-caption {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge-unc {
  background: #7BAFD4;
  color: white;
}
.badge-disc {
  background: rgba(27,58,107,0.08);
  color: var(--navy);
  border: 1px solid rgba(27,58,107,0.15);
}
.badge img { height: 14px; width: auto; }

.about-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 16px;
}
.about-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-content p:last-child { margin-bottom: 0; }

.about-section {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.about-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}
.testimonial-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 36px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 72px;
  line-height: 1;
  color: var(--blue);
  opacity: 0.18;
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  padding-top: 8px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
}
.testimonial-divider {
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 4px;
}

/* Approach cards */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.approach-item {
  padding: 24px 28px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
}
.approach-item:hover {
  border-color: rgba(75,156,211,0.3);
  background: white;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.approach-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.approach-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.intro-band {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.intro-stat { display: flex; flex-direction: column; gap: 2px; }
.intro-stat-num {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.intro-stat-label { font-size: 12px; color: var(--text-muted); }

/* ======== GRID BG ======== */
.grid-bg {
  background-image:
    linear-gradient(rgba(27,58,107,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,58,107,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ======== WORK PAGE ======== */
.case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  margin: 4px 4px 0 0;
}
.deliverable-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.deliverable-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.deliverable-row:last-child { border-bottom: none; }
.deliverable-num { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 0.05em; padding-top: 2px; }
.deliverable-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.deliverable-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.before-after { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.before-after-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.screenshot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.screenshot-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--offwhite); }
.screenshot-card-top { padding: 5px 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.screenshot-card-top.before { background: #fee2e2; color: #991b1b; border-bottom: 1px solid #fca5a5; }
.screenshot-card-top.after  { background: #dbeafe; color: #1e40af; border-bottom: 1px solid #93c5fd; }
.screenshot-card img { width: 100%; display: block; height: 150px; object-fit: cover; object-position: top; cursor: pointer; transition: opacity 0.15s; }
.screenshot-card img:hover { opacity: 0.85; }
.screenshot-card-label { padding: 5px 10px; font-size: 11px; color: var(--text-muted); background: var(--offwhite); border-top: 1px solid var(--border); }
.testimonial-block { margin-top: 28px; background: #fffbeb; border: 1px dashed #d97706; border-radius: 8px; padding: 20px 24px; font-size: 13px; color: #92400e; }
.testimonial-block strong { display: block; margin-bottom: 6px; color: #78350f; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.metrics-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
.metric-item { text-align: center; padding: 16px 12px; border-right: 1px solid var(--border); }
.metric-item:last-child { border-right: none; }
.metric-num { font-size: 1.75rem; font-weight: 700; color: var(--navy); line-height: 1; }
.metric-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* Responsive */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-col { position: static; max-width: 300px; margin: 0 auto; }
  .approach-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .highlight-item { grid-template-columns: 1fr; gap: 12px; }
  .highlight-icon { display: none; }
  .case-cols { grid-template-columns: 1fr; gap: 20px; }
  .case-results { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-col { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 28px 20px; }
  .metrics-row { grid-template-columns: 1fr 1fr; }
  .metric-item { border-right: none; border-bottom: 1px solid var(--border); }
  .metric-item:last-child { border-bottom: none; }
  .screenshot-grid { grid-template-columns: 1fr 1fr; }
  .deliverable-row { grid-template-columns: 1fr; gap: 4px; }
  .deliverable-num { font-size: 10px; }
  .process-steps { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .testimonial-card { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .nav-links .btn { padding: 8px 14px; font-size: 13px; }
  .case-results { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .nav-inner { padding: 0 12px; }
  .nav-logo img { height: 28px; }
  .nav-links { gap: 2px; }
  .nav-links a { padding: 6px 7px; font-size: 12px; }
  .nav-links .btn { padding: 7px 11px; font-size: 12px; }
}

/* ======== SCROLL ANIMATIONS ======== */
@keyframes orb-float-a {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-28px) scale(1.04); }
}
@keyframes orb-float-b {
  0%, 100% { transform: translateY(0px) scale(1); }
  40% { transform: translateY(-16px) scale(0.97); }
  70% { transform: translateY(-22px) scale(1.02); }
}
@keyframes orb-float-c {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(calc(-50% - 18px)) rotate(8deg); }
}
@keyframes drift-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(18px); }
}

.hero-glow-1 { animation: orb-float-a 14s ease-in-out infinite; }
.hero-glow-2 { animation: orb-float-b 10s ease-in-out infinite; }
.hero-ring  { animation: orb-float-c 18s ease-in-out infinite; }

.hero-float-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

/* Parallax targets driven by JS */
[data-parallax] { will-change: transform; }
