@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ─────────────────────────────────────────
   CSS VARIABLES
───────────────────────────────────────── */
:root {
  --teal:       #1A9FC0;
  --teal-dark:  #0c87a8;
  --teal-deep:  #0a6080;
  --cyan-light: #e0f7fc;
  --dark:       #0d1f2d;
  --mid:        #1e3a4f;
  --body-text:  #4a6070;
  --white:      #ffffff;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--body-text);
  background: #fff;
  overflow-x: hidden;
  font-size: 16px!important;
}

h1, h2, h3, h4, h5 {
  font-family: "Inter", sans-serif;
  color: var(--dark);
}

/* Use h3 inside step-card and blog-card since we changed from h5 for SEO */
.step-card h3,
.blog-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--dark);
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.75rem);
}

a {
  text-decoration: none;
}

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

/* ─────────────────────────────────────────
   UTILITIES
───────────────────────────────────────── */
.btn-teal {
  display: inline-block;
  background: var(--teal-dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background .2s, transform .15s;
  cursor: pointer;
}

.btn-teal:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}

.btn-teal.light {
  padding: 8px 20px;
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 6px;
  padding: 0.5rem 1.3rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all .2s;
  cursor: pointer;
}

.btn-outline-teal:hover {
  background: var(--teal);
  color: #fff;
}

.section-label {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .5rem;
  background: #F1F4F6;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
}

.high-light-text {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .5rem;
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar {
  background: var(--white);
  padding: .7rem 1rem;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  width: auto;
  height: 70px;
  object-fit: contain;
}

.nav-link {
  color: var(--dark) !important;
  font-size: .88rem;
  font-weight: 500;
  padding: .4rem .75rem !important;
  transition: color .2s;
}

.nav-link:hover {
  color: var(--teal) !important;
}

.navbar .btn-outline-light {
  color: var(--dark);
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
}

.navbar .btn-outline-light:hover {
  background-color: #f5f5f5;
  color: var(--dark);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  background-image: url(../images/Rectangle\ 1.png);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 10rem 0 8rem;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #08242B;
  opacity: .7;
}

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

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 4.375rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  max-width: 950px;
  margin: 0 auto 1.5rem;
}

.hero p {
  color: var(--white);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.business-pill {
  background: rgb(243 243 243 / 30%);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  color: white;
  border: 1px solid rgb(255 255 255 / 30%);
  white-space: nowrap;
}

.hero .check-icon {
  width: 22px;
  height: 22px;
  background: #fff;
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-hero-primary {
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 6px;
  padding: .75rem 1.8rem;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, color .2s;
  display: inline-flex;
  align-items: center;
}

.btn-hero-primary:hover {
  background: var(--teal-dark);
  color: #fff;
}

.btn-hero-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: .72rem 1.6rem;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: inline-flex;
  align-items: center;
}

.btn-hero-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}

/* ─────────────────────────────────────────
   TRUSTED BAR
───────────────────────────────────────── */
.trusted-bar {
  background: #f5f9fb;
  padding: 3rem 1rem;
}

.trusted-bar small {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
}

.logo-pill {
  display: inline-block;
  padding: .35rem 1.1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #5a758578;
  margin: .25rem .3rem;
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-section {
  padding: 80px 0;
  background-image: url(../images/about-us-background.png);
  background-size: cover;
  background-position: center;
}

.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(14, 165, 201, .15);
}

.about-img img {
  width: 100%;
  height: auto;
  max-height: 581px;
  object-fit: cover;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 30px;
  padding: .75rem 1.4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  margin: .4rem .4rem .4rem 0;
  background: #F1F4F6;
}

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.how-section {
  background: #f5f9fb;
  padding: 80px 0;
}

.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(14, 165, 201, .12);
}

