/* ========================================
   CSS VARIABLES & RESET
   ======================================== */

:root {
  /* Colors */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-body-bg: #ffffff;
  --color-text: #111111;
  --color-navy: #172C4D;
  --color-navy-dark: #213E6E;
  --color-teal: #4EC1BC;
  --color-teal-hover: #40B5AF;
  --color-light-gray: #EFF5FA;
  --color-link: #1e73be;
  --color-gray: #f0f0f0;

  /* Typography */
  --font-body: 'Raleway', sans-serif;
  --font-heading: 'Playfair Display', 'Fjord BC', serif;
  --font-size-body: 18px;
  --font-size-h1: 42px;
  --font-size-h2: 38px;
  --font-size-h3: 30px;
  --font-size-h4: 24px;
  --font-size-h5: 22px;

  /* Layout */
  --max-width: 1280px;
  --spacing-sm: 15px;
  --spacing-md: 30px;
  --spacing-lg: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-body-bg);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.3em;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
  margin-bottom: 40px;
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-teal);
}

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

.cta-btn, .reg-btn, .form-submit {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  padding: 15px 25px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  border-radius: 2px;
  font-family: var(--font-body);
}

.cta-btn {
  background-color: var(--color-teal);
  color: var(--color-white);
}

.cta-btn:hover {
  background-color: var(--color-teal-hover);
  text-decoration: none;
}

.reg-btn {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.reg-btn:hover {
  background-color: var(--color-navy-dark);
  text-decoration: none;
}

.form-submit {
  background-color: var(--color-teal);
  color: var(--color-white);
  padding: 16px 0;
  border-radius: 8px;
  font-size: 18px;
  width: 100%;
}

.form-submit:hover {
  background-color: var(--color-teal-hover);
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-lg) 0;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 8px 0;
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 15px var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 255px;
  height: auto;
  transition: width 0.3s ease;
}

header.scrolled .logo img {
  width: 120px;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 0;
  align-items: center;
}

nav a {
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 15px;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

nav a:hover {
  color: var(--color-teal);
}

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown > a::after {
  content: ' ▼';
  font-size: 10px;
  margin-left: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-gray);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--color-navy);
  font-size: 14px;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #e8e8e8;
  color: var(--color-teal);
}

.header-cta {
  margin-left: 20px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-navy);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  position: relative;
  padding: 100px var(--spacing-md);
}

/* .hero::before removed - overlay is handled via inline style */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--color-white);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-white);
  fill: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(10px);
  }
  60% {
    transform: translateX(-50%) translateY(5px);
  }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(23, 44, 77, 0.3), rgba(23, 44, 77, 0.7));
  z-index: 1;
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: var(--spacing-md);
  color: var(--color-white);
  text-align: left;
}

.service-card h3 {
  color: var(--color-white);
  margin-bottom: 15px;
  font-size: 24px;
}

.service-card p {
  margin-bottom: 20px;
  font-size: 16px;
}

.service-card .cta-btn {
  display: inline-block;
}

/* ========================================
   50/50 LAYOUT (Meet the Family Section)
   ======================================== */

.row-50-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.row-50-50-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.row-50-50-content h2 {
  margin-bottom: 30px;
}

.row-50-50-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.step {
  text-align: center;
  padding: var(--spacing-md);
}

.step-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--color-teal);
  margin-bottom: 15px;
  font-family: var(--font-body);
}

.step h4 {
  margin-bottom: 15px;
  font-size: 20px;
}

.step p {
  font-size: 16px;
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS / WHY TRUST US
   ======================================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.testimonial-card {
  background-color: var(--color-light-gray);
  padding: var(--spacing-md);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.8;
  flex-grow: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial-rating {
  color: var(--color-teal);
  margin-top: 10px;
  font-size: 14px;
}

/* ========================================
   CTA BAND SECTION
   ======================================== */

.cta-band {
  background-color: var(--color-navy);
  color: var(--color-white);
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md);
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.cta-band p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-band-contact {
  margin-bottom: 30px;
}

.cta-band-phone {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-teal);
}

/* ========================================
   SERVICE AREA SECTION
   ======================================== */

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.service-area-item {
  padding: var(--spacing-md);
  background-color: var(--color-light-gray);
  border-radius: 8px;
  text-align: center;
}

.service-area-item h4 {
  margin-bottom: 10px;
  color: var(--color-navy);
}

.service-area-map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  margin-top: var(--spacing-md);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: flex-start;
}

.contact-info {
  padding: var(--spacing-md);
}

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--color-navy);
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-navy);
}

.contact-item a {
  color: var(--color-link);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--color-teal);
}

/* ========================================
   FORMS
   ======================================== */

.contact-form {
  background-color: var(--color-light-gray);
  padding: var(--spacing-lg);
  border-radius: 8px;
}

.contact-form h3 {
  margin-bottom: 30px;
  color: var(--color-navy);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 5px rgba(78, 193, 188, 0.3);
}

.contact-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
  margin-bottom: var(--spacing-md);
}

.form-submit {
  margin-top: 10px;
}

/* Form Messages */
.form-message {
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 15px;
  font-size: 15px;
}

.form-message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

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

footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: var(--spacing-lg) var(--spacing-md);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
  color: var(--color-white);
  margin-bottom: 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-teal);
}

