/* ============================================================
   Service Support Solutions — style.css
   Theme: Clean White Professional | Accent: #2563EB (Blue)
   Font: DM Sans (Google Fonts)
   ============================================================ */

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

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

body {
  font-family: 'DM Sans', Inter, sans-serif;
  background: #FFFFFF;
  color: var(--text-secondary);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-primary:     #FFFFFF;
  --bg-surface:     #F7F8FC;
  --bg-card:        #FFFFFF;
  --border:         #E8EAF2;
  --border-strong:  #D0D5E8;

  /* Blue Accent */
  --blue:           #2563EB;
  --blue-light:     #EEF3FD;
  --blue-dark:      #1A4FCC;
  --blue-dim:       rgba(37, 99, 235, 0.08);
  --blue-glow:      rgba(37, 99, 235, 0.20);

  /* Text */
  --text-primary:   #0F172A;
  --text-secondary: #334155;
  --text-muted:     #94A3B8;
  --text-heading:   #0F172A;

  /* Typography scale */
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   2rem;
  --text-4xl:   2.75rem;
  --text-5xl:   3.5rem;
  --text-hero:  clamp(2.75rem, 5.5vw, 5rem);

  /* Shape */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   0.75rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;

  /* Effects */
  --shadow-sm:  0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md:  0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg:  0 8px 40px rgba(15, 23, 42, 0.10);
  --shadow-blue: 0 8px 24px rgba(37, 99, 235, 0.20);
  --transition: 0.3s ease;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { color: var(--text-secondary); line-height: 1.75; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--surface {
  background: var(--bg-surface);
}

.section--blue {
  background: var(--blue);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--blue);
  color: #FFFFFF;
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-ghost:hover {
  background: var(--blue);
  color: #FFFFFF;
}

.btn-white {
  background: #FFFFFF;
  color: var(--blue);
  border-color: #FFFFFF;
}

.btn-white:hover {
  background: var(--blue-light);
}

.btn-lg {
  padding: 16px 40px;
  font-size: var(--text-lg);
}

/* ── HEADER / NAVBAR — transparent over hero ─────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 2px 24px rgba(15, 23, 42, 0.07);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  justify-self: start;
}

.logo-primary {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color var(--transition);
}

.logo-accent {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color var(--transition);
}

/* Logo always dark — readable on both transparent (light hero) and white scrolled header */
.header.scrolled .logo-primary { color: var(--text-heading); }
.header.scrolled .logo-accent  { color: var(--blue); }

/* Centered nav — the nav element itself is the grid child */
.header-inner > nav {
  justify-self: center;
}

/* The ul carries class header-nav */
ul.header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-2xl);
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.header-nav a {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}

ul.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: var(--radius-full);
  transition: width var(--transition);
}

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

ul.header-nav a:hover::after,
ul.header-nav a.active::after {
  width: 100%;
}

/* Scrolled state — same dark style, always consistent */
.header.scrolled ul.header-nav a {
  color: var(--text-secondary);
}

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

/* Right side actions */
.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  justify-self: end;
}

/* Get Free Quote — outline only, glow on hover */
.header-cta {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: transparent;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.header-cta:hover {
  background: transparent;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15), 0 0 18px rgba(37, 99, 235, 0.2);
}

.header.scrolled .header-cta {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}

.header.scrolled .header-cta:hover {
  background: transparent;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15), 0 0 18px rgba(37, 99, 235, 0.2);
}

.header-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: background var(--transition);
}

.header-hamburger:hover {
  background: var(--bg-surface);
}

/* Mobile nav */
.header-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-md) var(--space-xl) var(--space-lg);
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

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

.header-mobile a {
  display: block;
  padding: 12px var(--space-md);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
}

.header-mobile a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.header-mobile .header-cta {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-sm);
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
  box-shadow: none;
}

.header-mobile .header-cta:hover {
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* ── HERO SECTION — bg image with white multiply blend ───── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  background-image: url('../images/Homepage.webp');
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 140px 0 100px;
}

