/* ═══════════════════════════════════════════════════════════════
   StarhAcademy — Global Stylesheet
   Brand: Navy #0B2545 · Gold #0EA5E9 · White #FFFFFF
═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #0B2545;
  --navy-mid:    #1E50C8;
  --navy-light:  #EBF0F8;
  --teal:        #0EA5E9;
  --sky:          #38BDF8;
  --sky-pale:     #E0F5FF;
  --white:       #FFFFFF;
  --off-white:   #F8F9FA;
  --light-gray:  #E2E8F0;
  --text-dark:   #1A1A2E;
  --text-mid:    #4A5568;
  --text-light:  #9AA5B4;
  --gold:        #C9912B;
  --gold-dark:   #A67420;
  --gold-pale:   #fef7ec;
  --gold-light:  #f0d9a8;
  --gradient:    linear-gradient(135deg, #0B2545 0%, #1D4E89 100%);
  --shadow-sm:   0 1px 3px rgba(11,37,69,0.08), 0 1px 2px rgba(11,37,69,0.04);
  --shadow-md:   0 4px 16px rgba(11,37,69,0.10), 0 2px 6px rgba(11,37,69,0.06);
  --shadow-lg:   0 20px 40px rgba(11,37,69,0.14), 0 8px 16px rgba(11,37,69,0.08);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  all 0.25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

p { line-height: 1.7; color: var(--text-mid); }

a { text-decoration: none; color: inherit; transition: var(--transition); }

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

ul { list-style: none; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sky-pale);
  color: var(--navy);
  border: 1px solid var(--sky);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.tag--navy {
  background: var(--navy-light);
  color: var(--navy-mid);
  border-color: #C5D5EC;
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; color: var(--text-mid); }

.gold-line {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--sky);
  border-color: var(--sky);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(14,165,233,0.35);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11,37,69,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--light-gray), 0 4px 20px rgba(11,37,69,0.08);
  backdrop-filter: blur(12px);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  position: relative;
  flex-shrink: 0;
}

.logo-mark svg { width: 100%; height: 100%; }

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.logo-text .starh  { color: var(--navy); }
.logo-text .academy { color: var(--teal); }

.navbar.scrolled .logo-text .starh  { color: var(--navy); }
.navbar.scrolled .logo-text .academy { color: var(--teal); }

/* Transparent navbar logo */
.navbar:not(.scrolled) .logo-text .starh  { color: var(--white); }
.navbar:not(.scrolled) .logo-text .academy { color: var(--teal); }

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

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--white);
  transition: var(--transition);
}

.nav-link:hover { background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-link { color: var(--text-mid); }
.navbar.scrolled .nav-link:hover { background: var(--navy-light); color: var(--navy); }
.nav-link.active { color: var(--teal); }
.navbar.scrolled .nav-link.active { color: var(--navy); background: var(--navy-light); }

.nav-cta {
  margin-left: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--navy);
  transition: var(--transition);
}
.nav-cta:hover { background: var(--sky); transform: translateY(-1px); }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-mobile-toggle span { background: var(--navy); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 12px 0; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--light-gray); }
.nav-mobile a:last-child { border-bottom: none; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--gradient);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(29,78,137,0.4) 0%, transparent 70%);
}

.hero-grid {
  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;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-content .tag { margin-bottom: 24px; }

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
  flex: 0 0 auto;
}

.hero-stat .value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Client logos strip ── */
.clients-strip {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 32px 0;
}

.clients-strip .container {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.clients-strip .container::-webkit-scrollbar { display: none; }

.clients-strip-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.clients-strip-divider {
  width: 1px;
  height: 24px;
  background: var(--light-gray);
  flex-shrink: 0;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: var(--transition);
}

.client-logo:hover { background: var(--light-gray); }

.client-logo span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  transition: var(--transition);
  white-space: nowrap;
}

.client-logo:hover span { color: var(--navy); }

/* ── Services Cards ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--sky); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--navy-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon { background: var(--navy); }
.service-icon svg { width: 28px; height: 28px; color: var(--navy); transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--teal); }

.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p  { font-size: 0.93rem; margin-bottom: 20px; }

.service-card .learn-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card:hover .learn-more { color: var(--teal); gap: 10px; }

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: var(--light-gray);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}

.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p  { font-size: 0.88rem; }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--sky);
  position: absolute;
  top: 8px; left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-top: 20px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}

.author-name  { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.author-title { font-size: 0.82rem; color: var(--text-light); }

/* ── Case Study Cards ── */
.case-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.case-card-top {
  background: var(--gradient);
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-card-top::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
}

.case-industry {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(14,165,233,0.15);
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}

.case-client-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}

.case-card-body { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; }
.case-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.case-card-body p  { font-size: 0.9rem; flex: 1; }

.case-results {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.case-result .val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.case-result .lbl { font-size: 0.78rem; color: var(--text-light); }

/* ── CTA Section ── */
.cta-section {
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(29,78,137,0.4);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-inner h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.cta-inner p  { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 40px; font-size: 1.05rem; }

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--gradient);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 40%, rgba(201,168,76,0.07) 0%, transparent 70%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero-content { position: relative; z-index: 2; }
.page-hero .tag     { margin-bottom: 20px; }
.page-hero h1       { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.page-hero p        { color: rgba(255,255,255,0.75); max-width: 560px; font-size: 1.05rem; }

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 32px;
}

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

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }

.footer-logo .logo-text .starh  { color: var(--white); }
.footer-logo .logo-text .academy { color: var(--teal); }

.footer-about p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Forms ── */
.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(29,78,137,0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

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

/* ── Grids ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Info Cards ── */
.info-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); border-color: var(--sky); }
.info-card h3 { font-size: 1.1rem; margin: 16px 0 10px; }
.info-card p  { font-size: 0.9rem; }

/* ── ElevenLabs Widget ── */
.elevenlabs-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

/* ── Misc helpers ── */
.text-gold   { color: var(--teal); }
.text-navy   { color: var(--navy); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }

/* ── About page specifics ── */
.value-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid transparent;
}
.value-card:hover { background: var(--off-white); border-color: var(--light-gray); }

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 24px; height: 24px; color: var(--navy); }

.value-card h4 { font-size: 1rem; margin-bottom: 6px; }
.value-card p  { font-size: 0.88rem; }

/* ── Contact page ── */
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}
.contact-info-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--navy); }

.contact-info-item h4 { font-size: 0.85rem; color: var(--text-light); margin-bottom: 4px; font-weight: 500; font-family: 'Inter', sans-serif; }
.contact-info-item p  { font-size: 0.95rem; color: var(--navy); font-weight: 600; font-family: 'Montserrat', sans-serif; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle   { display: flex; }
  .section    { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4          { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .form-row        { grid-template-columns: 1fr; }
  .process-steps   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .hero-content h1 { font-size: 2.2rem; }
  .page-hero       { padding: 120px 0 60px; }

  /* Hero stats: 2×2 grid so numbers never overlap */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    padding-top: 32px;
  }
  .hero-stat .value { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .hero-actions    { flex-direction: column; }
  .cta-actions     { flex-direction: column; align-items: center; }
  .process-steps   { grid-template-columns: 1fr; }

  /* Tighten hero stats on very small phones */
  .hero-stats      { gap: 20px 24px; }
  .hero-stat .value { font-size: 1.5rem; }
  .hero-stat .label { font-size: 0.72rem; }

  /* Case metrics: reduce padding + font on small phones */
  .case-metrics    { padding: 16px; gap: 10px; }
  .metric .v       { font-size: 1.05rem; }
  .metric .l       { font-size: 0.68rem; }
}
