/* ============================================================
   A Eye Solutions — Elite Design System
   ============================================================ */

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

:root {
  /* Colours */
  --blue-900: #0B1D51;
  --blue-800: #0F2B6E;
  --blue-700: #1338A0;
  --blue-600: #1A4FD6;
  --blue-500: #2563EB;
  --blue-400: #5B8DEF;
  --blue-100: #DBEAFE;
  --blue-50: #EFF6FF;
  --navy: #0A0F1E;
  --navy-light: #0F172A;
  --charcoal: #1E293B;
  --grey-700: #374151;
  --grey-600: #4B5563;
  --grey-500: #6B7280;
  --grey-400: #9CA3AF;
  --grey-300: #D1D5DB;
  --grey-200: #E5E7EB;
  --grey-100: #F3F4F6;
  --grey-50: #F9FAFB;
  --white: #FFFFFF;
  --green-600: #059669;
  --red-600: #DC2626;

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

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

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --header-height: 80px;

  /* Borders & Shadows */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.15), 0 0 60px rgba(37, 99, 235, 0.05);
  --border-light: 1px solid var(--grey-200);
  --border-subtle: 1px solid rgba(255,255,255,0.08);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: var(--font-main);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--blue-800); }

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 800;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; }

p { color: var(--grey-600); line-height: 1.7; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-white { color: var(--white); }
.text-blue { color: var(--blue-600); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400), #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

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

.section--grey {
  background: var(--grey-50);
}

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

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

.section--dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section--dark .section-label {
  color: var(--blue-400);
}

.section--dark h2 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255,255,255,0.65);
}

.section-header {
  max-width: 720px;
  margin-bottom: var(--space-3xl);
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.section-header p {
  margin-top: var(--space-md);
  font-size: 1.125rem;
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.8125rem 1.75rem;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35), 0 1px 3px rgba(0,0,0,0.1);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45), 0 2px 6px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--white);
  color: var(--blue-600);
  border-color: var(--grey-300);
}
.btn--secondary:hover {
  background: var(--grey-50);
  color: var(--blue-700);
  border-color: var(--blue-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  background: var(--grey-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--blue-600);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover { color: var(--blue-800); }

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  height: var(--header-height);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

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

.footer__logo-img {
  height: 50px;
  filter: brightness(0) invert(1);
}

.header__nav {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.header__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-600);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--navy);
}

.header__nav-dropdown {
  position: relative;
}

.header__nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
}

.header__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -12px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 240px;
  padding: var(--space-sm) 0;
  z-index: 200;
  margin-top: var(--space-md);
}

.header__nav-dropdown:hover .header__dropdown-menu {
  display: block;
}

.header__dropdown-menu a {
  display: block;
  padding: 0.625rem var(--space-xl);
  font-size: 0.875rem;
  border-radius: 0;
}

.header__dropdown-menu a:hover {
  background: var(--grey-50);
  color: var(--blue-600);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.header__phone {
  display: none;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  white-space: nowrap;
}

.header__phone svg {
  width: 16px;
  height: 16px;
  color: var(--blue-600);
}

.header__cta {
  display: none;
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .header__phone { display: flex; }
  .header__cta { display: inline-flex; }
  .header__hamburger { display: none; }
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  overflow-y: auto;
  padding: var(--space-xl) var(--space-lg);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: var(--space-md) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: var(--border-light);
}

.mobile-nav a:hover { color: var(--blue-600); }

.mobile-nav__sub {
  padding-left: var(--space-lg);
}

.mobile-nav__sub a {
  font-size: 0.9375rem;
  color: var(--grey-600);
}

.mobile-nav__phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--navy);
}

.mobile-nav__cta {
  margin-top: var(--space-lg);
}

/* --- Mobile Sticky CTA --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: var(--space-sm) var(--space-lg);
}

.sticky-cta__inner {
  display: flex;
  gap: var(--space-sm);
  max-width: var(--max-width);
  margin: 0 auto;
}

.sticky-cta .btn {
  flex: 1;
  text-align: center;
  font-size: 0.8125rem;
  padding: 0.625rem 0.75rem;
}

@media (max-width: 1023px) {
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
}

/* --- Cards --- */
.card {
  background: var(--white);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-spring);
  position: relative;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-100);
}

.card--flat:hover {
  transform: none;
}

.card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--blue-600);
  transition: all var(--transition-base);
}