/* White wash overlay — 50% white over the blended image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.52);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Badge — dark on light background */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(37, 99, 235, 0.18);
}

/* Dark heading */
.hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin-bottom: var(--space-xl);
}

.hero-content h1 .accent {
  color: var(--blue);
}

/* Dark body text */
.hero-content p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

/* CTAs — standard blue on light background */
.hero-cta .btn-primary {
  background: var(--blue);
  color: #FFFFFF;
  border-color: var(--blue);
  font-weight: 600;
}

.hero-cta .btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
}

.hero-cta .btn-ghost {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}

.hero-cta .btn-ghost:hover {
  background: var(--blue);
  color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Trust badges — dark text, single line */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  padding: 6px 13px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

.hero-trust-item svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(33.33% + 16px);
  right: calc(33.33% + 16px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 6px, transparent 6px, transparent 12px);
  pointer-events: none;
}

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

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  position: relative;
  z-index: 1;
}

.step-item h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.step-item p {
  font-size: var(--text-base);
  color: var(--text-muted);
}

/* ── SERVICE WIDGET — open, no card box ──────────────────── */
.service-widget {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3xl) var(--space-4xl);
}

.service-widget-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: 0;
  position: relative;
}

/* Thin blue top accent line */
.service-widget-item::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: var(--space-xs);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.service-icon svg {
  width: 36px;
  height: 36px;
}

.service-widget-item h3 {
  font-size: var(--text-xl);
  color: var(--text-heading);
}

.service-widget-item p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 10px;
}

/* ── STATS SECTION ───────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item {
  padding: var(--space-xl) var(--space-md);
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
  display: block;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ── WHY CHOOSE US ───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.why-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.why-feature {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.why-feature h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-heading);
}

.why-feature p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--blue);
}

.testimonial-quote {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-heading);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: var(--space-4xl) 0;
}

.cta-section h2 {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.cta-section p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto var(--space-2xl);
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-4xl);
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.contact-card:hover {
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto var(--space-lg);
}

.contact-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.contact-card p,
.contact-card a {
  font-size: var(--text-base);
  color: var(--text-secondary);
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-card a:hover { color: var(--blue); }

.form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
}

.form-wrapper h2 {
  margin-bottom: var(--space-2xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: #FFFFFF;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.form-group.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-group.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
}

.form-group.checkbox-group label {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--blue-light);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.form-note svg { color: var(--blue); flex-shrink: 0; }

/* ── SERVICES PAGE (alternating sections) ────────────────── */
.service-section {
  padding: var(--space-4xl) 0;
}

.service-section:nth-child(even) {
  background: var(--bg-surface);
}

.service-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.service-section-grid.reverse .service-text { order: 1; }
.service-section-grid.reverse .service-visual { order: 2; }

.service-text h2 {
  margin-bottom: var(--space-lg);
}

.service-text p {
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.service-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.service-checklist li svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-text h2 {
  margin-bottom: var(--space-xl);
}

.about-text p {
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: var(--space-md);
}

.value-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-page {
  padding: var(--space-4xl) 0;
  background: var(--bg-primary);
}

.legal-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}

.legal-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.legal-meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.legal-body {
  max-width: 820px;
  margin: 0 auto;
}

.legal-section {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: var(--text-2xl);
  color: var(--text-heading);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--blue-light);
}

.legal-section h3 {
  font-size: var(--text-xl);
  color: var(--text-heading);
  margin: var(--space-xl) 0 var(--space-md);
}

