/* =============================================
   CLEARTAX RELIEF — DESIGN SYSTEM
   ============================================= */

:root {
  --color-brand: #1A53B8;
  --color-brand-hover: #154399;
  --color-brand-light: rgba(26, 83, 184, 0.10);
  --color-bg: #f6f8ff;
  --color-surface: #ffffff;
  --color-text: #1a1f2e;
  --color-text-muted: #5a6178;
  --color-border: #e8eaef;
  --color-gold: #F59E0B;
  --color-success: #10B981;
  --font-sans: "Nunito", system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 12px rgba(26, 83, 184, 0.08);
  --shadow-md: 0 6px 24px rgba(26, 83, 184, 0.12);
  --shadow-lg: 0 10px 40px rgba(26, 83, 184, 0.15);
  --container: min(1120px, 92vw);
  --topbar-height: 72px;
  --transition: 0.2s ease;
}

/* =============================================
   RESET + BASE
   ============================================= */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: var(--color-brand); }

/* =============================================
   LAYOUT
   ============================================= */

.container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =============================================
   TOPBAR + NAVIGATION
   ============================================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  min-height: var(--topbar-height);
  overflow: visible;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--topbar-height);
  overflow: visible;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 73px;
  width: auto;
  display: block;
  transform: scale(1.5);
  transform-origin: left center;
}

/* Desktop navigation */
.site-nav {
  flex: 1;
  margin-left: 3rem;
}

.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.15rem;
  align-items: center;
}

.nav-link {
  display: block;
  padding: 0.45rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--color-brand-light);
  color: var(--color-brand);
}

.nav-link.is-active {
  color: var(--color-brand);
  background: var(--color-brand-light);
}

/* Right side of topbar */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.topbar-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  text-decoration: none;
  color: var(--color-text);
  border: 2px solid var(--color-brand);
  border-radius: var(--radius);
  padding: 0.4rem 1rem;
}

.topbar-phone-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.topbar-phone-number {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-brand);
  line-height: 1.1;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  flex-shrink: 0;
}

.bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  line-height: 1.3;
  text-align: center;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-brand);
  color: #fff;
  border-color: var(--color-brand);
}
.btn-primary:hover {
  background: var(--color-brand-hover);
  border-color: var(--color-brand-hover);
  box-shadow: 0 4px 16px rgba(26, 83, 184, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn-ghost:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-white {
  background: #fff;
  color: var(--color-brand);
  border-color: #fff;
}
.btn-white:hover {
  background: #f0f4ff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* =============================================
   HERO — HOME
   ============================================= */

.hero {
  padding: clamp(2.5rem, 7vw, 5rem) 0;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(26, 83, 184, 0.14) 0%, transparent 60%),
    radial-gradient(900px 420px at 85% 20%, rgba(26, 83, 184, 0.10) 0%, transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.hero-copy {
  padding-top: 0.5rem;
  max-width: 36rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--color-brand-light);
  color: var(--color-brand);
  font-weight: 800;
  font-size: 0.85rem;
  margin: 0 0 0.85rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-brand);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 44ch;
  margin: 0 0 1.5rem;
  font-weight: 500;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(232, 234, 239, 0.9);
  border-radius: 12px;
  padding: 0.9rem;
}

.trust-metric {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-brand);
  line-height: 1.1;
}

.trust-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
  font-weight: 600;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--color-text);
}

.bullet-list li {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  font-weight: 600;
}

.bullet-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  background: var(--color-brand);
  border-radius: 2px;
  flex: 0 0 8px;
}

/* =============================================
   FORM CARD
   ============================================= */

.hero-form { position: relative; }

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.form-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem 0.9rem;
  background: linear-gradient(180deg, rgba(26, 83, 184, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--color-border);
}

.form-card-title {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.form-progress {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(26, 83, 184, 0.18);
  transition: background 0.3s;
}

.dot.is-active { background: var(--color-brand); }

.info-form {
  padding: 1.25rem;
}

.form-row { margin-bottom: 1.1rem; }

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(26, 83, 184, 0.15);
}

