/* ============================================
   RELIANT BUSINESS INSURANCE - Global Styles
   Brand Colors from Logo:
   Primary Blue: #1B5FAA
   Primary Green: #2EAB4B
   Dark Blue: #0D3B6F
   Light Blue: #E8F1FA
   ============================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1B5FAA;
  --blue-dark: #0D3B6F;
  --blue-darker: #061E3A;
  --blue-light: #E8F1FA;
  --blue-50: #F0F6FC;
  --green: #2EAB4B;
  --green-dark: #228B3A;
  --green-light: #E6F7EA;
  --white: #FFFFFF;
  --gray-50: #F8FAFB;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 6px 16px rgba(0,0,0,0.05);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--gray { background: var(--gray-50); }
.section--blue { background: var(--blue-dark); color: var(--white); }
.section--blue h2, .section--blue h3, .section--blue p { color: var(--white); }
.section--blue-light { background: var(--blue-50); }
.section--green-light { background: var(--green-light); }
.section--warm { background: linear-gradient(180deg, #FAFBFE 0%, var(--blue-50) 100%); }
.section--gradient-subtle { background: linear-gradient(135deg, var(--blue-50) 0%, var(--green-light) 100%); }

/* --- Typography --- */
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 20px;
  color: var(--gray-900);
}
.section--blue .section-title { color: var(--white); }
.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,171,75,0.3);
}
.btn--secondary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}
.btn--secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--blue-dark);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}
.btn--dark:hover {
  background: var(--blue-darker);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,59,111,0.3);
}
.btn--sm { padding: 10px 24px; font-size: 0.875rem; }
.btn--lg { padding: 18px 40px; font-size: 1rem; }

/* --- Header/Nav --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
}
.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo img { height: 48px; width: auto; }
.header__logo-text { display: flex; flex-direction: column; }
.header__logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.header__logo-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  position: relative;
}
.nav__link:hover, .nav__link--active { color: var(--blue); background: var(--blue-50); }
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 260px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--gray-700);
}
.nav__dropdown-item:hover { background: var(--blue-50); color: var(--blue); }
.nav__dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__dropdown-icon svg { width: 18px; height: 18px; color: var(--blue); }
.header__actions { display: flex; align-items: center; gap: 16px; }
.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.9375rem;
}
.header__phone svg { color: var(--green); }
.header__phone:hover { color: var(--blue); }

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  position: relative;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Full-screen mobile nav overlay */
.nav--open {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 1001;
  padding: 100px 32px 60px;
  animation: fadeInMenu 0.3s ease;
}
@keyframes fadeInMenu {
  from { opacity: 0; }
  to { opacity: 1; }
}
.nav--open .nav__link {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 16px 24px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-md);
  color: var(--gray-800);
  font-family: var(--font-heading);
}
.nav--open .nav__link:hover,
.nav--open .nav__link:active {
  background: var(--blue-50);
  color: var(--blue);
}
.nav--open .nav__dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  min-width: auto;
  width: 100%;
  max-width: 400px;
  padding: 0 0 8px 0;
  background: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.nav--open .nav__dropdown.open .nav__dropdown-menu {
  max-height: 600px;
}
.nav--open .nav__dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.nav--open .nav__dropdown-item {
  justify-content: center;
  font-size: 1rem;
  padding: 12px 16px;
}
.nav--open .nav__dropdown-icon {
  display: none;
}
.mobile-nav__cta {
  display: none;
}
.nav--open ~ .mobile-nav__cta,
.nav--open .mobile-nav__cta {
  display: flex;
}
/* Phone number in mobile menu */
.mobile-nav-phone {
  display: none;
}
.nav--open .mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 16px;
  padding: 12px 24px;
}
.nav--open .mobile-nav-phone svg {
  width: 20px;
  height: 20px;
}
/* CTA button in mobile menu */
.nav--open .mobile-nav-cta {
  display: inline-flex;
  margin-top: 12px;
}
.mobile-nav-cta {
  display: none;
}
/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-darker) 0%, var(--blue-dark) 50%, var(--blue) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(46,171,75,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__content { color: var(--white); }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,171,75,0.15);
  border: 1px solid rgba(46,171,75,0.3);
  color: #7CDB94;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero__badge svg { width: 16px; height: 16px; }
