/* ============================================================
   HVW Global Styles — Workday-inspired Design System
   ============================================================ */

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

:root {
  --navy:       #0d2b52;
  --navy-dark:  #071a35;
  --blue:       #1e5fa8;
  --blue-light: #2d7dd2;
  --teal:       #00a0b0;
  --teal-light: #00c4d8;
  --orange:     #f07b2e;
  --orange-light:#ff9d5c;
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --gray-100:   #eef1f6;
  --gray-200:   #dde3ed;
  --gray-400:   #8fa4bf;
  --gray-600:   #4a6480;
  --gray-800:   #1e2e40;
  --text:       #1e2e40;
  --text-muted: #4a6480;
  --border:     #dde3ed;
  --shadow-sm:  0 2px 8px rgba(13,43,82,.08);
  --shadow-md:  0 6px 24px rgba(13,43,82,.12);
  --shadow-lg:  0 16px 48px rgba(13,43,82,.16);
  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --font:       'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-display:'Inter', 'Segoe UI', system-ui, sans-serif;
  --nav-h:      72px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* --- Typography ------------------------------------------ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p  { max-width: 68ch; color: var(--text-muted); }
.lead { font-size: 1.2rem; line-height: 1.7; }

/* --- Layout ---------------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--sm{ padding: 64px 0; }
.section--lg{ padding: 128px 0; }
.section--dark   { background: var(--navy-dark); color: var(--white); }
.section--dark h2,.section--dark h3,.section--dark h4 { color: var(--white); }
.section--dark p  { color: rgba(255,255,255,.75); }
.section--teal   { background: var(--teal); color: var(--white); }
.section--offwhite{ background: var(--off-white); }
.section--navy   { background: var(--navy); color: var(--white); }
.section--navy h2,.section--navy h3 { color: var(--white); }
.section--navy p  { color: rgba(255,255,255,.75); }

.grid       { display: grid; gap: 32px; }
.grid-2     { grid-template-columns: repeat(2, 1fr); }
.grid-3     { grid-template-columns: repeat(3, 1fr); }
.grid-4     { grid-template-columns: repeat(4, 1fr); }
.flex       { display: flex; }
.items-center{ align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8      { gap: 8px; }
.gap-16     { gap: 16px; }
.gap-24     { gap: 24px; }
.text-center{ text-align: center; }
.text-center p { margin: 0 auto; }

/* --- Components ------------------------------------------ */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600; font-size: .95rem;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-light); border-color: var(--orange-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,123,46,.35); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: var(--white); color: var(--white); }

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

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: none;
  padding-left: 0; padding-right: 0;
}
.btn-ghost:hover { color: var(--teal); }
.btn-ghost svg { transition: transform var(--transition); }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }

/* Badge */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-teal  { background: rgba(0,160,176,.15); color: var(--teal); }
.badge-orange{ background: rgba(240,123,46,.15); color: var(--orange); }
.badge-blue  { background: rgba(30,95,168,.12);  color: var(--blue); }
.badge-white { background: rgba(255,255,255,.2);  color: var(--white); }

/* Section Label */
.section-label {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 3px;
  background: var(--teal);
  border-radius: 2px;
}

/* Card */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.75rem;
}
.card-icon--blue  { background: rgba(30,95,168,.1);  }
.card-icon--teal  { background: rgba(0,160,176,.1);  }
.card-icon--orange{ background: rgba(240,123,46,.1); }

.card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.card p   { font-size: .95rem; max-width: none; }
.card .card-link {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .9rem;
  color: var(--blue);
}
.card .card-link:hover { color: var(--teal); }
.card .card-link svg  { transition: transform var(--transition); }
.card .card-link:hover svg { transform: translateX(4px); }

/* Stat */
.stat-card {
  text-align: center; padding: 40px 24px;
}
.stat-num {
  font-size: 3rem; font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--teal); }
.stat-label { color: var(--text-muted); font-size: .95rem; font-weight: 500; }

/* Image helpers */
.img-cover {
  width: 100%; height: 100%; object-fit: cover;
}
.img-rounded { border-radius: var(--radius); }
.img-shadow  { box-shadow: var(--shadow-lg); }

/* Section header */
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.1rem; }

/* Divider */
.divider { width: 64px; height: 4px; background: linear-gradient(90deg,var(--teal),var(--blue)); border-radius: 2px; margin-bottom: 24px; }