.form-row input::placeholder,
.form-row textarea::placeholder { color: #9ca8c6; }

.form-row textarea { resize: vertical; min-height: 110px; }

.form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-actions .btn { flex: 1 1 0; padding: 0.85rem; }

.qualify-message {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-brand);
}

.fineprint {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.form-success {
  padding: 2rem;
  text-align: center;
  color: var(--color-brand);
}

.form-success-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.form-error-banner {
  margin-bottom: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  background: #FEE2E2;
  color: #B91C1C;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-row input:invalid:not(:placeholder-shown):not(:focus),
.form-row input[aria-invalid="true"] { border-color: #c53030; }

.form-row .error-message {
  font-size: 0.8rem;
  color: #c53030;
  margin-top: 0.3rem;
  font-weight: 600;
}

/* =============================================
   PAGE HERO — INNER PAGES
   ============================================= */

.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background:
    linear-gradient(135deg, #0f3a8a 0%, #1A53B8 60%, #2a6fd4 100%);
  color: #fff;
  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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%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-content {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.95);
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-weight: 500;
  max-width: 52ch;
  margin-inline: auto;
}

/* =============================================
   TRUST BAR
   ============================================= */

.trust-bar {
  background: var(--color-brand);
  padding: 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.trust-bar-item:last-child { border-right: none; }

.trust-bar-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
}

.trust-bar-icon svg { width: 20px; height: 20px; }

.trust-bar-label {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
}

.trust-bar-value {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

/* =============================================
   SECTIONS — BASE
   ============================================= */

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-alt { background: var(--color-bg); }
.section-white { background: #fff; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--color-brand-light);
  color: var(--color-brand);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--color-brand);
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

/* =============================================
   HOW IT WORKS — STEPS
   ============================================= */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: calc(1.1rem + 50px/2);
  right: calc(1.1rem + 50px/2);
  height: 2px;
  background: linear-gradient(90deg, var(--color-brand) 0%, rgba(26,83,184,0.2) 100%);
  z-index: 0;
}

.step-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: #fff;
  position: relative;
  z-index: 1;
  transition: box-shadow var(--transition), transform var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(26,83,184,0.3);
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
}

.step-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =============================================
   SERVICES — CARDS
   ============================================= */

.services-grid-full {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: #fff;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(26, 83, 184, 0.3);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-brand-light);
  display: grid;
  place-items: center;
  color: var(--color-brand);
  flex-shrink: 0;
}

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

.service-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
}

.service-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}

.service-card-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.service-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.service-card:hover .service-card-link svg { transform: translateX(3px); }

/* Services pills (compact) */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.service-pill {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(26, 83, 184, 0.06);
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.9rem;
}

/* =============================================
   WHY CLEARTAX
   ============================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.why-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: box-shadow var(--transition);
}

.why-card:hover { box-shadow: var(--shadow-md); }

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-brand-light);
  display: grid;
  place-items: center;
  color: var(--color-brand);
  flex-shrink: 0;
}

.why-icon svg { width: 22px; height: 22px; }

.why-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
}

.why-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* =============================================
   TESTIMONIALS
   ============================================= */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.quote-card {
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition);
}

.quote-card:hover { box-shadow: var(--shadow-md); }

.stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.quote-card blockquote {
  margin: 0;
  font-size: 0.97rem;
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-brand-light);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--color-brand);
  flex-shrink: 0;
}

.quote-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--color-text);
}

.quote-location {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* =============================================
   RESULTS / CASE STUDIES
   ============================================= */

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.result-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition);
}

.result-card:hover { box-shadow: var(--shadow-md); }