.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero__title span { color: #7CDB94; }
.hero__text {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero right side visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 440px;
  width: 100%;
}
.hero__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__card-step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.hero__card-step:last-child { margin-bottom: 0; }
.hero__card-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.hero__card-step-title {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: 4px;
}
.hero__card-step-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* Floating elements */
.hero__float {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.hero__float--1 { top: 110px; right: 40px; animation-delay: 0s; z-index: 10; }
.hero__float--2 { bottom: 160px; left: 48%; animation-delay: 2s; z-index: 10; }
.hero__float-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__float-icon svg { width: 20px; height: 20px; color: var(--white); }
.hero__float-text { font-size: 0.8125rem; font-weight: 600; color: var(--white); }
.hero__float-sub { font-size: 0.75rem; color: rgba(255,255,255,0.75); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --- Glassmorphism Card Effects --- */
/* Cards on tinted sections get frosted glass look */
.section--blue-light .service-card,
.section--green-light .testimonial-card,
.section--warm .why-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 4px 24px rgba(27,95,170,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.section--blue-light .service-card:hover,
.section--green-light .testimonial-card:hover,
.section--warm .why-card:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-xl);
}

/* News, blog, FAQ and other cards on tinted backgrounds */
.section--blue-light .news-card,
.section--blue-light .blog-card,
.section--blue-light .faq-item,
.section--green-light .news-card,
.section--warm .mv-card,
.section--warm .team-card,
.section--gradient-subtle .contact-form {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 4px 24px rgba(27,95,170,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.section--blue-light .news-card:hover,
.section--blue-light .blog-card:hover,
.section--green-light .news-card:hover,
.section--warm .mv-card:hover,
.section--warm .team-card:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.95);
}

/* Glass process step numbers */
.process-step__num {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(46,171,75,0.12);
}

/* Boost text contrast on glassmorphism cards */
.section--blue-light .service-card__text,
.section--green-light .testimonial-card__text,
.section--warm .why-card__text,
.section--blue-light .news-card__excerpt,
.section--warm .mv-card__text,
.section--warm .team-card__bio,
.section--warm .contact-info-card__text {
  color: var(--gray-700);
}

/* Glass contact info cards */
.section--warm .contact-info-card,
.section--blue-light .contact-info-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  z-index: 3;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-bar__item svg { width: 32px; height: 32px; opacity: 0.6; }
.trust-bar__item img { height: 36px; opacity: 0.5; filter: grayscale(1); transition: var(--transition); }
.trust-bar__item:hover img { opacity: 1; filter: none; }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-card__icon { background: var(--blue); }
.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
  transition: var(--transition);
}
.service-card:hover .service-card__icon svg { color: var(--white); }
.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}
.service-card__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card__link svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.service-card__link:hover { color: var(--green); }
.service-card__link:hover svg { transform: translateX(4px); }

