/* ============================================
   Support Plus PC Website - Global Styles
   Design System extracted from Figma
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  color: var(--color-navy);
  background-color: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Design Tokens (CSS Custom Properties) --- */
:root {
  /* Colors */
  --color-primary: #5583fc;
  --color-primary-dark: #4268d4;
  --color-navy: #0f1f4a;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-light-blue: #eaf0ff;
  --color-gray: #333333;
  --color-green: #34a853;
  --color-red: #ea4335;
  --color-yellow: #fbbc05;
  --color-google-blue: #4285f4;

  /* Typography */
  --font-primary: 'Archivo', sans-serif;
  --font-secondary: 'Geist', sans-serif;

  /* Font Sizes */
  --fs-hero: 65px;
  --fs-h1: 48px;
  --fs-h2: 36px;
  --fs-h3: 24px;
  --fs-h4: 20px;
  --fs-body-lg: 18px;
  --fs-body: 16px;
  --fs-body-sm: 14px;
  --fs-btn: 17px;

  /* Line Heights */
  --lh-hero: 65px;
  --lh-h1: 48px;
  --lh-body: 27px;
  --lh-body-lg: 27px;

  /* Letter Spacing */
  --ls-hero: -1.3px;
  --ls-h1: -0.96px;
  --ls-body: 0.36px;

  /* Spacing */
  --section-padding-y: 60px;
  --section-padding-x: 112px;
  --container-max: 1216px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 32px;
  --gap-xl: 52px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.section-padding {
  padding: var(--section-padding-y) var(--section-padding-x);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  color: var(--color-navy);
}

.text-white { color: var(--color-white); }
.text-navy { color: var(--color-navy); }
.text-primary { color: var(--color-primary); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fs-btn);
  line-height: 1.088;
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  text-transform: none;
}

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

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

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

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

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

.btn-white:hover {
  background-color: #f0f0f0;
}

.btn-pcw {
  background-color: #597AF4;
  color: #ffffff;
}

.btn-pcw:hover {
  background-color: #4868d4;
}

.btn-nav {
  font-size: var(--fs-body);
  padding: 14px 24px;
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
}

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

.btn-white-solid {
  background-color: #ffffff;
  color: #0f1f4a;
  border: none;
}

.btn-white-solid:hover {
  background-color: #f0f0f0;
  color: #0f1f4a;
}

/* Arrow icon in buttons */
.btn .arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* --- Top Banner --- */
.top-banner {
  background-color: var(--color-primary);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.top-banner a {
  color: var(--color-white);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  letter-spacing: 0.28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-banner a:hover {
  text-decoration: underline;
}

/* --- Navigation --- */
.navbar {
  background-color: var(--color-white);
  padding: 14px var(--section-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 52px;
  width: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--color-navy);
  transition: color 0.2s ease;
  position: relative;
}

.navbar__link:hover {
  color: var(--color-primary);
}

.navbar__link--dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__link--dropdown .chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.navbar__cta {
  flex-shrink: 0;
}

/* Mobile menu toggle — hidden on desktop, shown on mobile */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X animation when active */
.navbar__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.50);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__title {
  font-size: 65px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 65px;
  letter-spacing: -1.3px;
}

.hero__subtitle {
  font-size: var(--fs-body-lg);
  font-weight: 400;
  color: var(--color-white);
  line-height: 21.6px;
  letter-spacing: var(--ls-body);
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__badges {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  flex-wrap: nowrap;
  justify-content: center;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.32px;
  line-height: 1.5;
  white-space: nowrap;
}

.hero__badge .check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Partner / Featured On Section --- */
.partner {
  padding: 32px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
}

.partner__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--color-navy);
  letter-spacing: -0.48px;
  text-transform: none;
}

.partner__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: nowrap;
}

.partner__logos img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0);
}