.result-type {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--color-brand-light);
  color: var(--color-brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-amounts {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.result-amount-before {
  font-size: 1.75rem;
  font-weight: 900;
  color: #c53030;
  text-decoration: line-through;
  opacity: 0.7;
}

.result-arrow {
  color: var(--color-text-muted);
  font-size: 1.25rem;
}

.result-amount-after {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-success);
}

.result-description {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.result-client {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 0.75rem;
}

/* Stats strip */
.stats-strip {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: var(--color-brand);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item { color: #fff; }

.stat-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  margin-top: 0.35rem;
}

/* =============================================
   TIMELINE — PROCESS PAGE
   ============================================= */

.timeline {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 1.75rem;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 3.5rem;
  bottom: -1.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--color-brand) 0%, rgba(26,83,184,0.15) 100%);
}

.timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(26,83,184,0.3);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.timeline-content {
  padding: 0 0 2.5rem;
  flex: 1;
}

.timeline-content h3 {
  margin: 0.65rem 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text);
}

.timeline-content p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* =============================================
   FAQ
   ============================================= */

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: rgba(26, 83, 184, 0.3);
}

.faq-item[open] {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(26, 83, 184, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--color-text);
  padding: 1.1rem 1.25rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--color-brand);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.97rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.faq-body p { margin: 0 0 0.75rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* =============================================
   CTA BANNER
   ============================================= */

.cta-banner {
  background: linear-gradient(135deg, #0f3a8a 0%, #1A53B8 60%, #2a6fd4 100%);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::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.04'%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");
}

.cta-banner-inner {
  position: relative;
  max-width: 700px;
  margin-inline: auto;
}

.cta-banner-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.cta-banner-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 2rem;
  font-weight: 500;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   TEAM CARDS
   ============================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.team-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  background: #fff;
  text-align: center;
  transition: box-shadow var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-md); }

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-brand-light);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-brand);
  margin: 0 auto 1rem;
  border: 3px solid rgba(26,83,184,0.15);
}

.team-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 0.25rem;
}

.team-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.credential-badge {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--color-brand-light);
  color: var(--color-brand);
  font-size: 0.75rem;
  font-weight: 800;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-section h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-brand);
  margin: 0 0 1rem;
}

.contact-info-section p {
  color: var(--color-text-muted);
  margin: 0 0 2rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-brand-light);
  display: grid;
  place-items: center;
  color: var(--color-brand);
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 20px; height: 20px; }

.contact-detail-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin: 0 0 0.2rem;
}

.contact-detail-value {
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  font-size: 1rem;
}

.contact-detail-value a {
  color: var(--color-brand);
  text-decoration: none;
  font-weight: 800;
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-text);
  margin: 0 0 1.5rem;
}

/* =============================================
   ACCREDITATIONS
   ============================================= */

.accred-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.accred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: center;
  min-width: 140px;
}

.accred-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-brand);
  line-height: 1;
}

.accred-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.accred-rating {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-gold);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1rem, 3vw, 1.5rem);
  background: #0f1e3c;
  color: rgba(255,255,255,0.8);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  height: 54px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin: 2.5rem 0 1rem;
  line-height: 1.6;
  max-width: 28ch;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 1rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-list a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}

.footer-links-list a:hover { color: #fff; }

.footer-phone-link {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.4rem;
}

.footer-phone-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 60ch;
  margin: 0;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 600;
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.85); }

/* =============================================
   LEGAL PAGES
   ============================================= */

.legal-page {
  padding: clamp(2rem, 5vw, 3rem) 0;
  min-height: 60vh;
}

.legal-page h1 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-brand);
}

.legal-page .updated {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.legal-page h2 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.legal-page p,
.legal-page li {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}

.legal-page ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
}

.legal-page a { color: var(--color-brand); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }

.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--color-brand);
}

/* =============================================
   FLOATING CTA (mobile)
   ============================================= */

.float-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-brand);
  padding: 0.85rem 1.5rem;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(26,83,184,0.25);
}

.float-cta a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  /* Mobile nav */
  .site-nav {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    z-index: 99;
    margin: 0;
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.15rem;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.6rem 0.75rem;
  }

  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .topbar-phone-label { display: none; }

  /* Grids → single column */
  .hero-grid,
  .contact-layout { grid-template-columns: 1fr; }

  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .trust-bar-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .trust-bar-item:nth-child(3),
  .trust-bar-item:nth-child(4) { border-bottom: none; }

  .steps-grid,
  .services-grid-full,
  .testimonials-grid,
  .team-grid { grid-template-columns: 1fr; }

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

  .results-grid { grid-template-columns: 1fr; }

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

  .trust-row { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .footer-bottom { flex-direction: column; }
  .footer-brand .footer-tagline { max-width: 100%; }

  .float-cta { display: flex; }

  /* Add padding so float CTA doesn't cover content */
  body { padding-bottom: 64px; }
}