/* --- Process / Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
}
.process-step__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.testimonial-card__stars svg { width: 18px; height: 18px; color: #FBBF24; fill: #FBBF24; }
.testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue);
  font-size: 1rem;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-900);
}
.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--gray-600);
}
.testimonial-card__google {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  opacity: 0.4;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(ellipse, rgba(46,171,75,0.12) 0%, transparent 60%);
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner__text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.why-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-card__icon svg { width: 28px; height: 28px; color: var(--blue); }
.why-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- News / Blog --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.news-card__image {
  height: 200px;
  background: var(--blue-50);
  background-size: cover;
  background-position: center;
  position: relative;
}
.news-card__date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.news-card__body { padding: 24px; }
.news-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
  line-height: 1.4;
}
.news-card__excerpt {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.news-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.news-card__link:hover { color: var(--green); }

/* --- Footer --- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}
.footer .header__logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer__brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 20px;
  color: rgba(255,255,255,0.7);
}
.footer__heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 24px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--green); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--green); }

/* --- Page Header (for internal pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--blue-darker) 0%, var(--blue-dark) 50%, var(--blue) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(46,171,75,0.06) 0%, transparent 60%);
}
.page-header__content { position: relative; z-index: 1; max-width: 700px; }
.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.page-header__breadcrumb a { color: rgba(255,255,255,0.7); }
.page-header__breadcrumb a:hover { color: var(--white); }
.page-header__breadcrumb svg { width: 14px; height: 14px; }
.page-header__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-header__text {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

/* --- About Page Team --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.team-card__image {
  height: 320px;
  background: var(--gray-100);
  background-size: cover;
  background-position: center top;
}
.team-card__body { padding: 28px; }
.team-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- Mission / Vision --- */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mv-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
}
.mv-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mv-card__icon--blue { background: var(--blue-50); }
.mv-card__icon--blue svg { color: var(--blue); }
.mv-card__icon--green { background: var(--green-light); }
.mv-card__icon--green svg { color: var(--green); }
.mv-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.mv-card__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-50); }
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  gap: 16px;
}
.faq-item__question:hover { color: var(--blue); }
.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.active .faq-item__icon {
  background: var(--blue);
  transform: rotate(45deg);
}
.faq-item__icon svg { width: 14px; height: 14px; color: var(--gray-500); }
.faq-item.active .faq-item__icon svg { color: var(--white); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-item__answer { max-height: 800px; }
.faq-item__answer-inner {
  padding: 0 24px 24px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
}
.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card__icon svg { width: 22px; height: 22px; color: var(--white); }
.contact-info-card__title {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 4px;
  color: var(--gray-900);
}
.contact-info-card__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-50);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* --- Service Detail --- */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail__grid--reverse { direction: rtl; }
.service-detail__grid--reverse > * { direction: ltr; }
.service-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  background-size: cover;
  background-position: center;
}
.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.service-detail__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-600);
}
.service-detail__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-detail__check svg { width: 12px; height: 12px; color: var(--green); }

/* --- Hours Table --- */
.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--gray-100); }
.hours-table td {
  padding: 12px 0;
  font-size: 0.9375rem;
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--gray-700);
}
.hours-table td:last-child { color: var(--gray-600); text-align: right; }

