@charset "UTF-8";
/* ============================================
   Credit Haven - site.css
   Complete stylesheet for all pages
   ============================================ */
/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary */
  --color-primary-blue: #243276;
  --color-blue-500: #233376;
  --color-blue-50: #E9EBF1;
  --color-blue-100: #BBC0D5;
  /* Green / Teal */
  --color-green-500: #8CC866;
  --color-green-600: #7FB65D;
  --color-green-700: #638E48;
  --color-teal-500: #59B2A2;
  --color-teal-600: #51A293;
  /* Neutrals */
  --color-black-500: #121212;
  --color-black-400: #414141;
  --color-dark-gray: #4A4A4A;
  --color-medium-gray: #575757;
  --color-navy: #183B56;
  --color-slate: #5A7184;
  --color-muted-blue: #92AABD;
  --color-dark-slate: #3F475C;
  --color-deep-purple: #170F49;
  --color-white: #FFFFFF;
  /* Accent */
  --color-cyan: #0BC0EB;
  --color-neutral-300: #F1F2F9;
  /* Shadows */
  --shadow-card: 0px 15px 25px rgb(0 0 0 / 0.06);
  --shadow-search: 10px 20px 40px rgb(195 199 197 / 0.1);
  /* Radius */
  --radius-lg: 10px;
  --radius-sm: 4px;
  --radius-round: 36px;
  --radius-xs: 2px;
  /* Layout */
  --max-width: 1512px;
  --content-width: 1392px;
  --side-padding: 60px;
  --mobile-padding: 20px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black-400);
  background: var(--color-white);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

button, input {
  font-family: inherit;
  outline: none;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--content-width);
  padding: 0 var(--side-padding);
  margin: 0 auto;
}

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

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 700;
}

h1 {
  font-size: 70px;
  line-height: 100px;
  color: var(--color-primary-blue);
}

h2 {
  font-size: 36px;
  line-height: normal;
  color: var(--color-dark-gray);
  letter-spacing: 0.72px;
}

h3 {
  font-size: 36px;
  line-height: normal;
  color: var(--color-primary-blue);
}

.section-subtitle {
  margin: 0 20px;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-medium-gray);
  text-align: center;
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 25px;
}

.underline-accent {
  display: block;
  width: 70px;
  height: 4px;
  margin: 0 auto;
  background: var(--color-green-600);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  gap: 0.25em;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 16px 30px;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  color: var(--color-white);
  letter-spacing: -0.54px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
  text-box: trim-both cap alphabetic;
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}
.btn-primary:active,
.btn-secondary:active {
  transform: translateY(0);
}

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

.btn-secondary {
  color: var(--color-white);
  background: var(--color-green-700);
}
.btn-secondary:hover {
  background: var(--color-green-600);
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 92px;
  background: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav .container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  text-decoration: none;
}

.nav-logo img {
  height: 50px;
}

.nav-logo-text {
  padding-bottom: 5px;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-blue);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  padding-bottom: 5px;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-navy);
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-green-700);
}

.nav-links a.active {
  color: var(--color-green-700);
  border-bottom-color: var(--color-green-700);
}

.nav-cta {
  flex-shrink: 0;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

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

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav menu */
.nav-mobile-menu {
  position: fixed;
  inset: 92px 0 0;
  z-index: 99;
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 30px var(--mobile-padding);
  background: var(--color-white);
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  padding: 16px 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-blue-50);
}
.nav-mobile-menu a:not(.btn-primary) {
  color: var(--color-navy);
}

.nav-mobile-menu a.active {
  color: var(--color-green-700);
}

.nav-mobile-menu .btn-primary {
  width: 100%;
  margin-top: 24px;
  text-align: center;
}

/* ---------- Hero Section (Homepage) ---------- */
.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  border-radius: 5px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 82% 98%, rgba(63, 173, 165, 0.3) 0%, rgba(118, 192, 125, 0.1) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  min-height: 840px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 747px;
}

.hero-heading {
  position: relative;
}

.hero-heading h1 {
  position: relative;
  z-index: 1;
}

.hero-heading .highlight {
  position: relative;
  display: inline;
}

.hero-heading .highlight::after {
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 35px;
  content: "";
  background: var(--color-green-600);
  opacity: 0.7;
}

.hero-subtext {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-black-400);
  letter-spacing: -0.03em;
}

.hero-subtext strong {
  font-weight: 700;
}

.hero-find-plan h3 {
  font-size: 36px;
  color: var(--color-blue-500);
}

