/* ==========================================================================
   TC Website Template — Main Stylesheet
   CUSTOMIZE: Update brand colors below for each client.
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
  /* Brand colors — REPLACE with client's brand palette */
  --navy:        #0f1f2e;       /* Primary dark color */
  --navy-light:  #162a3d;       /* Primary dark hover/variant */
  --navy-mid:    #1c3450;       /* Primary dark mid-tone */
  --gold:        #c49a3c;       /* Accent color */
  --gold-hover:  #d4aa4c;       /* Accent hover */
  --gold-muted:  rgba(196, 154, 60, 0.12); /* Accent muted bg */

  /* Neutrals */
  --white:       #ffffff;
  --offwhite:    #f8f7f4;
  --gray-50:     #fafaf8;
  --gray-100:    #f2f1ee;
  --gray-200:    #e5e4e0;
  --gray-300:    #d0cfc9;
  --gray-500:    #8a8a8a;
  --gray-600:    #6b6b6b;
  --gray-700:    #444444;
  --gray-800:    #2a2a2a;
  --text:        #1a1a1a;
  --text-secondary: #555555;

  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width:   1180px;
  --section-py:  100px;
  --section-py-sm: 64px;
  --header-h:    80px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }

.section--gray   { background: var(--offwhite); }
.section--navy   { background: var(--navy); color: var(--white); }
.section--navy .section-subtitle { color: rgba(255,255,255,0.7); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section--navy .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto     { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 154, 60, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--gray-300);
}
.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15, 31, 46, 0.35);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: var(--white);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--text);
}

.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.header-cta {
  margin-left: 12px;
}

.header-cta .btn--primary {
  color: var(--white);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 100px;
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.5;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 540px; }

.hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

/* ---------- What We Do ---------- */
.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.what-we-do-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.what-we-do-text p:last-child { margin-bottom: 0; }

.what-we-do-parties {
  background: var(--offwhite);
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--gray-200);
}

.what-we-do-parties h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.parties-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.parties-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.parties-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- Why Section (Benefits) ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
}

.benefit-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(196, 154, 60, 0.1);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.benefit-card p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

/* Connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: var(--gray-200);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  pointer-events: none;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text);
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-text p:last-of-type { margin-bottom: 32px; }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 100px 0;
  background-color: var(--navy);
  background-image: radial-gradient(circle at 50% 0%, rgba(196, 154, 60, 0.08) 0%, rgba(196, 154, 60, 0.03) 20%, transparent 50%);
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.final-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ---------- Services Page: Hero ---------- */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 64px;
  background: var(--navy);
  text-align: center;
}

.page-hero .section-label { color: var(--gold); }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Services Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all 0.3s var(--ease);
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(196, 154, 60, 0.1);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card li {
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Feature Split Section ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-split--reverse { direction: rtl; }
.feature-split--reverse > * { direction: ltr; }

.feature-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.feature-text .check-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-text .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.feature-text .check-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-top: 2px;
}

/* ---------- Differentiators Grid ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.diff-card {
  text-align: center;
  padding: 40px 28px;
}

.diff-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.diff-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.diff-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.diff-card p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(196, 154, 60, 0.12);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}

.pricing-amount .small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
  margin-bottom: 24px;
}

.pricing-card ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-card li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
}

.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background: var(--gray-200);
  margin: 20px 0;
}

.pricing-section-cta {
  margin-top: 36px;
}

.pricing-section-cta-copy {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

/* ---------- Careers ---------- */
.careers-overview {
  padding-top: 88px;
}

.careers-shell {
  max-width: 900px;
  margin: 0 auto;
}

.careers-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.careers-role-sub {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 4px;
}

.careers-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,247,244,0.98) 100%);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 48px;
  box-shadow: 0 20px 48px rgba(15, 31, 46, 0.06);
}

.careers-card h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.careers-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.careers-card p + p {
  margin-top: 14px;
}

.careers-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.careers-note-copy strong,
.careers-note-aside strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.careers-note-copy p,
.careers-note-aside p {
  font-size: 0.95rem;
}

.careers-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 12px;
  filter: invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
}

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

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

.footer-credit a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-credit a:hover {
  color: var(--gold);
}

/* ---------- Scroll Fade-in Animation ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .hero-title  { font-size: 2.5rem; }
  .hero-inner  { gap: 40px; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: repeat(2, 1fr); }

  .about-grid {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --header-h: 68px;
  }

  .container { padding: 0 20px; }

  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 1rem; }

  /* Header mobile */
  .header-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-110%);
    opacity: 0;
    transition: all 0.35s var(--ease);
    pointer-events: none;
  }

  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-nav a { font-size: 1rem; }
  .header-cta { margin-left: 0; width: 100%; }
  .header-cta .btn { width: 100%; justify-content: center; }

  .menu-toggle { display: flex; }

  /* Hero mobile */
  .hero {
    padding: calc(var(--header-h) + 48px) 0 64px;
  }

  .hero::before { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content { max-width: 100%; }
  .hero-title   { font-size: 2.25rem; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }

  .hero-buttons { justify-content: center; }

  .hero-image {
    max-width: 480px;
    margin: 0 auto;
  }

  /* What We Do */
  .what-we-do-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card {
    display: flex;
    gap: 20px;
    padding: 24px;
  }

  .benefit-icon { margin-bottom: 0; flex-shrink: 0; }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .step {
    display: flex;
    text-align: left;
    gap: 20px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    margin: 0;
    flex-shrink: 0;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .about-image {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-text h2 { font-size: 1.75rem; }

  /* Final CTA */
  .final-cta { padding: 72px 0; }
  .final-cta h2 { font-size: 1.875rem; }

  /* Services page */
  .page-hero h1 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-split--reverse { direction: ltr; }

  .feature-image { max-width: 480px; }

  .feature-text h2 { font-size: 1.5rem; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  /* Careers */
  .careers-overview { padding-top: 64px; }
  .careers-card { padding: 32px 24px; }
  .careers-card h2 { font-size: 1.6rem; }
  .careers-note { grid-template-columns: 1fr; gap: 20px; }
  .careers-actions { flex-direction: column; }
  .careers-actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero-title { font-size: 1.875rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .page-hero h1 { font-size: 1.75rem; }
}

/* ---------- Staggered fade-in delays ---------- */
.benefits-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.benefits-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }
.benefits-grid .fade-up:nth-child(4) { transition-delay: 0.3s; }

.steps-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.steps-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }
.steps-grid .fade-up:nth-child(4) { transition-delay: 0.3s; }

.services-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.services-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }

.diff-grid .fade-up:nth-child(2) { transition-delay: 0.08s; }
.diff-grid .fade-up:nth-child(3) { transition-delay: 0.16s; }
.diff-grid .fade-up:nth-child(4) { transition-delay: 0.24s; }
.diff-grid .fade-up:nth-child(5) { transition-delay: 0.32s; }
.diff-grid .fade-up:nth-child(6) { transition-delay: 0.4s; }

.pricing-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ---------- Selection & Focus ---------- */
::selection {
  background: var(--gold);
  color: var(--white);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Print ---------- */
@media print {
  .site-header, .menu-toggle, .final-cta { display: none; }
  .hero { padding-top: 40px; }
  .fade-up { opacity: 1 !important; transform: none !important; }
}