/* --- Navigation ------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 24px;
}

.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: all var(--transition);
}
.nav-links a:hover { background: var(--gray-100); color: var(--navy); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a svg { transition: transform var(--transition); }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--transition);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
}
.dropdown-menu a:hover { background: var(--off-white); color: var(--navy); }
.dropdown-icon { font-size: 1.1rem; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .phone {
  font-size: .875rem; font-weight: 600;
  color: var(--navy); padding: 8px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; gap: 6px;
}
.nav-cta .phone:hover { border-color: var(--blue); color: var(--blue); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
  flex-direction: column; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 14px 16px;
  border-radius: 8px; font-weight: 500;
  color: var(--navy);
}
.mobile-nav a:hover { background: var(--off-white); }
.mobile-nav .mobile-section-title {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); padding: 16px 16px 8px;
}
.mobile-nav .divider-line {
  height: 1px; background: var(--border); margin: 8px 0;
}

/* --- Hero ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #164080 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}

.hero-text .badge { margin-bottom: 24px; }
.hero-text h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero-text h1 span { color: var(--teal-light); }
.hero-text .lead {
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  max-width: 52ch;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; }

/* Floating stat card */
.hero-stat {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.hero-stat--1 { bottom: -20px; left: -20px; }
.hero-stat--2 { top: -20px; right: -20px; }
.hero-stat-icon { font-size: 1.75rem; }
.hero-stat-text strong { display: block; font-size: 1.3rem; color: var(--navy); }
.hero-stat-text span  { font-size: .8rem; color: var(--text-muted); }

/* Wave shape */
.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* --- Services Grid --------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* --- Clients -------------------------------------------- */
.clients-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-label {
  font-size: .85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gray-400);
  margin-bottom: 32px; text-align: center;
}
.clients-logos {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 48px;
}
.clients-logos img {
  height: 40px; width: auto;
  filter: grayscale(100%) opacity(.5);
  transition: filter var(--transition);
}
.clients-logos img:hover { filter: none; }

/* --- Team ----------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-card-img { height: 280px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s ease; }
.team-card:hover .team-card-img img { transform: scale(1.04); }
.team-card-body { padding: 24px; }
.team-card-body h4 { margin-bottom: 4px; font-size: 1.1rem; }
.team-card-role { font-size: .875rem; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
.team-card-body p { font-size: .875rem; max-width: none; }
.team-social { display: flex; gap: 8px; margin-top: 16px; }
.team-social a { width: 32px; height: 32px; border-radius: 8px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: .875rem; color: var(--text-muted); transition: all var(--transition); }
.team-social a:hover { background: var(--blue); color: var(--white); }

/* --- CTA Banner ----------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-banner-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.8); max-width: 52ch; }
.cta-banner-actions { flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

/* --- Footer --------------------------------------------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img  { height: 36px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p    { font-size: .9rem; color: rgba(255,255,255,.6); max-width: 30ch; }
.footer-brand .phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; font-weight: 600;
  color: var(--teal-light); font-size: .95rem;
}
.footer-brand .phone-link:hover { color: var(--white); }

.footer-col h5 {
  color: var(--white); font-size: .875rem;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,.6); font-size: .9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px;
  font-size: .85rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }
.footer-badges { display: flex; gap: 12px; align-items: center; }
.footer-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; padding: 6px 12px;
  font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

/* --- Page Hero (inner pages) ---------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--blue) 100%);
  padding: calc(var(--nav-h) + 72px) 0 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .badge   { margin: 0 auto 20px; }
.page-hero h1       { color: var(--white); margin-bottom: 20px; }
.page-hero .lead    { color: rgba(255,255,255,.8); max-width: 60ch; margin: 0 auto 36px; }
.page-hero-wave     { position: absolute; bottom: -2px; left: 0; right: 0; line-height: 0; }
.page-hero-wave svg { display: block; width: 100%; }

/* --- Feature split -------------------------------------- */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }

.feature-content h2 { margin-bottom: 20px; }
.feature-content p  { margin-bottom: 16px; font-size: 1.05rem; }

.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.feature-list-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.feature-list-item .check {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%; background: var(--teal);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: .75rem; margin-top: 1px;
}
.feature-list-item p { max-width: none; margin: 0; font-size: .95rem; }

.feature-img {
  position: relative;
}
.feature-img img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.feature-img .badge-float {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; color: var(--navy);
}
.feature-img .badge-float span { font-size: 1.4rem; }

/* --- Process steps -------------------------------------- */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; }
.process-grid::before {
  content: '';
  position: absolute; top: 28px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--teal), var(--blue));
  z-index: 0;
}
.process-step {
  text-align: center; position: relative; z-index: 1;
}
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--teal);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--off-white);
}
.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p  { font-size: .875rem; }

/* --- Testimonial ---------------------------------------- */
.testimonial {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute; top: 24px; left: 40px;
  font-size: 6rem; font-weight: 900; line-height: 1;
  color: var(--teal); opacity: .2;
}
.testimonial p {
  font-size: 1.25rem; line-height: 1.7;
  color: var(--text); max-width: 72ch;
  position: relative; z-index: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 16px;
  margin-top: 32px;
}
.testimonial-author img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
}
.testimonial-author strong { display: block; color: var(--navy); }
.testimonial-author span   { font-size: .875rem; color: var(--text-muted); }

/* --- Breadcrumb ----------------------------------------- */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .875rem; color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb .sep { color: rgba(255,255,255,.4); }

/* --- Accordion / FAQ ------------------------------------ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 24px; font-size: 1rem; font-weight: 600;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-q:hover { background: var(--off-white); }
.faq-q .arrow { font-size: 1.2rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 20px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: .95rem; max-width: none; }

/* --- Responsive ----------------------------------------- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta .phone, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: calc(var(--nav-h) + 48px) 0 80px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-stat--2 { display: none; }
  .section { padding: 72px 0; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse { direction: ltr; }
  .cta-banner { padding: 40px 32px; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .testimonial { padding: 40px 32px; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 60px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .cta-banner { padding: 32px 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .process-grid { grid-template-columns: 1fr; }
}

/* --- Scroll animation ----------------------------------- */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* --- Utility -------------------------------------------- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
