/* ═══════════════════════════════════════
   RXT GLOBAL SOLUTIONS — DESIGN SYSTEM
   ═══════════════════════════════════════ */

:root {
  /* Core palette */
  --navy:        #0A2463;
  --navy-dark:   #061840;
  --navy-mid:    #123a85;
  --blue:        #3E92CC;
  --blue-light:  #A8DADC;
  --red:         #FB3640;
  --red-dark:    #d42b35;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --grey-100:    #EAF2EF;
  --grey-200:    #E2E8F0;
  --grey-400:    #94A3B8;
  --text-900:    #0F172A;
  --text-700:    #334155;
  --text-500:    #64748B;

  /* Gradients */
  --grad-hero:   linear-gradient(135deg, #061840 0%, #0A2463 55%, #1a4080 100%);
  --grad-primary: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
  --grad-red:    linear-gradient(135deg, #FB3640 0%, #ff6b6b 100%);
  --grad-blue:   linear-gradient(135deg, #3E92CC 0%, #A8DADC 100%);

  /* Shadows */
  --sh-xs: 0 1px 4px rgba(10,36,99,0.08);
  --sh-sm: 0 4px 12px rgba(10,36,99,0.10);
  --sh-md: 0 8px 30px rgba(10,36,99,0.13);
  --sh-lg: 0 16px 48px rgba(10,36,99,0.18);
  --sh-xl: 0 24px 64px rgba(10,36,99,0.22);

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Spacing */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-12: 6rem;

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

  /* Transitions */
  --ease: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

/* ── SECTION UTILITIES ── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-2);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-500);
  max-width: 560px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

/* ── BUTTONS ── */
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0.9rem 2rem;
  background: var(--grad-red);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--r-full);
  box-shadow: 0 4px 20px rgba(251,54,64,0.35);
  transition: var(--ease);
}
.btn-primary-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(251,54,64,0.45);
}
.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--r-full);
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  transition: var(--ease);
}
.btn-ghost-lg:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.5rem;
  background: var(--grad-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--r-full);
  box-shadow: var(--sh-sm);
  transition: var(--ease);
}
.btn-primary-sm:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--r-full);
  box-shadow: var(--sh-lg);
  transition: var(--ease);
  white-space: nowrap;
}
.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-xl);
}

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--sh-sm);
  backdrop-filter: blur(20px);
}
.navbar.scrolled .nav-logo .logo-name { color: var(--navy); }
.navbar.scrolled .nav-logo .logo-entity { color: var(--text-500); }
.navbar.scrolled .nav-menu a { color: var(--text-700); }
.navbar.scrolled .nav-menu a:hover { color: var(--navy); }
.navbar.scrolled .logo-mark { background: var(--grad-primary); }
.navbar.scrolled .nav-toggle span { background: var(--navy); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: opacity var(--ease);
}
/* Homepage dark navbar: show white logo, hide dark logo */
.nav-logo-white { display: block; }
.nav-logo-dark  { display: none; }
/* Once scrolled (white navbar): swap to dark logo */
.navbar.scrolled .nav-logo-white { display: none; }
.navbar.scrolled .nav-logo-dark  { display: block; }
.logo-mark {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: var(--ease);
}
.logo-mark.sm { width: 36px; height: 36px; font-size: 0.7rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  transition: color var(--ease);
}
.logo-entity {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  transition: color var(--ease);
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--ease);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--ease);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a.active { color: var(--white); }
.nav-menu a.active::after { width: 100%; }