.footer-logo img {
  width: 180px;
  height: auto;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-phone {
  display: inline-block;
  margin-top: 20px;
}

.footer-cta {
  margin-top: 20px;
}

.footer-bottom {
  background-color: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding: 20px var(--spacing-md);
  font-size: 14px;
  max-width: 100%;
}

.footer-bottom-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

@media (max-width: 1024px) {
  :root {
    --font-size-h1: 36px;
    --font-size-h2: 32px;
    --font-size-h3: 26px;
    --spacing-lg: 45px;
  }

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

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

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

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

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-top: 1px solid #eee;
    padding: 0;
    gap: 0;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 15px var(--spacing-md);
    border-bottom: 1px solid #eee;
    width: 100%;
    text-align: left;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background-color: #f5f5f5;
    box-shadow: none;
    border-radius: 0;
  }

  .nav-item-dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-item-dropdown > a::after {
    float: right;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-h1: 32px;
    --font-size-h2: 30px;
    --font-size-h3: 26px;
    --font-size-body: 16px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
  }

  .header-container {
    padding: 12px var(--spacing-md);
  }

  .logo img {
    width: 200px;
  }

  header.scrolled .logo img {
    width: 100px;
  }

  nav {
    justify-content: flex-start;
  }

  nav a {
    padding: 12px 12px;
    font-size: 13px;
  }

  .header-cta {
    margin-left: 10px;
  }

  .cta-btn, .reg-btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .hero {
    min-height: 400px;
    padding: 60px var(--spacing-md);
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .service-card h3 {
    font-size: 22px;
  }

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

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

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

  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: var(--spacing-md);
  }

  .contact-form input[type="text"],
  .contact-form input[type="tel"],
  .contact-form input[type="email"],
  .contact-form textarea {
    font-size: 16px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.pt-lg {
  padding-top: var(--spacing-lg);
}

.pb-lg {
  padding-bottom: var(--spacing-lg);
}

.hidden {
  display: none;
}

.light-gray-bg {
  background-color: var(--color-light-gray);
}

.navy-bg {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.navy-bg h2, .navy-bg h3, .navy-bg h4 {
  color: var(--color-white);
}

/* ========================================
   PAGE HERO (shorter than homepage hero)
   ======================================== */

.page-hero {
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  position: relative;
  padding: 80px var(--spacing-md);
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-hero h5 {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 30px;
}

/* ========================================
   SERVICE AREA HERO WITH SIDEBAR FORM
   ======================================== */

.area-hero {
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  position: relative;
  padding: 60px var(--spacing-md);
}

.area-hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.area-hero-content h3 {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: none;
  font-weight: 500;
}

.area-hero-content h1 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.area-hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 20px;
}

/* ========================================
   SIDEBAR FORM
   ======================================== */

.sidebar-form {
  background: var(--color-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.sidebar-form h4 {
  color: var(--color-navy);
  margin-bottom: 10px;
  font-size: 22px;
}

.sidebar-form p {
  color: var(--color-text);
  font-size: 15px;
  margin-bottom: 20px;
}

.sidebar-form input,
.sidebar-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 12px;
}

.sidebar-form textarea {
  resize: vertical;
}

.sidebar-form .form-submit {
  width: 100%;
  margin-top: 5px;
}

/* ========================================
   INFO BOXES (phone/hours)
   ======================================== */

.info-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 25px;
}

.info-box {
  background: var(--color-light-gray);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.info-box-icon {
  font-size: 24px;
  color: var(--color-teal);
  margin-bottom: 8px;
}

.info-box h4 {
  font-size: 14px;
  color: var(--color-navy);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-box p, .info-box a {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 0;
}

/* ========================================
   FEATURE GRID (4 columns with icons)
   ======================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: var(--color-light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-teal);
}

.feature-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 15px;
  line-height: 1.6;
}

/* ========================================
   CTA BAND WITH BACKGROUND IMAGE
   ======================================== */

.cta-band-image {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  color: var(--color-white);
}

.cta-band-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23, 44, 77, 0.85);
}

.cta-band-image .container {
  position: relative;
  z-index: 2;
}

.cta-band-image h2 {
  color: var(--color-white);
}

/* ========================================
   CHECKLIST GRID
   ======================================== */

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checklist-item .check-icon {
  color: var(--color-teal);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.checklist-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
  text-transform: none;
}

.checklist-item p {
  font-size: 15px;
  margin-bottom: 0;
}

/* ========================================
   STEPS WITH NUMBERS
   ======================================== */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  padding: 20px;
}

.process-step .step-num {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: var(--color-teal);
  color: white;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
}

/* ========================================
   REVIEW CARDS
   ======================================== */

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.review-card {
  background: var(--color-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.review-card .reviewer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-light-gray);
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-navy);
}

.review-card .reviewer-name {
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 5px;
}

.review-card .review-stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 15px;
}

.review-card .review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
}

/* ========================================
   WHY TRUST LIST
   ======================================== */

.trust-list {
  list-style: none;
  padding: 0;
}

.trust-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
}

.trust-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: bold;
}

@media (max-width: 1024px) {
  .area-hero-container {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-cards {
    grid-template-columns: 1fr;
  }
  .checklist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .info-boxes {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .page-hero {
    min-height: 300px;
    padding: 60px var(--spacing-md);
  }
  .area-hero {
    min-height: 400px;
  }
}
