:root {
  --white: #FFFFFF;
  --surface: #F6F7F9;
  --surface-2: #EEF0F3;
  --navy: #0B1F3A;
  --navy-deep: #071527;
  --navy-soft: #14304F;
  --slate: #4B5563;
  --slate-light: #8891A0;
  --gold: #B8923A;
  --gold-deep: #8A6D2C;
  --gold-soft: #D9C08A;
  --border: #E4E7EC;
  --border-strong: #D3D7DE;
  --font-serif: 'DM Serif Display', serif;
  --font-sans: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 2px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  font-weight: 400;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--navy); border-bottom-color: var(--gold); }
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  background: var(--navy);
  padding: 8px 20px;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid var(--navy);
}
.nav-cta:hover { background: var(--navy-soft); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 5%;
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
}
.mobile-menu a:last-child { border-bottom: none; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(184,146,58,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--slate);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 2rem;
  background: var(--surface);
  letter-spacing: 0.08em;
  position: relative;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--navy);
  margin-bottom: 1.5rem;
  position: relative;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--slate);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
  position: relative;
}
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.btn-primary {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--navy);
  padding: 13px 28px;
  border-radius: 32px;
  text-decoration: none;
  border: 1px solid var(--navy);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--navy-soft); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,31,58,0.2); }
.btn-secondary {
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  background: transparent;
  padding: 13px 28px;
  border-radius: 32px;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--gold); background: var(--surface); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-label {
  font-size: 10px;
  color: var(--slate);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}

/* ─── STATS STRIP ─── */
.stats-strip {
  padding: 2rem 5%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  letter-spacing: -1px;
  display: block;
}
.stat-label {
  font-size: 12px;
  color: var(--slate);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}

/* ─── SECTIONS ─── */
section {
  padding: 6rem 5%;
  position: relative;
}
.section-tag {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold-deep); }
.section-body {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 400;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 4rem;
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--surface); }
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
}
.service-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}
.service-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  font-weight: 400;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--navy);
  margin-top: 1.5rem;
  text-decoration: none;
  font-family: var(--font-mono);
  transition: color 0.2s;
}
.service-link:hover { color: var(--gold-deep); }
.service-link-arrow {
  font-size: 16px;
  transition: transform 0.2s;
}
.service-link:hover .service-link-arrow { transform: translate(3px, -2px); }

/* ─── HOW IT WORKS ─── */
.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
}
.step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-deep);
  min-width: 32px;
  margin-top: 4px;
  letter-spacing: 0.1em;
}
.step-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  font-weight: 400;
}
.how-visual {
  position: sticky;
  top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hex-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hex-ring {
  position: absolute;
  animation: rotateRing 20s linear infinite;
}
.hex-ring-2 {
  animation-direction: reverse;
  animation-duration: 15s;
}
@keyframes rotateRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ─── FEATURES ─── */
.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, background 0.3s;
}
.feature-card:hover {
  border-color: var(--gold);
  background: var(--surface-2);
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.feature-card p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.7;
  font-weight: 400;
}
.feature-card-large {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(11,31,58,0.05), rgba(184,146,58,0.10));
  border-color: var(--border-strong);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