.legal-section p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-section ul,
.legal-section ol {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-section li {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}

.legal-section a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-section a:hover { color: var(--blue-dark); }

/* ── CIRCLE DECORATIONS (inner page heroes) ──────────────── */
.circle-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.circle-1 { width: 500px; height: 500px; top: -180px; right: -120px; }
.circle-2 { width: 260px; height: 260px; bottom: -80px; left: -60px; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  /* top padding accounts for fixed 72px header */
  padding: calc(72px + var(--space-3xl)) 0 var(--space-4xl);
  text-align: center;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .section-label {
  margin-bottom: var(--space-md);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--space-lg);
}

.page-hero p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── LEGAL PAGES — fixed header offset ───────────────────── */
.legal-page {
  padding-top: calc(72px + var(--space-3xl));
}

/* ── FOOTER — white with glow separator ──────────────────── */
.footer {
  background: #FFFFFF;
  color: var(--text-secondary);
  padding: var(--space-4xl) 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--space-lg);
}

.footer-brand .logo-primary {
  color: var(--text-heading);
  font-size: var(--text-lg);
}

.footer-brand .logo-accent {
  color: var(--blue);
  font-size: var(--text-lg);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.footer-col h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

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

.footer-col ul li a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--blue); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer-icon-wrap {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--text-muted);
  transition: color var(--transition);
  word-break: break-word;
}

.footer-contact-item a:hover { color: var(--blue); }

/* Glow line separator */
.footer-bottom {
  position: relative;
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(37, 99, 235, 0.4) 20%,
    rgba(37, 99, 235, 0.9) 50%,
    rgba(37, 99, 235, 0.4) 80%,
    transparent 100%
  );
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.35), 0 0 4px rgba(37, 99, 235, 0.6);
}

.footer-copy {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--blue); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet: 768px – 1024px */
@media (max-width: 1024px) {
  .container { padding: 0 var(--space-lg); }

  .hero-grid,
  .why-grid,
  .about-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-2xl);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-2xl);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .stat-item + .stat-item {
    border-left: none;
  }

  .stat-item:nth-child(2) {
    border-left: 1px solid rgba(255,255,255,0.15);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  :root {
    --space-4xl: 3rem;
    --space-3xl: 2.5rem;
  }

  /* Solid header on mobile so hamburger is always visible */
  .header {
    background: rgba(255, 255, 255, 0.97) !important;
    border-bottom: 1px solid var(--border) !important;
    backdrop-filter: blur(14px);
  }

  /* Nav */
  .header-inner > nav { display: none; }
  .header-actions .header-cta { display: none; }
  .header-hamburger { display: flex; }
  .header-mobile { display: flex; }

  /* Header inner on mobile: logo left, hamburger right */
  .header-inner {
    grid-template-columns: 1fr auto !important;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-2xl);
  }

  .hero-visual { display: none; }

  .hero-stats {
    gap: var(--space-lg);
  }

  .hero-stat + .hero-stat {
    padding-left: var(--space-lg);
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-2xl);
  }

  .steps-grid::before { display: none; }

  /* Services */
  .service-widget {
    grid-template-columns: 1fr !important;
    gap: var(--space-2xl) !important;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .stat-item + .stat-item { border-left: none; }
  .stat-item:nth-child(2) { border-left: none; }

  /* Why / About */
  .why-grid,
  .about-grid,
  .service-section-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-2xl);
  }

  .service-section-grid.reverse .service-text { order: unset; }
  .service-section-grid.reverse .service-visual { order: unset; }

  .why-visual img,
  .about-visual img,
  .service-visual img {
    height: 280px !important;
  }

  .why-features {
    grid-template-columns: 1fr !important;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  /* Contact */
  .contact-cards {
    grid-template-columns: 1fr !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .form-wrapper {
    padding: var(--space-xl);
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Legal */
  .legal-body { padding: 0 var(--space-xs); }
}

@media (max-width: 480px) {
  .hero-stats { gap: var(--space-md); }
  .hero-stat + .hero-stat {
    padding-left: var(--space-md);
    border-left: 1px solid var(--border);
  }
  .stats-grid { grid-template-columns: 1fr !important; }
  .stat-item + .stat-item { border-left: none; }
}

/* ══════════════════════════════════════════════════════════════
   NEW LAYOUT COMPONENTS — complete redesign set
   ══════════════════════════════════════════════════════════════ */

/* ── HERO: left-aligned override ───────────────────────────── */
.hero-content.left {
  text-align: left;
  max-width: 680px;
  margin: 0;
}
.hero-content.left .hero-cta   { justify-content: flex-start; }
.hero-content.left .hero-trust { justify-content: flex-start; }
.hero-content.left p           { margin-left: 0; margin-right: 0; }

/* ── SERVICE ROWS (homepage + services page) ────────────────── */
.svc-list {
  border-top: 1px solid var(--border);
}

.svc-row {
  display: grid;
  grid-template-columns: 64px 1fr 1fr auto;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  cursor: default;
}

.svc-row:hover {
  background: var(--bg-surface);
  margin: 0 calc(var(--space-xl) * -1);
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.svc-row-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.svc-row-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  min-width: 0;
}

.svc-row-desc {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.65;
  min-width: 0;
}

.svc-row-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}

.svc-row:hover .svc-row-arrow {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: rotate(-45deg);
}

/* ── PROCESS: two-column sticky ─────────────────────────────── */
.proc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.proc-intro-side {
  position: sticky;
  top: 120px;
}

.proc-intro-side .section-label { margin-bottom: var(--space-lg); }
.proc-intro-side h2 { margin-bottom: var(--space-lg); }
.proc-intro-side p  { color: var(--text-muted); line-height: 1.75; }

.proc-steps-list {
  display: flex;
  flex-direction: column;
}

.proc-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.proc-step:first-child { padding-top: 0; }

.proc-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  letter-spacing: -0.03em;
  padding-top: 4px;
}