.card:hover .card__icon {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: 0.9375rem;
  color: var(--grey-600);
  line-height: 1.6;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-lg);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-600);
  transition: all var(--transition-base);
}

.card__link:hover { gap: 10px; color: var(--blue-700); }

.card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

/* Sector Card */
.sector-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  border: var(--border-light);
  transition: all var(--transition-spring);
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.sector-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-100);
}

.sector-card:hover::before {
  opacity: 1;
}

.sector-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  margin-bottom: var(--space-lg);
}

.sector-card__icon svg {
  width: 24px;
  height: 24px;
}

.sector-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.sector-card__text {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.6;
}

/* Case Study Card */
.case-card {
  background: var(--white);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-spring);
}

.case-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.case-card__image {
  height: 220px;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  font-size: 0.875rem;
  overflow: hidden;
  position: relative;
}

.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.case-card:hover .case-card__image img {
  transform: scale(1.05);
}

.case-card__body {
  padding: var(--space-xl);
}

.case-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 0.3125rem 0.75rem;
  border-radius: 20px;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.case-card__text {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.6;
}

/* --- Hero --- */
.hero {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0F1B3D 50%, #0B1D51 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { order: 1; }
.hero__visual { order: 2; }

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-lg);
}

.hero__label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--blue-400);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(91, 141, 239, 0.6);
}

.hero h1 {
  margin-bottom: var(--space-lg);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero .btn--secondary {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.25);
}

.hero .btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

.hero__trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--blue-400);
  flex-shrink: 0;
}

.hero__image {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  font-size: 0.875rem;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.3),
    0 0 40px rgba(37, 99, 235, 0.1);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.hero__form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
  margin-top: var(--space-lg);
  border: 2px solid var(--blue-100);
  position: relative;
}

.hero__form-card::before {
  content: "Respond within 2 hours";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-500);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.hero__form-card h3 {
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.hero__form-card > p {
  font-size: 0.8125rem;
  color: var(--grey-500);
  margin-bottom: var(--space-lg);
}

.hero__form-card form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero__form-card .form-input {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.hero__form-card .form-input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--white);
}

.hero__form-note {
  display: block;
  text-align: center;
  font-size: 0.6875rem;
  color: var(--grey-400);
  margin-top: var(--space-sm);
}

@media (min-width: 768px) {
  .hero__visual {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero__form-card {
    margin-top: var(--space-lg);
  }
}

@media (min-width: 768px) {
  .hero {
    padding: var(--space-5xl) 0;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .hero__content { order: 1; }
  .hero__visual { order: 2; }

  .hero__image {
    min-height: 480px;
  }
}

/* Service page hero (full-width light background) */
.hero--service {
  background: var(--grey-50);
  border-bottom: var(--border-light);
}

.hero--service::before,
.hero--service::after {
  display: none;
}

.hero--service .hero__inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero--service h1 {
  color: var(--navy);
}

.hero--service .hero__label {
  color: var(--blue-600);
}

.hero--service .hero__label::before {
  background: var(--blue-600);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}

.hero--service .hero__subtitle {
  margin-left: auto;
  margin-right: auto;
  color: var(--grey-600);
}

.hero--service .btn-group {
  justify-content: center;
}

.hero--service .btn--secondary {
  background: var(--white);
  color: var(--blue-600);
  border-color: var(--grey-300);
}

.hero--service .hero__visual {
  display: none;
}

@media (min-width: 768px) {
  .hero--service .hero__inner {
    grid-template-columns: 1fr;
  }
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--white);
  border-bottom: var(--border-light);
  padding: var(--space-2xl) 0;
  position: relative;
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .stats-bar__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-bar__item {
  text-align: center;
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--grey-200);
  display: none;
}

@media (min-width: 768px) {
  .stats-bar__item:not(:last-child)::after {
    display: block;
  }
}

.stats-bar__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.03em;
}

.stats-bar__number span {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-bar__label {
  font-size: 0.8125rem;
  color: var(--grey-500);
  font-weight: 500;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--navy);
  border-top: none;
  border-bottom: none;
  padding: var(--space-md) 0;
  position: relative;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.trust-bar__item svg {
  width: 18px;
  height: 18px;
  color: var(--blue-400);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .trust-bar__inner {
    gap: var(--space-2xl);
  }
}

/* --- Comparison Section --- */
.comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.comparison__card {
  background: var(--white);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.comparison__card--highlight {
  border-color: transparent;
  border-width: 2px;
  position: relative;
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(135deg, var(--blue-500), var(--blue-400), #818CF8) border-box;
  box-shadow: var(--shadow-glow);
}

.comparison__badge {
  position: absolute;
  top: -14px;
  left: var(--space-xl);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.comparison__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--navy);
}

.comparison__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.comparison__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--grey-600);
}