@media (max-width: 560px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-bar-item { border-right: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .cta-banner-actions { flex-direction: column; align-items: center; }

  .result-amounts { flex-direction: column; gap: 0.25rem; }
}


/* ==========================================================================
   PAGE HERO
   ========================================================================== */

.page-hero {
  background: linear-gradient(135deg, #1A53B8 0%, #0f3a8a 100%);
  color: #fff;
  padding: 100px 0 72px;
  text-align: center;
}

.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero .eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================================
   SECTION HELPERS
   ========================================================================== */

.section {
  padding: 80px 0;
}

.section-white {
  background: #fff;
}

.section-alt {
  background: #f5f7fc;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #0d1a33;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: #5a6a85;
  margin-bottom: 48px;
  max-width: 640px;
}

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

.section-title.text-center + .section-subtitle.text-center {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */

.timeline {
  position: relative;
  max-width: 820px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #dce6f7;
  z-index: 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-left {
  flex-shrink: 0;
  width: 64px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.timeline-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1A53B8;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26, 83, 184, 0.25);
  flex-shrink: 0;
}

.timeline-content {
  padding-top: 14px;
  flex: 1;
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0d1a33;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #4a5a72;
}

/* ==========================================================================
   FAQ LIST
   ========================================================================== */

.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #dce3f0;
}

.faq-item:first-child {
  border-top: 1px solid #dce3f0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1a33;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #1A53B8;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e8eef9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s, transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #1A53B8;
  border-radius: 2px;
  transition: opacity 0.3s, transform 0.3s;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: #1A53B8;
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  background: #fff;
}

.faq-answer {
  display: none;
  padding-bottom: 22px;
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.75;
  color: #4a5a72;
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */

.stats-strip {
  background: #1A53B8;
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-num {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.cta-banner {
  background: linear-gradient(135deg, #0f3a8a 0%, #1A53B8 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.cta-banner-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

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

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

.btn-white {
  background: #fff;
  color: #1A53B8;
  border: 2px solid #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn-white:hover {
  background: #e8eef9;
  color: #0f3a8a;
  border-color: #e8eef9;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ==========================================================================
   RESULTS GRID (results.html)
   ========================================================================== */

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.result-card {
  background: #fff;
  border: 1px solid #e0e8f5;
  border-radius: 14px;
  padding: 28px 24px 24px;
  box-shadow: 0 2px 12px rgba(26, 83, 184, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.result-card:hover {
  box-shadow: 0 8px 32px rgba(26, 83, 184, 0.12);
  transform: translateY(-3px);
}

.result-card-type {
  display: inline-block;
  background: #e8eef9;
  color: #1A53B8;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

.result-card-amounts {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f7fc;
  border-radius: 10px;
  padding: 16px;
}

.result-amount {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-amount-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a8ba6;
}

.result-before .result-amount-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #c0392b;
}

.result-after .result-amount-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a7a4a;
}

.result-arrow {
  font-size: 1.2rem;
  color: #1A53B8;
  font-weight: 700;
  flex-shrink: 0;
}

.result-card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5a72;
  flex: 1;
}

.result-card-client {
  font-size: 0.82rem;
  font-weight: 700;
  color: #8a9ab5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 1px solid #edf1f8;
  padding-top: 14px;
  margin-top: auto;
}

/* ==========================================================================
   TESTIMONIALS GRID (results.html)
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.quote-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(26, 83, 184, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e0e8f5;
}

.quote-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.quote-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #2c3e50;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.quote-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1A53B8;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote-author-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0d1a33;
}

.quote-author-location {
  font-size: 0.82rem;
  color: #7a8ba6;
}

/* ==========================================================================
   RESULTS DISCLAIMER SECTION
   ========================================================================== */

.results-disclaimer-section {
  padding: 40px 0;
}

.results-disclaimer-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.75;
  color: #7a8ba6;
}

/* ==========================================================================
   FLOAT CTA
   ========================================================================== */

.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1A53B8;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(26, 83, 184, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 900;
  text-decoration: none;
}

.float-cta a {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
}

.float-cta a:hover {
  color: #c8daff;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .page-hero {
    padding: 80px 0 56px;
  }

  .timeline::before {
    left: 23px;
  }

  .timeline-num {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .timeline-left {
    width: 48px;
  }

  .timeline-item {
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }

  .float-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-card-amounts {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .result-arrow {
    transform: rotate(90deg);
    align-self: center;
  }
}

/* ==============================================
   SERVICES & ABOUT PAGE ADDITIONS
   ============================================== */

/* ------ Page Hero (inner wrapper) ------ */
.page-hero-inner {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
}

.page-hero-inner .eyebrow {
  margin-bottom: 1rem;
}

.page-hero-inner h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.9rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.9rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin: 0 auto;
  font-weight: 500;
  max-width: 58ch;
  line-height: 1.65;
}

/* ------ Eyebrow (used directly in page-hero-inner context) ------ */
.page-hero-inner .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.95);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ------ Services Full Page ------ */
.services-full {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.services-intro-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 76ch;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  line-height: 1.75;
  text-align: center;
}

/* Full service card grid — 2-col on desktop */
.services-grid-full {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Full service card styling */
.service-card-full {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  scroll-margin-top: 6rem;
}

.service-card-full:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.service-card-header .service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-brand-light);
  display: grid;
  place-items: center;
  color: var(--color-brand);
  flex-shrink: 0;
}

.service-card-header .service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body p {
  margin: 0 0 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.72;
  flex: 1;
}

.service-card-body .service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}

.service-card-body .service-card-link svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition);
}

.service-card-full:hover .service-card-link svg {
  transform: translateX(4px);
}

/* ------ Section Header (subheader variant) ------ */
.section-subheader {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 62ch;
  margin: 0.5rem auto 0;
  line-height: 1.65;
  text-align: center;
}

/* ------ Mission Section ------ */
.mission-section {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.mission-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-brand);
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

.mission-text p {
  font-size: 0.97rem;
  color: var(--color-text-muted);
  line-height: 1.78;
  margin: 0 0 1.1rem;
}

.mission-text p:last-child {
  margin-bottom: 0;
}

/* Mission stats (right column) */
.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}

.mission-stat-card {
  background: var(--color-brand-light);
  border: 1px solid rgba(26,83,184,0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: box-shadow var(--transition);
}

.mission-stat-card:hover {
  box-shadow: 0 4px 20px rgba(26,83,184,0.12);
}

.mission-stat-number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-brand);
  line-height: 1;
  letter-spacing: -0.02em;
}

.mission-stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-brand);
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ------ Team Section ------ */
.team-section {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.team-section .section-header {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.team-card-body {
  display: flex;
  flex-direction: column;
}

/* ------ Accreditations Section ------ */
.accred-section {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.accred-section .section-header {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* Override accred-grid for about page (4 equal columns) */
.accred-section .accred-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  justify-items: stretch;
}

.accred-section .accred-item {
  min-width: unset;
  padding: 2rem 1.5rem 1.75rem;
  gap: 0.6rem;
  align-items: center;
}

.accred-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.accred-badge-label {
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.accred-badge-sub {
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0.85;
  line-height: 1;
  letter-spacing: 0.04em;
}

.accred-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

.accred-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

/* ==============================================
   RESPONSIVE — SERVICES & ABOUT PAGES
   ============================================== */

@media (max-width: 1024px) {
  .accred-section .accred-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-grid {
    grid-template-columns: 1fr 280px;
  }
}

@media (max-width: 768px) {
  .services-grid-full {
    grid-template-columns: 1fr;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-stats {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .accred-section .accred-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .mission-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .accred-section .accred-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