.step-num {
  width: 65px;
  height: 65px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 2rem;
  margin: 0 auto 1rem;
  background: linear-gradient(90deg, #2f93b8 0%, #5b7bd3 100%);
  flex-shrink: 0;
}

.step-card p {
  font-size: 16px;
  color: #6a8595;
  line-height: 1.6;
  margin: 0;
}

/* ─────────────────────────────────────────
   WHY CHOOSE
───────────────────────────────────────── */
.why-section {
  padding: 80px 0;
}

.why-img {
  border-radius: 12px;
  overflow: hidden;
}

.why-img img {
  width: 100%;
  height: auto;
  max-height: 518px;
  object-fit: cover;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}

.why-section .check-icon {
  width: 22px;
  height: 22px;
  background: var(--cyan-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-item p {
  font-size: .9rem;
  color: var(--body-text);
  margin: 0;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   UPGRADE BANNER
───────────────────────────────────────── */
.upgrade-banner {
  background-image: url(../images/Rectangle-32.png);
  background-size: cover;
  background-position: center;
  padding: 100px 1rem;
}

.upgrade-banner h2 {
  color: #fff;
  font-weight: 800;
  position: relative;
}

.upgrade-banner p {
  color: rgba(255, 255, 255, .8);
  max-width: 650px;
  margin: 0 auto 1.5rem;
  font-size: 16px;
  position: relative;
}

.btn-white {
  background: #fff;
  color: var(--teal-dark);
  border: none;
  border-radius: 6px;
  padding: .7rem 2rem;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .15s;
  position: relative;
  display: inline-block;
}

.btn-white:hover {
  transform: translateY(-2px);
  color: var(--teal-dark);
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing-section {
  padding: 80px 0;
}

.price-card {
  border: 1.5px solid #dde8ed;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  background: #fff;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(14, 165, 201, .12);
  border-color: var(--teal);
}

.price-card.featured {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.price-card.featured h3,
.price-card.featured h2,
.price-card.featured p,
.price-card.featured li {
  color: #fff !important;
}

.plan-badge {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.price-card.featured .plan-badge {
  color: var(--white);
}

.price-amount {
  font-family: "Inter", sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}

.price-card .price-amount span {
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  margin-left: 10px;
}

.price-card.featured .price-amount {
  color: #fff;
}

.price-divider {
  border: none;
  border-top: 1px solid #e4edf2;
  margin: 1.2rem 0;
}

.price-card.featured .price-divider {
  border-top-color: rgba(255, 255, 255, .25);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.feature-list li {
  font-size: .84rem;
  color: var(--body-text);
  padding: 10px 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-bottom: 1px solid #f0f4f6;
}

.feature-list li:last-child {
  border-bottom: none;
}

.price-card.featured .feature-list li {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.15);
}

.price-card.featured .feature-list li img {
  filter: brightness(0) invert(1);
}

/* ─────────────────────────────────────────
   AI MATCHES
───────────────────────────────────────── */
.ai-section {
  background: #F1F4F6;
  padding: 80px 0;
}

.ai-content-box {
  background: #E4E4EC;
  padding: 35px;
  border-radius: 20px;
}

.ai-color-box {
  background: #8080800a;
  padding: 10px;
  border-radius: 30px;
}

.ai-card {
  padding: 30px 20px 20px;
}

.match-score {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-radius: 15px;
  padding: 12px 16px;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  background: white !important;
}

span.tick-green {
  background: #15a05a;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 16px;
  color: white;
}

span.tick-green.orange { background: #e07b00; }
span.tick-green.red    { background: #d63030; }

.score-green  { color: #15a05a; }
.score-orange { color: #e07b00; }
.score-red    { color: #d63030; }

.match-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 16px;
  border-bottom: 4px solid #dddde3;
  background: var(--white);
}

.match-row:last-child  { border-bottom: none; }
.match-row.first       { border-radius: 10px 10px 0 0; }
.match-row.third       { border-radius: 0 0 10px 10px; }

.button-slate-blue {
  padding: 8px 16px;
  font-size: .85rem;
  background: #2b324e;
  border-radius: 10px;
  color: var(--white);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  flex-shrink: 0;
}

.how-it-works-mini h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ai-card.how-it-works-mini {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 15px;
  text-align: center;
}

.mini-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.mini-step strong {
  display: block;
  font-size: .9rem;
  color: var(--dark);
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials-section {
  padding: 100px 0;
  background-image: url(../images/testimonial-image.png);
  background-size: cover;
  background-position: center;
}

.testi-card {
  background: #fff;
  border: 1.5px solid #e4edf2;
  border-radius: 12px;
  padding: 30px 30px 44px;
  margin: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,.1);
  min-height: 220px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 85%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: url(../images/left\ 1.png) no-repeat center;
  background-size: cover;
}

.stars {
  color: #f5a623;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: .5rem;
}

.testi-card p {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.7;
  flex: 1;
  margin-top: 12px;
}

.testi-author {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 1rem;
}

.testimonial-slider .slick-track {
  display: flex !important;
}

.testimonial-slider .slick-slide {
  height: auto;
  display: flex !important;
}

.slick-dots li button::before { display: none; }

.slick-dots li {
  width: 40px !important;
  height: 6px !important;
  background: #fff;
  border-radius: 3px;
}

.slick-dots li.slick-active { background-color: var(--teal); }
.slick-dots { bottom: -40px !important; }

/* ─────────────────────────────────────────
   BLOGS
───────────────────────────────────────── */
.blogs-section {
  background: #f5f9fb;
  padding: 80px 0;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
  height: 100%;
  transition: transform .2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover { transform: translateY(-4px); }

.blog-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-body h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .5rem;
  line-height: 1.4;
}

.blog-body p {
  font-size: 16px;
  color: #7a94a0;
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-section {
  padding: 80px 0;
}

.accordion-item {
  border: none;
  margin: 12px 0;
  background-color: #F1F4F6 !important;
  padding: 8px 12px;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-button {
  background-color: #F1F4F6 !important;
  font-size: clamp(.95rem, 2vw, 1.05rem);
  font-weight: 600;
  color: var(--dark);
  padding: 1rem 1rem;
}

.accordion-button:focus { box-shadow: none; }

.accordion-button:not(.collapsed) {
  color: var(--teal-dark);
  box-shadow: none;
}

.accordion-button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 17px;
  background-image: url("../images/Polygon\ 1.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  flex-shrink: 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../images/Polygon\ 2.png");
  transform: rotate(0deg);
}

.accordion-body {
  padding: 16px 40px 28px 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
}

/* ─────────────────────────────────────────
   NEWSLETTER
───────────────────────────────────────── */
.newsletter-section {
  padding-bottom: 80px;
}

.newsletter-background-box {
  background-image: url(../images/nwsletter-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 60px;
  border-radius: 16px;
}

.title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.subtitle {
  font-size: 16px;
  margin-top: 10px;
  opacity: .9;
  color: var(--white);
}

.email-input {
  height: 52px;
  border-radius: 10px;
  border: none;
  padding-left: 18px;
  font-size: 16px;
  max-width: 420px;
  width: 100%;
}

.demo-btn {
  background: #fff;
  color: #000;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 500;
  border: none;
  transition: .3s;
  font-size: 16px;
  cursor: pointer;
}

.demo-btn:hover {
  background: #000;
  color: #fff;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  color: var(--white);
  padding: 60px 0 0;
  background: #072440;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 16px;
  margin-top: 10px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

.footer-heading {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 10px;
  background-image: url(../images/Vector\ \(2\).png);
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.footer-links a:hover { color: #fff; }

.social-icons { margin-top: 15px; }

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin-right: 8px;
  background: transparent;
  border-radius: 50%;
  color: #fff;
  transition: background .2s;
  border: 1px solid #44C9E7;
}

.social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.social-link:hover { background: var(--teal); }

.footer-bottom {
  margin-top: 40px;
  padding: 16px 1rem;
  font-size: 13px;
  color: var(--white);
  background-color: var(--teal);
  text-align: center;
}

.footer-bottom p { margin: 0; }

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

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* ─── XS: up to 575px ─── */
@media (max-width: 575.98px) {

  .hero {
    padding: 6rem 1rem 5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: .9rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .business-pill {
    font-size: .85rem;
    padding: 8px 14px;
  }

  .navbar-brand img {
    height: 50px;
  }

  .about-img img,
  .why-img img {
    height: auto;
    max-height: 260px;
  }

  .ai-content-box {
    padding: 16px;
  }

  .ai-color-box {
    padding: 6px;
  }

  .ai-card {
    padding: 16px 12px;
  }

  .match-score {
    font-size: 1rem;
    padding: 8px 10px;
  }

  span.tick-green {
    padding: 4px 8px;
    font-size: 13px;
  }

  .newsletter-background-box {
    padding: 50px 20px;
    border-radius: 10px;
  }

  .title {
    font-size: 1.5rem;
  }

  .testi-card {
    padding: 20px 20px 36px;
  }

  .testi-card::before {
    display: none;
  }

  .logo-pill {
    font-size: .9rem;
  }

  .trusted-bar small {
    font-size: .9rem;
  }

  .stat-badge {
    padding: .6rem 1rem;
    font-size: .78rem;
  }

  .btn-teal, .btn-hero-primary, .btn-hero-ghost {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }

  .faq-section { padding: 60px 0; }
  .blogs-section { padding: 60px 0; }
  .how-section { padding: 60px 0; }
  .about-section { padding: 60px 0; }
  .why-section { padding: 60px 0; }
  .pricing-section { padding: 60px 0; }
  .upgrade-banner { padding: 70px 1rem; }

  .footer { padding: 40px 0 0; }
}

/* ─── SM: 576px – 767px ─── */
@media (min-width: 576px) and (max-width: 767.98px) {

  .hero {
    padding: 7rem 1rem 6rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .navbar-brand img {
    height: 60px;
  }

  .newsletter-background-box {
    padding: 60px 30px;
  }

  .ai-content-box {
    padding: 20px;
  }
}

/* ─── MD: 768px and below (mobile nav) ─── */
@media (max-width: 767.98px) {

  .navbar-collapse {
    background: #0b0f19;
    padding: 16px;
    border-radius: 8px;
    margin-top: 8px;
  }

  .navbar-collapse .nav-link {
    color: var(--white) !important;
    text-align: center;
    padding: .55rem 0 !important;
  }

  .navbar-collapse .nav-link:hover {
    color: var(--teal) !important;
  }

  .nav-cta-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav-cta-btns .btn {
    width: 100%;
    text-align: center;
  }

  .navbar .btn-outline-light {
    color: var(--white) !important;
    border-color: rgba(255,255,255,.3);
    justify-content: center;
  }

  .match-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-section .row,
  .ai-section .row {
    text-align: center;
  }

  .about-section .stat-badge {
    display: flex;
    margin: .3rem auto;
  }
}

/* ─── LG: up to 991px ─── */
@media (max-width: 991.98px) {

  .hero {
    padding: 8rem 1rem 6rem;
  }

  .about-img img {
    max-height: 400px;
  }

  .why-img img {
    max-height: 380px;
    margin-top: 2rem;
  }

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

  .ai-content-box {
    padding: 24px;
  }

  .newsletter-background-box {
    padding: 70px 40px;
  }

  .upgrade-banner {
    padding: 80px 1rem;
  }

  .ai-card.how-it-works-mini {
    margin-top: 1rem;
  }
}

/* ─── XL: up to 1199px ─── */
@media (max-width: 1199.98px) {

  .hero h1 {
    max-width: 700px;
  }

  .ai-content-box {
    padding: 30px;
  }

  .about-img img {
    max-height: 500px;
  }
}

/* ─── XXL: up to 1399px ─── */
@media (max-width: 1399.98px) {

  .hero h1 {
    max-width: 850px;
  }

  .ai-content-box {
    padding: 35px 60px;
  }
}

/* ─── Large desktops: 1400px+ ─── */
@media (min-width: 1400px) {
  .ai-content-box {
    padding: 35px 80px;
  }
}