.proc-step:hover .proc-num { color: var(--blue); }
.proc-step { transition: var(--transition); }

.proc-step-body h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.proc-step-body p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── COMMITMENT ROWS (why us) ────────────────────────────────── */
.commit-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-top: var(--space-3xl);
}

.commit-item {
  display: grid;
  grid-template-columns: 56px 220px 1fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background var(--transition);
}

.commit-item:hover {
  background: var(--bg-surface);
  margin: 0 calc(var(--space-xl) * -1);
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.commit-n {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 5px;
}

.commit-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  padding-top: 2px;
}

.commit-desc {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── FEATURED TESTIMONIAL ────────────────────────────────────── */
.featured-testi-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.featured-testi-quote {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text-heading);
  font-style: italic;
  line-height: 1.55;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.featured-testi-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--blue);
  border-radius: 4px;
}

.featured-testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-left: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.featured-testi-author .testimonial-avatar { width: 52px; height: 52px; font-size: var(--text-xl); }

.testi-mini-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border);
}

.testi-mini-card {
  padding: var(--space-lg);
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
}

.testi-mini-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.testi-mini-card strong {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-heading);
  display: block;
}

.testi-mini-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── CTA BANNER (blue bg) ────────────────────────────────────── */
.cta-banner-section {
  background: var(--blue);
  padding: var(--space-4xl) 0;
  text-align: center;
}

.cta-banner-section h2 {
  color: #FFFFFF;
  max-width: 620px;
  margin: 0 auto var(--space-lg);
}

.cta-banner-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-lg);
  max-width: 480px;
  margin: 0 auto var(--space-2xl);
}

/* ── ABOUT: OPENING STATEMENT ────────────────────────────────── */
.about-statement-section {
  background: var(--bg-primary);
  padding: calc(72px + var(--space-4xl)) 0 var(--space-3xl);
  text-align: center;
}

.about-manifesto {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.3;
  letter-spacing: -0.025em;
  max-width: 820px;
  margin: 0 auto var(--space-xl);
}

.about-manifesto .accent { color: var(--blue); }

.about-statement-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── ABOUT: STORY GRID ───────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.about-story-text h2 { margin-bottom: var(--space-xl); }
.about-story-text p  { margin-bottom: var(--space-lg); line-height: 1.8; }