/* ─── INDUSTRIES ─── */
.industries-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
  margin-top: 3rem;
}
.industries-scroll::-webkit-scrollbar { display: none; }
.industry-pill {
  flex-shrink: 0;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 32px;
  font-size: 14px;
  color: var(--slate);
  font-weight: 400;
  transition: all 0.25s;
  cursor: default;
  white-space: nowrap;
}
.industry-pill:hover, .industry-pill.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.testimonial-quote {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.author-title {
  font-size: 12px;
  color: var(--slate);
  font-weight: 400;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s;
}
.pricing-card:hover { border-color: var(--border-strong); }
.pricing-card.featured {
  border-color: var(--gold);
  background: rgba(184,146,58,0.05);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: var(--font-mono);
}
.pricing-tier {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--slate);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-family: var(--font-serif);
  font-size: 44px;
  color: var(--navy);
  letter-spacing: -1.5px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.pricing-price sup {
  font-size: 20px;
  font-family: var(--font-sans);
  font-weight: 400;
  margin-top: 10px;
}
.pricing-cycle {
  font-size: 13px;
  color: var(--slate);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.pricing-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--slate);
  font-weight: 400;
}
.pricing-features li::before {
  content: '✓';
  color: var(--gold-deep);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-btn {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
}
.pricing-btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--navy);
}
.pricing-btn-outline:hover { border-color: var(--navy); background: var(--surface); }
.pricing-btn-filled {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.pricing-btn-filled:hover { background: var(--navy-soft); transform: translateY(-1px); }

/* ─── CTA SECTION ─── */
.cta-section {
  margin: 0 5% 5rem;
  background: var(--navy-deep);
  border-radius: 24px;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(184,146,58,0.14), transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.cta-section h2 em { font-style: italic; color: var(--gold-soft); }
.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  font-weight: 400;
  position: relative;
}
.cta-email-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}
.cta-email-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 32px;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.cta-email-input::placeholder { color: rgba(255,255,255,0.45); }
.cta-email-input:focus { border-color: var(--gold); }
.cta-submit {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: 32px;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.cta-submit:hover { background: var(--gold-soft); transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-deep);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 1rem;
  font-weight: 400;
  max-width: 280px;
}
.footer-address {
  margin-top: 0.85rem;
  font-size: 13px;
  font-style: normal;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--gold-soft);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.footer-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-soft);
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-layout { grid-template-columns: 1fr; gap: 3rem; }
  .how-visual { position: relative; top: 0; }
  .features-header { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
  .cta-section { padding: 3rem 2rem; margin: 0 3% 3rem; }
  .cta-email-form { flex-direction: column; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  section { padding: 4rem 5%; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; justify-content: center; }
}
/* ─── SERVICE SUBPAGE ─── */
.breadcrumb {
  margin-top: 68px;
  padding: 2rem 5% 0;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--slate-light);
}
.breadcrumb a { color: var(--slate); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }

.service-hero {
  padding: 2.5rem 5% 4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  border-bottom: 1px solid var(--border);
}
.service-hero-icon {
  width: 72px;
  height: 72px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-hero-icon svg { width: 36px; height: 36px; }
.service-hero-tag {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.service-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.service-hero-sub {
  font-size: 16px;
  color: var(--slate);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.service-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.fit-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 2.5rem;
  max-width: 760px;
}
.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}
.fit-list li::before {
  content: '✓';
  color: var(--gold-deep);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .service-hero { grid-template-columns: 1fr; }
  .fit-list { grid-template-columns: 1fr; }
}

/* ─── CASE STUDIES (homepage grid) ─── */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.case-study-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.case-study-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.case-study-visual {
  height: 140px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.case-study-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.case-study-visual svg { position: relative; z-index: 1; }
.case-study-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.case-study-tag {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.case-study-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
}
.case-study-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  font-weight: 400;
  flex: 1;
}
.case-study-stat {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--slate);
}
.case-study-stat strong {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  display: block;
  margin-bottom: 2px;
}
.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--navy);
  margin-top: 1.25rem;
  text-decoration: none;
  font-family: var(--font-mono);
  transition: color 0.2s;
}
.case-study-card:hover .case-study-link { color: var(--gold-deep); }

/* ─── CASE STUDY DETAIL PAGE ─── */
.cs-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.cs-meta-pill {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--slate);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
}
.cs-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.cs-stat {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  background: var(--surface);
}
.cs-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 4px;
}
.cs-stat span { font-size: 13px; color: var(--slate); }
.cs-visit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.cs-visit-link:hover { color: var(--gold-deep); border-color: var(--gold); }

@media (max-width: 1024px) {
  .case-studies-grid { grid-template-columns: 1fr 1fr; }
  .cs-stats-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .case-studies-grid { grid-template-columns: 1fr; }
}