.hero-categories {
  display: flex;
  gap: 20px;
}

.hero-category-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 91px;
  height: 84px;
  padding: 16px;
  color: var(--color-blue-500);
  cursor: pointer;
  background: var(--color-white);
  border: 1px solid var(--color-blue-50);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-category-item:hover {
  border-color: var(--color-blue-100);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-category-item i {
  font-size: 24px;
}

.hero-category-item span {
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.14px;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 775px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Decorative elements */
.hero-circle-lg {
  position: absolute;
  top: 175px;
  right: 50px;
  z-index: 0;
  width: 594px;
  height: 594px;
  border: 2px solid var(--color-teal-500);
  border-radius: 50%;
  opacity: 0.3;
}

.hero-circle-sm {
  position: absolute;
  top: 219px;
  right: 72px;
  z-index: 0;
  width: 550px;
  height: 550px;
  border: 2px solid var(--color-teal-500);
  border-radius: 50%;
  opacity: 0.2;
}

/* Floating cards on hero */
.hero-float-card {
  position: absolute;
  z-index: 2;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-stat-card {
  right: 60px;
  bottom: 150px;
  min-width: 286px;
  padding: 30px;
}

.hero-stat-card .stat-label {
  margin-bottom: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-muted-blue);
}

.hero-stat-card .stat-avatars {
  display: flex;
  gap: 0;
}

.hero-stat-card .stat-avatars img {
  width: 56px;
  height: 56px;
  margin-left: -14px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
}

.hero-stat-card .stat-avatars img:first-child {
  margin-left: 0;
}

/* Decorative dots pattern */
.hero-dots {
  position: absolute;
  top: 175px;
  right: 30px;
  z-index: 0;
  opacity: 0.5;
}

/* ---------- Hero Section (Sub-pages) ---------- */
.hero-subpage {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.hero-subpage .hero-bg {
  background: radial-gradient(ellipse at 68% 46%, rgba(63, 173, 165, 0.3) 0%, rgba(118, 192, 125, 0.1) 100%);
}

.hero-subpage .container {
  position: relative;
  z-index: 1;
  min-height: 840px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-subpage .hero-content {
  gap: 40px;
  max-width: 747px;
}

.hero-subpage .hero-heading .highlight::after {
  background: var(--color-green-500);
}

.hero-subpage .hero-subtext {
  max-width: 588px;
}

/* Search bar */
.search-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 450px;
  height: 82px;
  padding: 12px 12px 12px 27px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-search);
}

.search-bar input {
  flex: 1;
  width: auto;
  min-width: 0;
  max-width: none;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  background: transparent;
}

.search-bar input::-moz-placeholder {
  color: var(--color-slate);
  opacity: 0.5;
}

.search-bar input::placeholder {
  color: var(--color-slate);
  opacity: 0.5;
}

.search-bar .btn-secondary {
  flex-shrink: 0;
}

.hero-location {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-blue-500);
}

.hero-location .location-tag {
  padding: 4px 5px;
  font-size: 14px;
  color: var(--color-dark-slate);
  background: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xs);
  opacity: 0.6;
}

/* Sub-page hero image */
.hero-subpage .hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
}

.hero-subpage .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}