.about-inline-stats {
  display: flex;
  gap: var(--space-2xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  margin-top: var(--space-xl);
}

.about-inline-stat strong {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.about-inline-stat span {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.about-story-visual {
  position: relative;
}

.about-story-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-pull-quote {
  background: var(--blue);
  color: #fff;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.about-pull-quote p {
  color: rgba(255,255,255,0.9);
  font-size: var(--text-base);
  font-style: italic;
  line-height: 1.65;
}

/* ── MILESTONE TIMELINE ──────────────────────────────────────── */
.milestone-track {
  position: relative;
  margin-top: var(--space-3xl);
}

.milestone-track::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
}

.milestone-points {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: var(--space-2xl);
}

.milestone-pt {
  padding: 0 var(--space-lg) 0 0;
  position: relative;
}

.milestone-pt::before {
  content: '';
  position: absolute;
  top: calc(-1 * var(--space-2xl));
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--blue);
}

.milestone-year {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.milestone-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── PRINCIPLES LIST (about) ─────────────────────────────────── */
.principle-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.principle-item {
  display: grid;
  grid-template-columns: 64px 1fr 1.5fr;
  gap: var(--space-2xl);
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background var(--transition);
}

.principle-item:hover {
  background: var(--bg-surface);
  margin: 0 calc(var(--space-xl) * -1);
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.principle-n {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  letter-spacing: -0.03em;
}

.principle-item:hover .principle-n { color: rgba(37,99,235,0.25); }

.principle-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  padding-top: 4px;
}

.principle-desc {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.75;
  padding-top: 4px;
}

/* ── SERVICES PAGE ───────────────────────────────────────────── */
.svc-page-intro {
  background: var(--bg-primary);
  padding: calc(72px + var(--space-3xl)) 0 0;
}

.svc-page-intro-inner {
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--border);
}

.svc-page-intro h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--space-lg);
  max-width: 640px;
}

.svc-page-intro p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: var(--space-2xl);
}

.svc-anchor-strip {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.svc-anchor-strip::-webkit-scrollbar { display: none; }

.svc-anchor-strip a {
  padding: 1.1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}

.svc-anchor-strip a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* Individual service detail section */
.svc-detail-section {
  padding: var(--space-4xl) 0;
}

.svc-detail-section.alt { background: var(--bg-surface); }

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.svc-big-num {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: var(--space-md);
}

.svc-detail-left .section-label { margin-bottom: var(--space-lg); }
.svc-detail-left h2 { margin-bottom: var(--space-lg); }
.svc-detail-left p  { margin-bottom: var(--space-lg); line-height: 1.8; color: var(--text-secondary); }

.svc-detail-right img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-xl);
}

.svc-checklist-v2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-checklist-v2 li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.svc-checklist-v2 li svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── CONTACT: SPLIT SCREEN ───────────────────────────────────── */
.contact-split-wrapper {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
}

.contact-left-panel {
  background: #0F172A;
  padding: var(--space-4xl) var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left-panel .section-label {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-xl);
}

.contact-left-panel h1 {
  color: #FFFFFF;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.contact-left-panel > p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-3xl);
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}

.contact-detail-item .contact-detail-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.contact-detail-item .contact-detail-text span,
.contact-detail-item .contact-detail-text a {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.contact-detail-item .contact-detail-text a:hover {
  color: #FFFFFF;
}

.contact-promise-box {
  padding: var(--space-lg);
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: var(--radius-md);
}

.contact-promise-box p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.contact-promise-box p + p { margin-top: var(--space-sm); }

.contact-right-panel {
  background: #FFFFFF;
  padding: var(--space-4xl) var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.contact-right-panel h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

.contact-right-panel > p {
  color: var(--text-muted);
  margin-bottom: var(--space-2xl);
}

/* Service chip selector */
.chip-group {
  margin-bottom: var(--space-xl);
}

.chip-group label.chip-group-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.chip-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-options input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.chip-options label {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-surface);
}

.chip-options input[type="radio"]:checked + label,
.chip-options label:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #FFFFFF;
}