.nav-cta {
  padding: 0.55rem 1.3rem !important;
  background: var(--grad-red) !important;
  color: var(--white) !important;
  border-radius: var(--r-full) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(251,54,64,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(251,54,64,0.45) !important;
}
.navbar.scrolled .nav-cta { color: var(--white) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
  display: block;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 var(--sp-12);
}

/* Animated background shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.hs {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--white);
}
.hs-1 { width: 600px; height: 600px; top: -200px; right: -150px; animation: float 18s ease-in-out infinite; }
.hs-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; animation: float 22s ease-in-out infinite reverse; }
.hs-3 { width: 250px; height: 250px; top: 20%; left: 15%; animation: float 14s ease-in-out infinite 3s; }
.hs-4 { width: 180px; height: 180px; bottom: 20%; right: 20%; animation: float 16s ease-in-out infinite 5s; opacity: 0.04; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.04); }
  66%       { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
  backdrop-filter: blur(8px);
  animation: fadeUp 0.7s ease both;
}
.badge-flag { font-size: 1rem; }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--blue-light);
  margin-bottom: var(--sp-3);
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
  animation: fadeUp 0.7s ease 0.4s both;
}
.hero-trust-bar {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.5s both;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--r-full);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════
   STATS STRIP
══════════════════════════════════ */
.stats-strip {
  background: var(--navy-dark);
  padding: var(--sp-8) 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(62,146,204,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 90% 50%, rgba(251,54,64,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  position: relative;
  z-index: 1;
}
.stat-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.stat-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--ease);
  z-index: 0;
}
.stat-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(62,146,204,0.3);
}
.stat-item:hover::after { opacity: 1; }
.stat-item:hover .stat-icon-wrap { background: rgba(255,255,255,0.15); }
.stat-item:hover .stat-num { color: var(--white); -webkit-text-fill-color: var(--white); }
.stat-item:hover .stat-lbl { color: rgba(255,255,255,0.8); }
.stat-item > * { position: relative; z-index: 1; }

.stat-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  display: grid;
  place-items: center;
  margin: 0 auto var(--sp-3);
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
  transition: var(--ease);
}
.stat-num {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--ease);
}
.stat-num sup {
  font-size: 0.45em;
  color: var(--red);
  -webkit-text-fill-color: var(--red);
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
}
.stat-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--ease);
}
.stat-divider { display: none; }
.stat-icon { display: none; }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about {
  padding: var(--sp-12) 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.about-left p {
  color: var(--text-500);
  margin-bottom: var(--sp-3);
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-lead {
  font-size: 1.15rem !important;
  color: var(--text-700) !important;
  font-weight: 500;
}
.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.about-feat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--grey-200);
  transition: var(--ease);
}
.about-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.afc-icon {
  font-size: 1.8rem;
  margin-bottom: var(--sp-1);
  display: block;
}
.canada-badge {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #fff0f0 0%, #ffe4e4 100%);
  border: 1.5px solid rgba(210, 0, 0, 0.2);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.about-feat-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.about-feat-card p {
  font-size: 0.82rem;
  color: var(--text-500);
  line-height: 1.5;
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services {
  padding: var(--sp-12) 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.services-grid .service-card:nth-child(4) { grid-column: 1; }
.services-grid .service-card:nth-child(5) { grid-column: 2; }

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-4);
  position: relative;
  overflow: hidden;
  transition: var(--ease);
  box-shadow: var(--sh-xs);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--ease);
  z-index: 0;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover .sc-number,
.service-card:hover .sc-icon,
.service-card:hover h3,
.service-card:hover p { color: var(--white); }
.service-card:hover .sc-bar { background: rgba(255,255,255,0.3); }

.sc-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  position: relative;
  z-index: 1;
  margin-bottom: var(--sp-2);
  transition: color var(--ease);
}
.sc-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: var(--sp-2);
  position: relative;
  z-index: 1;
  transition: var(--ease);
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-1);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  transition: color var(--ease);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-500);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color var(--ease);
  margin-bottom: var(--sp-3);
}
.sc-bar {
  height: 3px;
  width: 40px;
  background: var(--red);
  border-radius: var(--r-full);
  position: relative;
  z-index: 1;
  transition: background var(--ease);
}

/* ══════════════════════════════════
   INDUSTRIES
══════════════════════════════════ */
.industries {
  padding: var(--sp-12) 0;
  background: var(--off-white);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-3);
}
.industry-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  border: 1px solid var(--grey-200);
  box-shadow: var(--sh-xs);
  transition: var(--ease);
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--blue);
}
.ic-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: var(--sp-2);
}
.industry-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.industry-card p {
  font-size: 0.78rem;
  color: var(--text-500);
  line-height: 1.4;
}