/* Sub-page floating elements */
.hero-review-card {
  position: absolute;
  top: 203px;
  left: 42%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 15px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-review-card .review-avatar {
  width: 31px;
  height: 31px;
  border-radius: 50%;
}

.hero-review-card .review-stars {
  display: flex;
  gap: 2px;
  font-size: 15px;
  color: #FFC107;
}

.hero-review-card .review-text {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  color: var(--color-slate);
}

.hero-cyan-icon {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 61px;
  height: 61px;
  background: var(--color-cyan);
  border-radius: var(--radius-round);
  box-shadow: var(--shadow-card);
}

.hero-cyan-icon img {
  width: 27px;
  height: 27px;
}

.hero-monthly-card {
  position: absolute;
  top: 649px;
  right: 40px;
  z-index: 3;
  min-width: 180px;
  padding: 22px 20px;
  background: var(--color-cyan);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-monthly-card .mc-label {
  margin-bottom: 12px;
  font-family: "Circular Std", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-white);
}

.hero-monthly-card .mc-bars {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  height: 55px;
}

.hero-monthly-card .mc-bar {
  width: 11px;
  background: var(--color-white);
  border-radius: 21px 21px 0 0;
}

.hero-monthly-card .mc-bar.muted {
  background: rgba(255, 255, 255, 0.5);
}

/* Image card (home/renters, health pages) */
.hero-image-card {
  position: absolute;
  top: 50%;
  left: 40%;
  z-index: 3;
  width: 200px;
  padding: 10px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-image-card img {
  width: 100%;
  margin-bottom: 8px;
  border-radius: 6px;
}

.hero-image-card .card-title {
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
}

.hero-image-card .card-avatars {
  display: flex;
  gap: 0;
}

.hero-image-card .card-avatars img {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
}

.hero-image-card .card-avatars img:first-child {
  margin-left: 0;
}

/* Stat badge (health, pet pages) */
.hero-stat-badge {
  position: absolute;
  top: 100px;
  right: 40px;
  z-index: 3;
  padding: 20px 24px;
  color: var(--color-white);
  text-align: center;
  background: var(--color-blue-500);
  border-radius: var(--radius-lg);
}

.hero-stat-badge .badge-number {
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-stat-badge .badge-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* ---------- Insurance Cards Section (Homepage) ---------- */
.section-cards {
  padding: 80px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--max-width);
  padding: 0 var(--side-padding);
  margin: 0 auto;
}

.insurance-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 2px 11px 30px rgba(51, 51, 51, 0.08);
}

.insurance-card .card-illustration {
  width: 200px;
  height: 200px;
  margin-bottom: 32px;
}

.insurance-card .card-illustration img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.insurance-card h3 {
  margin-bottom: 12px;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark-gray);
}

.insurance-card p {
  max-width: 332px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-medium-gray);
}

.insurance-card .card-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-green-700);
  transition: gap 0.2s ease;
}

.insurance-card .card-link:hover {
  gap: 10px;
}

.insurance-card .card-link::after {
  content: "→";
}

/* ---------- Why Our Platform Section ---------- */
.section-platform {
  position: relative;
  min-height: 700px;
  padding: 0;
  overflow: hidden;
  background: #FAFAFF;
}

.section-platform .platform-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-platform .platform-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-platform .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 700px;
}

.platform-content {
  max-width: 661px;
  padding: 80px 0;
}

.platform-content h2 {
  margin-bottom: 25px;
}

.platform-content .underline-accent {
  margin: 0;
  margin-bottom: 25px;
}

.platform-content p {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-medium-gray);
  letter-spacing: 0.09px;
}

.platform-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.platform-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}

/* ---------- Accordion Section (5 Things) ---------- */
.section-accordion {
  position: relative;
  overflow: hidden;
}

.section-accordion .container {
  position: relative;
  z-index: 1;
}

.section-accordion .section-header {
  padding-top: 80px;
}

.accordion-layout {
  position: relative;
  display: flex;
  gap: 25px;
  justify-content: flex-end;
}

.accordion-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
}

.accordion-list {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 25px;
  width: 589px;
  padding-bottom: 25px;
}

.accordion-item {
  padding: 25px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--color-blue-100);
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
}

.accordion-item.active {
  background: radial-gradient(73.61% 124.7% at 38.27% 11.68%, rgba(63, 173, 165, 0.3) 0%, rgba(118, 192, 125, 0.1) 100%);
  border-color: transparent;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.accordion-header h4 {
  font-family: "Noto Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-deep-purple);
  letter-spacing: -0.66px;
}

.accordion-toggle {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 18px;
  color: var(--color-deep-purple);
  cursor: pointer;
  background: var(--color-neutral-300);
  border: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.accordion-item .accordion-toggle:hover,
.accordion-item.active .accordion-toggle {
  color: var(--color-white);
  background: #7FB65D;
  box-shadow: 0 2px 6px rgba(74, 58, 255, 0.1), inset 0 -1px 1px rgba(0, 0, 0, 0.12), inset 0 1px 1.5px rgba(255, 255, 255, 0.25);
}

.accordion-body {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  margin-top: 20px;
}

.accordion-body p {
  max-width: 425px;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.66;
  color: var(--color-black-400);
  text-box: trim-both cap alphabetic;
}

/* ---------- Trusted Providers Section ---------- */
.section-providers {
  padding: 80px 0 50px;
  text-align: center;
}

.section-providers h2 {
  margin-bottom: 25px;
}

.providers-track-wrapper {
  width: 100%;
  margin-top: 50px;
  overflow: hidden;
}

.providers-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-logos 30s linear infinite;
}
.providers-track:hover {
  animation-play-state: paused;
}

.providers-track img {
  flex-shrink: 0;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(0);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ---------- Footer ---------- */
.footer {
  padding: 63px 0 60px;
  background: radial-gradient(ellipse at 42% 20%, rgba(118, 192, 125, 0.1) 0%, rgba(63, 173, 165, 0.3) 100%);
}

.footer .container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.footer-columns {
  display: flex;
  gap: 60px;
  width: 55%;
}

.footer-column h4 {
  margin-bottom: 50px;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black-500);
}

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

.footer-column a {
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black-500);
  text-decoration: underline;
  transition: color 0.2s ease;
}

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