/* --- Testimonials Section --- */
.testimonials {
  background-color: var(--color-light-blue);
  padding: var(--section-padding-y) var(--section-padding-x);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonials__header {
  text-align: center;
}

.testimonials__title {
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 48px;
  letter-spacing: -0.96px;
  text-transform: capitalize;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(15, 31, 74, 0.05);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-card__google {
  height: 24px;
  width: auto;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
}

.testimonial-card__stars svg {
  width: 20px;
  height: 20px;
  fill: #F4B400;
}

.testimonial-card__text {
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 30px;
  letter-spacing: 0.4px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: var(--fs-body-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  font-size: var(--fs-body-lg);
  font-weight: 500;
  color: var(--color-navy);
}

.testimonial-card__city {
  font-size: var(--fs-body-sm);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 24px;
  letter-spacing: 0.32px;
  opacity: 0.6;
}

/* --- Why Us Section --- */
.why-us {
  background-color: var(--color-light-blue);
  padding: 112px var(--section-padding-x) 60px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.why-us__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.why-us__title {
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 48px;
  letter-spacing: -0.96px;
}

.why-us__subtitle {
  font-size: var(--fs-body-lg);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1.5;
  letter-spacing: 0.36px;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  row-gap: 40px;
}

.why-us-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.why-us-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.why-us-card__title {
  font-size: var(--fs-h4);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 26.11px;
}

.why-us-card__text {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 24px;
  letter-spacing: 0.32px;
  opacity: 0.8;
}

/* --- Services Section --- */
.services {
  padding: var(--section-padding-y) var(--section-padding-x);
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  background-color: var(--color-light-bg);
}

.services__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.services__title {
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--color-navy);
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-h1);
}

.services__subtitle {
  font-size: var(--fs-body-lg);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1.5;
  letter-spacing: var(--ls-body);
}

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

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-white);
  border: none;
  box-shadow: 0 2px 12px rgba(15, 31, 74, 0.06);
  transition: box-shadow 0.2s ease;
}

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

.service-card__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* 6th card CTA variant */
.service-card--cta {
  background-color: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  gap: 20px;
  border: none;
}

.service-card--cta p {
  color: var(--color-white);
  font-size: var(--fs-body);
  line-height: 1.5;
}

.service-card--cta .btn {
  background: #ffffff;
  color: #5583fc;
  border: 1px solid rgba(255,255,255,0.3);
  align-self: flex-start;
}

.service-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #f7f7fd;
}

.service-card__title {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 26.11px;
}

.service-card__text {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-navy);
  line-height: 27px;
  letter-spacing: 0.36px;
}

.service-card__link {
  font-size: var(--fs-body);
  font-weight: 500;
  color: #0f1f4a;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card__link svg {
  stroke: #0f1f4a;
}

.service-card__link:hover {
  text-decoration: underline;
}

/* --- What We Help With Section --- */
.what-we-help {
  padding: var(--section-padding-y) var(--section-padding-x);
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.what-we-help__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.what-we-help__title {
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--color-navy);
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-h1);
}

.what-we-help__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-lg);
}

.help-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.help-column__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.help-column__icon svg {
  width: 48px;
  height: 48px;
}

.help-column__title {
  font-size: var(--fs-h4);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.3;
}

.help-column__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.help-column__list li {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1.5;
  letter-spacing: 0.32px;
  padding-left: 20px;
  position: relative;
}

.help-column__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-navy);
}

/* --- How It Works Section --- */
.how-it-works {
  background-color: #181B2E;
  padding: var(--section-padding-y) var(--section-padding-x);
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: start;
}

.how-it-works__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.how-it-works__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-height: 500px;
  object-position: center;
}

.how-it-works__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.how-it-works__header {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.how-it-works__title {
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--color-white);
  line-height: 48px;
  letter-spacing: -0.96px;
}

.how-it-works__subtitle {
  font-size: var(--fs-body-lg);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: var(--ls-body);
  opacity: 0.8;
}

.how-it-works__badges {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  flex-wrap: wrap;
}

.how-it-works__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-body-sm);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.32px;
  line-height: 1.5;
  white-space: nowrap;
}

.how-it-works__badge .check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.step-card {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: none;
  transition: background-color 0.2s ease;
}

.step-card:hover {
  background-color: transparent;
}

.step-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.step-card__label {
  font-size: var(--fs-body-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: none;
  letter-spacing: 0.5px;
}

.step-card__title {
  font-size: var(--fs-h4);
  font-weight: 500;
  color: var(--color-white);
}

.step-card__text {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: 0.32px;
  opacity: 0.7;
}

.step-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 4px;
  transition: gap 0.2s ease;
}

.step-card__link:hover {
  gap: 10px;
}

.how-it-works__cta {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}

/* --- Areas We Serve Section --- */
.areas-serve {
  padding: 112px var(--section-padding-x) 60px;
  display: flex;
  gap: 52px;
  align-items: flex-start;
  background-color: #f8f8f8;
}

.areas-serve__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.areas-serve__title {
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--color-navy);
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-h1);
}

.areas-serve__paragraph {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-navy);
  line-height: 24px;
  letter-spacing: 0.32px;
}

.areas-serve__text {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-navy);
  line-height: 24px;
  letter-spacing: 0.32px;
}

.areas-serve__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border-radius: 0;
  border: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 15.23px;
  color: #0f1f4a;
  background-color: transparent;
  transition: color 0.2s ease;
}

.area-tag:hover {
  color: var(--color-primary);
}