/* ══════════════════════════════════
   HOW WE OPERATE
══════════════════════════════════ */
.operations {
  padding: var(--sp-12) 0;
  background: var(--white);
}
.operations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.ops-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}
.ops-left p {
  color: var(--text-500);
  margin-bottom: var(--sp-4);
  line-height: 1.75;
}
.ops-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.ops-checklist li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.95rem;
  color: var(--text-700);
  font-weight: 500;
}
.check {
  width: 24px;
  height: 24px;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Org Flow */
.org-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.org-node {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: var(--sh-sm);
  transition: var(--ease);
}
.org-node:hover { box-shadow: var(--sh-md); transform: scale(1.02); }
.parent-node {
  background: var(--grad-primary);
  border-color: transparent;
}
.parent-node .on-text strong { color: var(--white); }
.parent-node .on-text span { color: rgba(255,255,255,0.7); }
.parent-node .on-icon { color: var(--white); }
.mid-node {
  background: var(--off-white);
}
.on-icon { font-size: 1.6rem; flex-shrink: 0; }
.on-text { display: flex; flex-direction: column; gap: 0.2rem; }
.on-text strong { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.on-text span { font-size: 0.75rem; color: var(--text-500); }

.org-line {
  width: 2px;
  height: 28px;
  background: var(--grey-200);
  flex-shrink: 0;
}
.org-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  width: 100%;
  position: relative;
}
.org-branches::before {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  width: 2px;
  height: 28px;
  background: var(--grey-200);
}
.branch-node { background: var(--grey-100); }

/* ══════════════════════════════════
   PAYMENT CTA SECTION
══════════════════════════════════ */
.payment-cta {
  background: var(--grad-hero);
  padding: var(--sp-12) 0;
  position: relative;
  overflow: hidden;
}
.payment-cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px;
  right: -100px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-left { flex: 1; min-width: 280px; }
.cta-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-2);
}
.cta-left p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.cta-pkg-pills {
  display: flex;
  gap: var(--sp-1);
  flex-wrap: wrap;
}
.pkg-pill {
  padding: 0.35rem 0.9rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--r-full);
}
.pkg-pill.highlight {
  background: var(--grad-red);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(251,54,64,0.3);
}
.pkg-pill.custom {
  background: rgba(168,218,220,0.2);
  border-color: var(--blue-light);
  color: var(--blue-light);
}
.cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.cta-badges {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  align-items: center;
}
.cta-badge {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ══════════════════════════════════
   DISCLAIMER
══════════════════════════════════ */
.disclaimer-bar {
  background: #FFF8E1;
  border-top: 3px solid #F59E0B;
  border-bottom: 3px solid #F59E0B;
  padding: var(--sp-3) 0;
}
.disclaimer-bar p {
  text-align: center;
  color: #78350F;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding: var(--sp-12) 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(62,146,204,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--sp-3);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.footer-logo .logo-mark.sm {
  background: var(--grad-primary);
  border: none;
}
.footer-brand-col p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}
.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-trust span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-3);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: var(--sp-4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  position: relative;
  z-index: 1;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════
   PAYMENT PAGE
══════════════════════════════════ */
.payment-hero {
  background: var(--grad-hero);
  padding: 140px 0 var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.payment-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -150px; right: -100px;
}
.payment-hero-content { position: relative; z-index: 1; }
.payment-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--sp-2);
}
.payment-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

.payment-section {
  background: var(--off-white);
  padding: var(--sp-8) 0;
}
.payment-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
.payment-options h2,
.custom-amount-section h2,
.gateway-section h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-6);
}
.payment-section-divider {
  height: 1px;
  background: var(--grey-200);
  margin: var(--sp-8) 0;
}

/* Package cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.package-card {
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  position: relative;
  transition: var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--blue);
}
.package-card.featured {
  border-color: var(--red);
  box-shadow: var(--sh-md);
}
.package-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  white-space: nowrap;
}
.package-header { margin-bottom: var(--sp-3); padding-top: var(--sp-2); }
.package-header h3 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: var(--sp-2); }
.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.package-price-cad {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-500);
  margin-top: 0.25rem;
}
.package-features {
  flex: 1;
  margin-bottom: var(--sp-4);
}
.package-features ul { display: flex; flex-direction: column; gap: 0.5rem; }
.package-features li {
  font-size: 0.82rem;
  color: var(--text-500);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--grey-200);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.package-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.package-btn {
  display: block;
  width: 100%;
  padding: 0.7rem;
  background: var(--grad-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--r-md);
  transition: var(--ease);
  box-shadow: var(--sh-sm);
  border: none;
  cursor: pointer;
}
.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.package-card.featured .package-btn {
  background: var(--grad-red);
}

/* Custom amount */
.custom-amount-section { margin-top: var(--sp-4); }
.custom-amount-form {
  background: var(--white);
  padding: var(--sp-6);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--grey-200);
}
.form-group { margin-bottom: var(--sp-4); }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.input-group { position: relative; }
.input-prefix {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-500);
  font-weight: 600;
}
input[type="number"],
input[type="text"] {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--grey-200);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text-900);
  background: var(--white);
  transition: var(--ease);
}
input[type="number"] { padding-left: 2rem; }
input[type="number"]:focus,
input[type="text"]:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(62,146,204,0.12);
}
input.input-error { border-color: var(--red); box-shadow: 0 0 0 4px rgba(251,54,64,0.1); }
.field-error {
  font-size: 0.8rem;
  color: var(--red);
  margin-top: 0.4rem;
  display: none;
}
.field-error.visible { display: block; }
.custom-proceed-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--grad-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: var(--sh-sm);
}
.custom-proceed-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