.footer-brand {
  width: 45%;
}

.footer-brand-header {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-family: Lato, sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--color-black-500);
  white-space: nowrap;
}

.footer-copyright {
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.785;
  color: var(--color-black-500);
  text-align: right;
}

.footer-brand p {
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.785;
  color: var(--color-black-500);
}

/* ---------- Responsive ---------- */
/* Tablet */
@media (max-width: 1200px) {
  :root {
    --side-padding: 40px;
  }
  h1 {
    font-size: 52px;
    line-height: 72px;
  }
  h2 {
    font-size: 30px;
  }
  .nav-links {
    gap: 24px;
  }
  .nav-links a {
    font-size: 16px;
  }
  .hero .container {
    min-height: 700px;
  }
  .hero-content {
    max-width: 550px;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 var(--side-padding);
  }
  .accordion-layout {
    flex-direction: column;
    align-items: center;
  }
  .accordion-image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 40px;
  }
  .accordion-list {
    width: 100%;
    max-width: 600px;
  }
  .platform-content {
    max-width: 50%;
  }
  /* ---------- Footer ---------- */
  .footer .container {
    flex-direction: column;
  }
  .footer-columns {
    flex-wrap: wrap;
    width: auto;
  }
  .footer-brand {
    width: auto;
  }
}
/* Mobile */
@media (max-width: 768px) {
  :root {
    --side-padding: 20px;
  }
  h1 {
    font-size: 36px;
    line-height: 48px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 28px;
  }
  body {
    font-size: 16px;
  }
  /* Nav mobile */
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  /* Hero mobile */
  .hero .container {
    flex-direction: column;
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero-content {
    gap: 24px;
    max-width: 100%;
  }
  .hero-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
  }
  .hero-image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .hero-circle-lg,
  .hero-circle-sm,
  .hero-stat-card,
  .hero-dots,
  .hero-review-card,
  .hero-monthly-card,
  .hero-image-card,
  .hero-stat-badge,
  .hero-cyan-icon {
    display: none;
  }
  .hero-categories {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-category-item {
    width: 75px;
    padding: 12px 8px;
  }
  .hero-subtext {
    font-size: 16px;
  }
  .hero-find-plan h3 {
    font-size: 28px;
  }
  /* Sub-page hero */
  .hero-subpage .container {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 0;
  }
  .hero-subpage .hero-content {
    max-width: 100%;
  }
  .hero-subpage .hero-image {
    position: relative;
    width: 100%;
    padding: 0 40px;
    margin-top: 20px;
  }
  .search-bar {
    max-width: 100%;
  }
  .search-bar .btn-secondary span {
    display: none;
  }
  /* Cards mobile */
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .insurance-card {
    padding: 20px;
  }
  /* Platform section mobile */
  .section-platform .container {
    flex-direction: column;
  }
  .platform-content {
    max-width: 100%;
    padding: 40px 0;
  }
  .platform-image {
    position: relative;
    width: 100%;
  }
  /* Accordion mobile */
  .accordion-image {
    display: none;
  }
  .accordion-list {
    width: 100%;
  }
  .accordion-header h4 {
    font-size: 18px;
  }
  .accordion-body p {
    max-width: 100%;
    font-size: 16px;
  }
  /* Providers mobile */
  .providers-track img {
    height: 35px;
  }
  /* Footer mobile */
  .footer .container {
    flex-direction: column;
  }
  .footer-columns {
    gap: 40px;
    justify-content: flex-start;
  }
  .footer-column h4 {
    margin-bottom: 24px;
  }
  .footer-brand-header {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .footer-copyright {
    text-align: left;
  }
}
/* Small mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 30px;
    line-height: 42px;
  }
  .hero-heading .highlight::after {
    bottom: 5px;
    height: 20px;
  }
  .hero-categories {
    justify-content: center;
  }
}