.area-tag__arrow {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.area-tag:hover .area-tag__arrow {
  opacity: 1;
  transform: translateX(2px);
}

.areas-serve__map {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.areas-serve__map img {
  width: 100%;
  height: auto;
}

/* --- FAQs Section --- */
.faqs {
  background-color: var(--color-navy);
  padding: var(--section-padding-y) 400px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
}

.faqs__header {
  text-align: center;
}

.faqs__title {
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--color-white);
  line-height: var(--lh-h1);
  letter-spacing: -0.96px;
}

.faqs__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 0;
  overflow: visible;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-body-sm);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-item__icon circle {
  fill: #ffffff;
  stroke: #ffffff;
}

.faq-item__icon path {
  stroke: #0f1f4a;
}

.faq-item__icon circle[r="1"] {
  fill: #0f1f4a;
}

.faq-item__question {
  font-size: var(--fs-body-lg);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  margin: 0 0 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.plus-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .plus-icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: 0.32px;
  opacity: 0.8;
}

.faqs__cta {
  text-align: center;
  margin-top: 8px;
}

/* --- PCW / Personal Care Wisconsin Section --- */
.pcw {
  padding: 112px var(--section-padding-x);
  display: flex;
  gap: var(--gap-xl);
  align-items: center;
}

.pcw__image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pcw__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}

.pcw__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.pcw__title {
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 52.8px;
  letter-spacing: -0.96px;
}

.pcw__subtitle {
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--color-navy);
  margin: 0;
}

.pcw__text {
  font-size: var(--fs-body-lg);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 27px;
  letter-spacing: 0.36px;
}

/* --- Send a Referral Section --- */
.referral {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: transparent;
}

.referral__content {
  background-color: #5583fc;
  padding: 112px 112px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.referral__title {
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--color-white);
  line-height: 48px;
  letter-spacing: -0.96px;
}

.referral__text {
  font-size: var(--fs-body-lg);
  font-weight: 400;
  color: var(--color-white);
  line-height: 27px;
  letter-spacing: 0.36px;
  opacity: 0.9;
}

.referral__image {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.referral__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Referral-2: reversed layout (text left, image right) */
.referral--reversed {
  direction: ltr;
}

/* --- CTA Section --- */
.cta {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 400px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta__text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta__title {
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--color-white);
  line-height: 48px;
  letter-spacing: -0.96px;
}

.cta__text {
  font-size: var(--fs-body-lg);
  font-weight: 400;
  color: var(--color-white);
  line-height: 27px;
  letter-spacing: var(--ls-body);
  opacity: 0.9;
}

.cta__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Blog Section --- */
.blog {
  padding: var(--section-padding-y) var(--section-padding-x);
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.blog__header {
  text-align: center;
}

.blog__title {
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--color-navy);
  line-height: var(--lh-h1);
  letter-spacing: -0.96px;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #F0F5FA;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s ease;
}

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

.blog-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card__date {
  font-size: var(--fs-body-sm);
  font-weight: 400;
  color: var(--color-gray);
}

.blog-card__title {
  font-size: var(--fs-h4);
  font-weight: 500;
  color: var(--color-navy);
}

.blog-card__text {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 24px;
  letter-spacing: 0.32px;
}

.blog-card__link {
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog__cta {
  text-align: center;
}

/* --- Service Content Images (sub-service pages) --- */
.service-content__image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0;
}

.service-content__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .service-content__image img {
    height: 220px;
  }
}

/* --- Footer --- */
.footer {
  background-color: #f8f8f8;
  border-top: 4px solid var(--color-primary);
  padding: 60px var(--section-padding-x) 32px;
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1.5fr;
  gap: var(--gap-lg);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo img {
  height: 52px;
  width: auto;
}

.footer__map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 200px;
  width: 100%;
}

.footer__map img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__column-title {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--color-navy);
  letter-spacing: 0.36px;
}

.footer__socials-title {
  margin-top: 8px;
}

/* Footer social links — horizontal row with constrained icon sizes */
.footer__social-links,
.footer__social {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.footer__social-links a svg,
.footer__social-links a img,
.footer__social a svg,
.footer__social a img {
  width: 24px;
  height: 24px;
}

.footer__column-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__column-links a {
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 15.23px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer__column-links a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.footer__column-links p {
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--color-navy);
  opacity: 0.7;
  line-height: 15.23px;
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__label {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-navy);
  display: block;
}

.footer__contact-item span {
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--color-navy);
  opacity: 0.7;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-word;
}

.footer__contact-item span a {
  color: inherit;
}

.footer__areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 16px;
}