/* --- Blog list page --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-xl); border-color: transparent; transform: translateY(-3px); }
.blog-card__image {
  background: var(--gray-100);
  background-size: cover;
  background-position: center;
  min-height: 200px;
}
.blog-card__body { padding: 28px; display: flex; flex-direction: column; }
.blog-card__meta {
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.blog-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

/* --- Article Detail --- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--gray-900);
  line-height: 1.3;
}
.article-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--gray-900);
}
.article-content p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 20px;
}
.article-content ul, .article-content ol {
  margin: 16px 0 24px 20px;
  list-style: disc;
}
.article-content ol { list-style: decimal; }
.article-content li {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 4px;
}
.article-content blockquote {
  margin: 28px 0;
  padding: 24px 28px;
  background: var(--blue-50);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.0625rem;
  color: var(--gray-800);
  font-style: italic;
  line-height: 1.7;
}
.article-content strong { color: var(--gray-900); }
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.article-meta__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}
.article-meta__date svg { width: 16px; height: 16px; color: var(--gray-400); }
.article-meta__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--blue-50);
  color: var(--blue);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50px;
}
.article-hero-image {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  background-size: cover;
  background-position: center;
}

/* Article Sidebar */
.article-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gray-900);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
}
.sidebar-card__link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
  transition: var(--transition);
}
.sidebar-card__link:last-child { border-bottom: none; }
.sidebar-card__link:hover { color: var(--blue); padding-left: 6px; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  color: var(--white);
}
.sidebar-cta__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.sidebar-cta__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
}
.article-back svg { width: 16px; height: 16px; }
.article-back:hover { color: var(--green); }
.article-back:hover svg { transform: translateX(-3px); transition: transform 0.3s ease; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .hero__float { display: none; }
  .hero { min-height: auto; padding: 140px 0 100px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; text-align: center; padding: 48px 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail__grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail__grid--reverse { direction: ltr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 200px 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav { display: none; }
  .mobile-toggle { display: flex; }
  .header__phone { display: none; }
  .header__actions .btn { display: none; }
  .services-grid, .testimonials-grid, .team-grid, .mv-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-grid::before { display: none; }
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
  }
  .hero__stat-number { font-size: 1.5rem; }
  .hero__stat-label { font-size: 0.6875rem; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { text-align: center; justify-content: center; }
  .news-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .blog-card { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { text-align: center; justify-content: center; }
  .page-header { padding: 120px 0 60px; }
  .page-header__title { font-size: 1.75rem; }
  .trust-bar__inner { gap: 24px; }
  .trust-bar__item { font-size: 0.75rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__stat-number { font-size: 1.25rem; }
  .hero__stat-label { font-size: 0.625rem; letter-spacing: 0; }
  .hero__stats { gap: 8px; }
  .hero__title { font-size: 2rem; }
  .hero__text { font-size: 1rem; }
  .hero { padding: 120px 0 80px; }
  .why-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .trust-bar__inner { flex-direction: column; gap: 12px; }
}

/* ============================================
   Reliant Fields — builder helpers (appended)
   ============================================ */

/* Responsive grid utility used by builder sections */
.rbf-grid { display: grid; gap: 24px; }
.rbf-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.rbf-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.rbf-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.rbf-grid[data-cols="5"] { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) {
  .rbf-grid[data-cols="3"],
  .rbf-grid[data-cols="4"],
  .rbf-grid[data-cols="5"] { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .rbf-grid { grid-template-columns: 1fr !important; }
}

/* Centred subtitle helper */
.mx-auto { margin-left: auto; margin-right: auto; }

/* Standalone stats block */
.rbf-stats { text-align: center; }
.rbf-stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.section--blue .rbf-stat__number { color: #7CDB94; }
.rbf-stat__label {
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section--blue .rbf-stat__label { color: rgba(255,255,255,0.75); }

/* Form notices */
.rbf-notice {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.9375rem;
  font-weight: 500;
}
.rbf-notice--success { background: var(--green-light); color: var(--green-dark); border: 1px solid #b7e6c2; }
.rbf-notice--error { background: #FEECEC; color: #B42318; border: 1px solid #f6c9c4; }

/* Pagination */
.reliant-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  margin: 0 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.9rem;
}
.reliant-pagination .page-numbers.current { background: var(--blue); color: #fff; border-color: var(--blue); }
.reliant-pagination a.page-numbers:hover { border-color: var(--blue); color: var(--blue); }

/* Accessibility helper used by WordPress */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
}

/* WordPress alignment / caption defaults inside article content */
.article-content img { border-radius: var(--radius-md); height: auto; }
.article-content .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.article-content .alignright { float: right; margin: 0 0 16px 24px; }
.article-content .alignleft { float: left; margin: 0 24px 16px 0; }
.admin-bar .header { top: 32px; }
@media (max-width: 782px) { .admin-bar .header { top: 46px; } }

/* Video section — responsive 16:9 embed */
.rbf-video {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #000;
}
.rbf-video iframe,
.rbf-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@supports not (aspect-ratio: 16 / 9) {
  .rbf-video { height: 0; padding-bottom: 56.25%; }
}

/* ── Header phone fix: size the icon + keep the number on one line ── */
.header__phone { white-space: nowrap; }
.header__phone svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── FAQ accordion fix: ensure answers expand (host CSS optimizer was overriding max-height) ── */
.faq-item.active .faq-item__answer { max-height: 1500px !important; }