/* Gateway selection */
.gateway-section {
  margin-top: var(--sp-6);
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--sh-md);
  border: 1px solid var(--grey-200);
}
.gateway-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.gateway-card {
  border: 2px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: var(--ease);
  cursor: pointer;
}
.gateway-card:hover { border-color: var(--blue); box-shadow: var(--sh-sm); transform: translateY(-3px); }
.gateway-info { display: flex; align-items: center; gap: var(--sp-3); }
.gateway-logo svg { border-radius: var(--r-sm); }
.gateway-details h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.gateway-details p { font-size: 0.82rem; color: var(--text-500); }
.gateway-btn {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--ease);
}
.gateway-btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* Payment summary */
.payment-summary {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  margin-top: var(--sp-4);
  box-shadow: var(--sh-md);
  border: 1px solid var(--grey-200);
}
.payment-summary h3 { color: var(--navy); font-size: 1.2rem; font-weight: 700; margin-bottom: var(--sp-4); }
.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-200);
  font-size: 0.9rem;
  color: var(--text-500);
}
.summary-item span:last-child { font-weight: 600; color: var(--navy); }
.summary-total {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-3) 0 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.confirm-btn {
  width: 100%;
  margin-top: var(--sp-4);
  padding: 1rem;
  background: var(--grad-red);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 4px 16px rgba(251,54,64,0.3);
}
.confirm-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(251,54,64,0.4); }
.confirm-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Redirect notice */
.payment-redirect-notice {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  text-align: center;
  margin-top: var(--sp-4);
  box-shadow: var(--sh-md);
}
.redirect-icon { font-size: 3rem; margin-bottom: var(--sp-2); }
.payment-redirect-notice h3 { color: var(--navy); margin-bottom: var(--sp-2); font-size: 1.3rem; }
.payment-redirect-notice p { color: var(--text-500); margin-bottom: var(--sp-3); }
.redirect-spinner {
  width: 40px; height: 40px;
  border: 4px solid var(--grey-200);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: var(--sp-3) auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.redirect-fallback { font-size: 0.83rem; color: var(--text-500); margin-top: var(--sp-3); }
.redirect-fallback a { color: var(--blue); text-decoration: underline; }

/* Security notice */
.security-notice {
  background: var(--white);
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--grey-200);
}
.security-content {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  max-width: 780px;
  margin: 0 auto;
  background: var(--off-white);
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--grey-200);
}
.security-icon { font-size: 2.5rem; flex-shrink: 0; }
.security-text h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.security-text p { font-size: 0.85rem; color: var(--text-500); line-height: 1.6; }

/* ══════════════════════════════════
   INNER PAGE HERO (shared)
══════════════════════════════════ */
.page-hero,
.legal-hero {
  background: var(--grad-hero);
  padding: 130px 0 var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before,
.legal-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -150px; right: -100px;
  pointer-events: none;
}
.page-hero-content,
.legal-hero-content { position: relative; z-index: 1; }
.page-hero-content h1,
.legal-hero-content h1 { color: var(--white); font-size: clamp(2rem,5vw,3rem); font-weight: 800; margin-bottom: var(--sp-2); }
.page-hero-content p,
.legal-hero-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-2);
  font-weight: 500;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--ease); }
.page-hero-breadcrumb a:hover { color: var(--white); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.35); }

/* Inner page content wrapper */
.page-content {
  background: var(--off-white);
  padding: var(--sp-12) 0;
}
.page-content-white {
  background: var(--white);
  padding: var(--sp-12) 0;
}

/* ══════════════════════════════════
   LEGAL PAGES
══════════════════════════════════ */