.comparison__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison__item--positive svg { color: var(--blue-500); }
.comparison__item--negative svg { color: var(--grey-300); }

@media (min-width: 768px) {
  .comparison {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Steps / Process --- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  counter-reset: step;
}

.step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.step__content h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-xs);
}

.step__content p {
  font-size: 0.9375rem;
  color: var(--grey-600);
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps--horizontal {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps--horizontal .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* --- FAQ / Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  border: var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--blue-100);
}

.faq-item.active {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: var(--space-md);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--grey-50);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--grey-400);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--blue-500);
}

.faq-answer {
  display: none;
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* --- Plans / Pricing --- */
.plan-card {
  background: var(--white);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
}

.plan-card--featured {
  border-color: transparent;
  border-width: 2px;
  position: relative;
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(135deg, var(--blue-500), var(--blue-400)) border-box;
  box-shadow: var(--shadow-glow);
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.375rem 1.25rem;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.plan-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.plan-card__desc {
  font-size: 0.875rem;
  color: var(--grey-500);
  margin-bottom: var(--space-lg);
}

.plan-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.plan-card__price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-500);
}

.plan-card__list {
  text-align: left;
  margin: var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.plan-card__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--grey-600);
}

.plan-card__list li svg {
  width: 18px;
  height: 18px;
  color: var(--blue-500);
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- Form --- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8125rem 1rem;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  background: var(--white);
}

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

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

/* --- CTA Section --- */
.cta-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0F1B3D 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.cta-section .section-label {
  color: var(--blue-400);
}

.cta-section__content h2 {
  margin-bottom: var(--space-md);
  color: var(--white);
}

.cta-section__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-xl);
}

.cta-section__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.cta-section__benefit {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
}

.cta-section__benefit svg {
  width: 20px;
  height: 20px;
  color: var(--blue-400);
  flex-shrink: 0;
}

.cta-section .btn--secondary {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.25);
}

.cta-section .btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.cta-section__form-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
}

.cta-section__form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .cta-section__inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: var(--grey-400);
  padding: var(--space-4xl) 0 var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 300px;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

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

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}

.footer__links a:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--blue-400);
  flex-shrink: 0;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.4);
}
.footer__contact-item a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

.footer__bottom a {
  color: rgba(255,255,255,0.3);
}
.footer__bottom a:hover {
  color: var(--white);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: var(--space-md) 0;
  font-size: 0.8125rem;
  color: var(--grey-500);
}

.breadcrumb a {
  color: var(--grey-500);
}
.breadcrumb a:hover {
  color: var(--blue-600);
}

.breadcrumb span {
  margin: 0 var(--space-sm);
  color: var(--grey-300);
}

/* --- Feature Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.feature__icon {
  width: 40px;
  height: 40px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-600);
}

.feature__icon svg {
  width: 20px;
  height: 20px;
}

.feature__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.feature__text {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.6;
}

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--grey-500);
  font-weight: 500;
}

/* --- Scroll Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Staggered reveal for grid children */
.reveal.visible .card,
.reveal.visible .sector-card,
.reveal.visible .case-card,
.reveal.visible .step {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal.visible .card:nth-child(1),
.reveal.visible .sector-card:nth-child(1),
.reveal.visible .case-card:nth-child(1),
.reveal.visible .step:nth-child(1) { animation-delay: 0s; }
.reveal.visible .card:nth-child(2),
.reveal.visible .sector-card:nth-child(2),
.reveal.visible .case-card:nth-child(2),
.reveal.visible .step:nth-child(2) { animation-delay: 0.1s; }
.reveal.visible .card:nth-child(3),
.reveal.visible .sector-card:nth-child(3),
.reveal.visible .case-card:nth-child(3),
.reveal.visible .step:nth-child(3) { animation-delay: 0.2s; }
.reveal.visible .card:nth-child(4),
.reveal.visible .sector-card:nth-child(4),
.reveal.visible .step:nth-child(4) { animation-delay: 0.3s; }
.reveal.visible .sector-card:nth-child(5) { animation-delay: 0.4s; }
.reveal.visible .sector-card:nth-child(6) { animation-delay: 0.5s; }

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }

/* Image placeholder styling */
.img-placeholder {
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  font-size: 0.8125rem;
  border-radius: var(--radius-md);
}

/* Inline list with separators */
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

.inline-list li::before {
  content: '';
  display: none;
}

/* Checkmark list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--grey-600);
}

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

/* Two-col content layout */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.content-grid--reverse .content-grid__text {
  order: 1;
}

.content-grid--reverse .content-grid__visual {
  order: 2;
}

@media (min-width: 768px) {
  .content-grid--reverse .content-grid__text {
    order: 2;
  }
  .content-grid--reverse .content-grid__visual {
    order: 1;
  }
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: var(--grey-200);
  margin: var(--space-2xl) 0;
}

/* Tab-like navigation for service pages */
.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-lg) 0;
  border-bottom: var(--border-light);
}

.service-nav a {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-600);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.service-nav a:hover {
  background: var(--grey-50);
  color: var(--blue-600);
}

.service-nav a.active {
  background: var(--blue-50);
  color: var(--blue-600);
  font-weight: 600;
}

/* --- Hero Scan Effect --- */
.hero__scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-400), transparent);
  opacity: 0.4;
  animation: scanDown 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes scanDown {
  0% { top: 0; opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { top: 100%; opacity: 0; }
}

.hero__grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* --- Urgency Banner --- */
.urgency-banner {
  background: linear-gradient(90deg, var(--blue-700), var(--blue-600), var(--blue-700));
  color: var(--white);
  text-align: center;
  padding: 0.625rem var(--space-lg);
  font-size: 0.8125rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.urgency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.urgency-banner__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  margin-right: var(--space-sm);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(74, 222, 128, 0); }
}

/* --- Testimonials --- */
.testimonials {
  position: relative;
}

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

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  transition: all var(--transition-spring);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-100);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-lg);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: #FBBF24;
  color: #FBBF24;
}

.testimonial-card__quote {
  font-size: 0.9375rem;
  color: var(--grey-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-xl);
  position: relative;
}

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

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--blue-600);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--grey-500);
  margin-top: 2px;
}

.testimonial-card__date {
  display: block;
  font-size: 0.75rem;
  color: var(--grey-400);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: var(--border-light);
}

.testimonial-card__badge {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card__badge svg {
  width: 28px;
  height: 28px;
  color: var(--blue-100);
}

/* Google rating summary */
.testimonial-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg) var(--space-xl);
  background: var(--white);
  border: var(--border-light);
  border-radius: var(--radius-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-summary__score {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.testimonial-summary__stars {
  display: flex;
  gap: 2px;
}

.testimonial-summary__stars svg {
  width: 20px;
  height: 20px;
  fill: #FBBF24;
  color: #FBBF24;
}

.testimonial-summary__text {
  font-size: 0.8125rem;
  color: var(--grey-500);
  margin-top: 2px;
}

/* --- Accreditation Bar --- */
.accreditation-bar {
  padding: var(--space-2xl) 0;
  background: var(--white);
  border-top: var(--border-light);
  border-bottom: var(--border-light);
}

.accreditation-bar__label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-lg);
}

.accreditation-bar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
}

.accreditation-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--grey-500);
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.accreditation-bar__item:hover {
  opacity: 1;
}

.accreditation-bar__item svg {
  width: 32px;
  height: 32px;
  color: var(--grey-400);
}

/* --- Provider Comparison Table --- */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-light);
  min-width: 600px;
}

.compare-table th,
.compare-table td {
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  font-size: 0.875rem;
  border-bottom: var(--border-light);
}

.compare-table thead th {
  background: var(--grey-50);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--grey-600);
}

.compare-table__us {
  background: var(--blue-50) !important;
  color: var(--blue-700) !important;
}

.compare-table__feature {
  text-align: left !important;
  font-weight: 600;
  color: var(--navy);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: var(--grey-50);
}

.compare-tick {
  color: var(--green-600);
  font-weight: 700;
  font-size: 1.125rem;
}

.compare-x {
  color: var(--red-600);
  font-weight: 700;
  font-size: 1.125rem;
}

.compare-maybe {
  color: var(--grey-400);
  font-weight: 700;
  font-size: 1.125rem;
}

/* --- Counter Animation --- */
.counter[data-counted="true"] {
  animation: counterPop 0.3s ease;
}

@keyframes counterPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