.contact-form-clean {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* ── LEGAL: BANNER + SIDEBAR LAYOUT ─────────────────────────── */
.legal-banner-section {
  background: #0F172A;
  padding: calc(72px + var(--space-3xl)) 0 var(--space-3xl);
}

.legal-banner-section h1 {
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.legal-banner-section p {
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
}

.legal-sidebar-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-4xl);
  padding: var(--space-4xl) 0 var(--space-4xl);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 100px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border);
}

.legal-toc h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.legal-toc ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-toc ol li a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  line-height: 1.4;
  transition: all var(--transition);
  text-decoration: none;
}

.legal-toc ol li a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.legal-main-content .legal-section {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 100px;
}

.legal-main-content .legal-section:last-child { border-bottom: none; }

.legal-main-content .legal-section h2 {
  font-size: var(--text-xl);
  color: var(--text-heading);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--blue-light);
}

.legal-main-content .legal-section p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-main-content .legal-section p:last-child { margin-bottom: 0; }

.legal-main-content .legal-section a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-main-content .legal-section a:hover { color: var(--blue-dark); }

/* ── RESPONSIVE ADDITIONS ────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-row { grid-template-columns: 48px 1fr 1fr auto; gap: var(--space-lg); }
  .proc-layout { grid-template-columns: 1fr; gap: var(--space-3xl); }
  .proc-intro-side { position: static; }
  .commit-item { grid-template-columns: 48px 180px 1fr; gap: var(--space-lg); }
  .principle-item { grid-template-columns: 48px 1fr 1.2fr; gap: var(--space-lg); }
  .about-story-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .milestone-points { grid-template-columns: repeat(3, 1fr); }
  .svc-detail-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .legal-sidebar-layout { grid-template-columns: 220px 1fr; gap: var(--space-2xl); }
  .contact-split-wrapper {
    grid-template-columns: 1fr 1.5fr;
  }
}

@media (max-width: 768px) {
  .svc-row { grid-template-columns: 1fr; gap: var(--space-md); }
  .svc-row-arrow { display: none; }
  .svc-row:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .commit-item { grid-template-columns: 1fr; gap: var(--space-sm); }
  .commit-item:hover { margin: 0; padding-left: 0; padding-right: 0; }
  .principle-item { grid-template-columns: 1fr; gap: var(--space-md); }
  .principle-item:hover { margin: 0; padding-left: 0; padding-right: 0; }
  .testi-mini-row { grid-template-columns: 1fr; }
  .milestone-points { grid-template-columns: repeat(2, 1fr); }
  .contact-split-wrapper {
    grid-template-columns: 1fr;
    min-height: unset;
    margin-top: 72px;
  }
  .contact-left-panel,
  .contact-right-panel {
    padding: var(--space-2xl) var(--space-lg);
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
  }
  .legal-sidebar-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .about-statement-section { padding-top: calc(72px + var(--space-2xl)); }
  .svc-page-intro { padding-top: calc(72px + var(--space-2xl)); }
  .svc-anchor-strip a { padding: 1rem 1.25rem; font-size: 0.82rem; }
  .svc-detail-right img { height: 240px; }
  .about-inline-stats { flex-wrap: wrap; gap: var(--space-xl); }
  .milestone-points { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .svc-page-intro-inner { padding-bottom: var(--space-xl); }
  .milestone-points { grid-template-columns: 1fr; }
  .contact-split-wrapper { margin-top: 72px; }
  .contact-left-panel,
  .contact-right-panel {
    padding: var(--space-xl) var(--space-md);
  }
  .chip-options label { padding: 7px 14px; font-size: 0.82rem; }
  .contact-form-clean input,
  .contact-form-clean textarea,
  .contact-form-clean select {
    font-size: 16px; /* prevents iOS zoom on focus */
  }
}