.footer__areas-grid a {
  font-size: var(--fs-body-sm);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 15.23px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.footer__areas-grid a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.footer__divider {
  height: 1px;
  background-color: #e5e7eb;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: var(--fs-body-sm);
  font-weight: 400;
  color: var(--color-navy);
  opacity: 0.6;
}

.footer__credit {
  font-size: var(--fs-body-sm);
  font-weight: 400;
  color: var(--color-navy);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer__credit:hover {
  opacity: 1;
}

/* ============================================
   RESPONSIVE - Tablet (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding-x: 60px;
    --fs-hero: 48px;
    --fs-h1: 36px;
    --lh-hero: 48px;
    --lh-h1: 36px;
  }

  .hero__content { max-width: 100%; }
  .hero { padding: 100px 60px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .pcw { flex-direction: column; }
  .pcw__image { max-height: 400px; }
  .referral { grid-template-columns: 1fr; }
  .referral__image { max-height: 400px; }
  .how-it-works__grid { grid-template-columns: 1fr; }
  .how-it-works__image { max-height: 400px; position: static; }
  .footer__top { grid-template-columns: repeat(3, 1fr); }
  .faqs { padding-left: 60px; padding-right: 60px; }
  .areas-serve { flex-direction: column; }
  .cta { padding: 80px 60px; }
}

/* ============================================
   RESPONSIVE - Mobile (max-width: 768px)
   Figma mobile width: 412px
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding-x: 24px;
    --section-padding-y: 48px;
    --fs-hero: 36px;
    --fs-h1: 28px;
    --fs-h2: 24px;
    --fs-h3: 20px;
    --fs-h4: 18px;
    --lh-hero: 40px;
    --lh-h1: 32px;
    --ls-hero: -0.72px;
    --ls-h1: -0.56px;
  }

  /* Nav — hamburger visible, menu overlay */
  .navbar {
    padding: 12px 24px;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 1000;
  }

  .navbar__menu.active {
    display: flex;
  }

  .navbar__menu .navbar__link {
    font-size: 20px;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__cta--mobile {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 80px 24px;
  }

  .hero__title {
    font-size: 36px;
    line-height: 40px;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__badges {
    flex-direction: column;
    gap: 8px;
  }

  /* Partner logos wrap */
  .partner {
    padding: 32px 24px;
  }

  .partner__logos {
    flex-wrap: wrap;
    gap: 24px;
  }

  .partner__logos img {
    height: 24px;
  }

  /* Grids → single column */
  .services__grid,
  .why-us__grid,
  .testimonials__grid,
  .blog__grid,
  .what-we-help__grid {
    grid-template-columns: 1fr;
  }

  /* Two-column sections → stack */
  .pcw,
  .referral,
  .how-it-works__grid,
  .areas-serve__grid {
    grid-template-columns: 1fr;
  }

  .pcw {
    flex-direction: column;
  }

  /* How It Works */
  .how-it-works__image {
    position: static;
  }

  .how-it-works__image img {
    min-height: 300px;
  }

  .how-it-works__steps {
    gap: 32px;
  }

  .how-it-works__badges {
    flex-direction: column;
    gap: 12px;
  }

  .how-it-works__cta {
    flex-direction: column;
  }

  .how-it-works__cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Areas We Serve */
  .areas-serve {
    flex-direction: column;
    padding: var(--section-padding-y) var(--section-padding-x);
  }

  .areas-serve__tags {
    gap: 8px;
  }

  .area-tag {
    font-size: 13px;
  }

  /* FAQs */
  .faqs {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* CTA */
  .cta {
    padding: 60px 24px;
    min-height: auto;
  }

  .cta__buttons {
    flex-direction: column;
  }

  /* Referral */
  .referral {
    grid-template-columns: 1fr;
  }

  .referral__content {
    padding: var(--section-padding-y) var(--section-padding-x);
  }

  .referral__image {
    min-height: 300px;
  }

  .referral__image img {
    border-radius: 0;
  }

  /* Blog */
  .blog__header {
    flex-direction: column;
    gap: 16px;
  }

  .blog__title {
    display: block;
    visibility: visible;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__map {
    max-width: 100%;
    display: none; /* Hide map on mobile — too small to be useful */
  }

  .footer__map img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .footer__column--areas {
    grid-column: 1 / -1;
  }

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

  .footer__social-links,
  .footer__social {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .footer__column-links a {
    text-decoration: underline;
    text-decoration-color: rgba(15, 31, 74, 0.25);
    text-underline-offset: 3px;
  }

  .footer__areas-grid a {
    text-decoration: underline;
    text-decoration-color: rgba(15, 31, 74, 0.25);
    text-underline-offset: 3px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ============================================
   RESPONSIVE - Small Mobile (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --fs-hero: 28px;
    --fs-h1: 24px;
    --lh-hero: 32px;
    --lh-h1: 28px;
  }

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

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

  .hero__title {
    font-size: 28px;
    line-height: 32px;
  }
}