.legal-content { background: var(--off-white); padding: var(--sp-8) 0; }
.legal-document {
  background: var(--white);
  padding: var(--sp-8);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--grey-200);
}
.document-header {
  text-align: center;
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 2px solid var(--grey-200);
}
.document-header h2 { color: var(--navy); margin-bottom: var(--sp-2); }
.document-subtitle { color: var(--text-500); font-style: italic; margin-bottom: var(--sp-1); font-size: 0.9rem; }
.last-updated { color: var(--text-500); font-size: 0.85rem; }
.document-section { margin-bottom: var(--sp-6); }
.document-section h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--sp-2);
  padding-bottom: var(--sp-1);
  border-bottom: 1px solid var(--grey-200);
}
.document-section h4 { color: var(--text-700); font-size: 0.9rem; margin: var(--sp-3) 0 var(--sp-1); }
.document-section p { color: var(--text-500); font-size: 0.9rem; line-height: 1.75; margin-bottom: var(--sp-2); }
.document-section ul { padding-left: var(--sp-4); margin: var(--sp-2) 0 var(--sp-3); }
.document-section li { font-size: 0.88rem; color: var(--text-500); margin-bottom: 0.5rem; line-height: 1.6; }
.contact-info {
  background: var(--off-white);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  border: 1px solid var(--grey-200);
  margin: var(--sp-3) 0;
}
.contact-info p { font-size: 0.88rem; color: var(--text-500); line-height: 1.75; }
.document-footer {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 2px solid var(--grey-200);
  text-align: center;
}
.document-footer p { font-size: 0.82rem; color: var(--text-500); margin-bottom: 0.4rem; }

/* ══════════════════════════════════
   HOME PAGE TEASERS
══════════════════════════════════ */
.home-teaser {
  padding: var(--sp-12) 0;
}
.home-teaser-alt { background: var(--off-white); }

.teaser-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.teaser-header-left .section-eyebrow { margin-bottom: 0.4rem; }
.teaser-header-left .section-title { margin-bottom: 0; }
.teaser-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: var(--ease);
  white-space: nowrap;
}
.teaser-view-all:hover { color: var(--red); }

/* Service teaser cards (3-col on home) */
.services-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

/* Industry teaser pills on home */
.industries-teaser {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-700);
  box-shadow: var(--sh-xs);
  transition: var(--ease);
}
.industry-pill:hover {
  border-color: var(--blue);
  color: var(--navy);
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.industry-pill-icon { font-size: 1.1rem; }

/* About teaser on home */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.about-teaser-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) { grid-column: auto; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .services-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .about-teaser-visual { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-menu {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    padding: var(--sp-4) 0;
    box-shadow: var(--sh-lg);
    transition: left var(--ease);
    gap: 0;
  }
  .nav-menu.active { left: 0; }
  .nav-menu a {
    color: var(--text-700);
    display: block;
    padding: var(--sp-2) var(--sp-4);
    width: 100%;
    text-align: left;
  }
  .nav-menu a:hover { color: var(--navy); background: var(--off-white); }
  .nav-menu .nav-cta {
    margin: var(--sp-2) var(--sp-4);
    display: block;
    text-align: center;
  }
  .nav-toggle { display: flex; }
  .navbar.scrolled .nav-toggle span { background: var(--navy); }

  /* Hero */
  .hero { padding: 100px 0 var(--sp-8); min-height: auto; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: var(--sp-3); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .about-card-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  /* Operations */
  .operations-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .org-branches { grid-template-columns: 1fr 1fr; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-left { min-width: unset; }
  .cta-pkg-pills { justify-content: center; }

  /* Payment */
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .gateway-options { grid-template-columns: 1fr; }
  .security-content { flex-direction: column; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Legal */
  .legal-document { padding: var(--sp-4); }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-2); }
  .hero-trust-bar { gap: var(--sp-1); }
  .trust-pill { font-size: 0.72rem; padding: 0.3rem 0.7rem; }
  .about-card-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 2rem; }
  .hero-title { font-size: 2.2rem; }
  .services-teaser-grid { grid-template-columns: 1fr; }
  .about-teaser-visual { grid-template-columns: 1fr; }
  .teaser-header { flex-direction: column; align-items: flex-start; }
}

@media print {
  .navbar, .hero-actions, .hero-trust-bar, .payment-cta, .nav-toggle { display: none !important; }
}
