* {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
}

/* ---------------------------- 1. Hero Section ---------------------------- */
/* ---------- Header ---------- */
.bg-hero {
  background-image: url("../images/hero-section/hero-bg.png");
  background-repeat: repeat-x;

  /* 👇 THIS creates gradient BELOW */
  background:
    url("../images/hero-section/hero-bg.png") top center repeat-x,
    linear-gradient(181.19deg, #ffe5e6 -25.6%, #fbf7f7 40.14%);
}

.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 0.7rem;
  border-radius: 0.5rem;
  border: none;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--btn-bg-hover);
}

.btn-outline-primary {
  background: transparent;
  color: var(--font-heading);
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e0e0e0;
  text-decoration: none;
}

.btn-outline-primary:hover {
  border: 1px solid #f8bebf;
  color: var(--badge);
}

/* ---------- Badge ---------- */
.badge-pill {
  background: var(--bg-white);
  border-radius: 6.25rem;
}

.badge-new {
  background: var(--app-color);
  border-radius: 6.25rem;
  color: var(--btn-text);
}

.pill-text {
  font-weight: 700;
  color: var(--font-heading);
}

.store-icon {
  height: 1.3rem;
  width: auto;
  cursor: pointer;
  text-decoration: none;
}

.arrow-btn {
  color: var(--app-color);
  font-size: 1rem;
}

/* ---------- Hero Content Section ----------  */
.hero-content h1 {
  color: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.5rem;
  margin-top: 10px;
  color: #525252;
}

.folder-icon {
  width: 80px;
  height: 50px;
  margin-left: -15px;
  vertical-align: middle;
}

/* Group spacing (Badge + H1 + P) */
.hero-text-group {
  gap: 24px;
}

/* Space between text group and buttons */
.hero-buttons {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .bg-hero section.d-flex {
    padding-top: 1.5rem;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-section {
    text-align: center;
  }

  .hero-text-group p {
    font-size: 1.2rem;
  }
  .badge-pill {
    margin-top: 40px !important;
  }
  .hero-buttons {
    margin-top: 20px;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline-primary {
    margin-bottom: 1rem !important;
  }
}

/* ---------- Dashboard Image ----------  */
.dashboard-img {
  border: 0.5px solid #902a2c33;
  border-radius: 1.5rem;
  padding: 0.7rem;
  max-width: 1100px;
  margin: 0 auto;
}

.dashboard-container {
  border: 0.5px solid #902a2c33;
  background: #902a2c0f;
  border-radius: 1.125rem;
}

.dashboard-container img {
  border-radius: 0.709rem;
}

/* ---------------------------- 2. Trust CA Firms logos Section ---------------------------- */
.review-card {
  border: 0.5px solid #e9ccbf;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  min-width: 220px;
  max-width: 260px;
}

.review-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  padding: 3px;
}

.review-card-img {
  background-color: var(--bg-white);
  border-radius: 7px;
  box-shadow: 0px 2px 12px 0px #0000000f;
}

.rating-container {
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0px 2px 12px 0px #0000000f;
}

.review-card .star {
  color: #f6cf00;
  font-size: 18px;
}

.divider {
  border-right: 0.5px solid #e0e0e0;
  height: 1.4rem;
  margin: 0 5px;
}

.review-card .label {
  font-size: 13px;
  color: #181818;
}
.tagline-logos {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.logos {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Tagline */
.tagline {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--font-heading);
}

/* Logo text */
.logo-item {
  display: flex;
  align-items: center;
  margin-right: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px; /* fixed height for all logos */
}

.logo-item img {
  height: clamp(20px, 3vw, 28px); /*clamp(min, preferred, max)*/
  /* height: 100%; make all images fill the container height */
  width: auto; /* preserve aspect ratio */
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-item {
    height: clamp(18px, 3vw, 28px);
  }
  .logo-item img {
    height: clamp(20px, 8vw, 28px);
  }
}
@media (max-width: 480px) {
  .logo-item {
    height: 26px; /* even smaller for small mobile */
    margin-right: 24px;
  }
}
/* ---------------------------- 3. Features Section ---------------------------- */

/* SECTION */
.features-section {
  background: var(--bg-light);
  padding: 64px 0;
}

.features-inner {
  padding: 0 72px;
}

/* WRAPPER */
.features-wrapper {
  display: flex;
  flex-direction: column;
}

/* HEADING */
.features-badge {
  display: inline-block;
  background: var(--bg-badge);
  color: var(--badge);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 500;
}

.features-heading {
  text-align: center;
  margin-bottom: 64px;
  margin-top: 64px;
}
.features-heading span {
  font-size: 16px;
}
.features-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--font-heading);
}

/* GRID ROOT */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ================= ROW 1 ================= */
.row-1 {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

/* LEFT CARD - DARK PURPLE */
.card-dark-purple {
  flex: 0 0 40%;
  /* width: 480px; */
  background: linear-gradient(144deg, #6e3a4f, #34101f);
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 24px;
  padding-bottom: 0%;
  color: var(--btn-text);
  overflow: visible;
  min-height: 400px;
  gap: 16px;
}

.card-dark-purple .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-dark-purple h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.card-dark-purple p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.card-dark-purple .feat-svg {
  height: auto;
  max-height: 570px;
  width: 100%;
  object-fit: cover;
}

/* RIGHT COLUMN */
.right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.right > * {
  flex: 1;
  min-height: 0;
}

/* ORANGE CARD - TOP RIGHT */
.card-dark-orange {
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: linear-gradient(97deg, #da6e4a, #9b2f20);
  border-radius: 20px;
  padding: 20px;
  padding-top: 0;
  color: var(--btn-text);
  max-height: 270px;
}

.card-dark-orange img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-dark-orange .pocket {
  flex: 1;
  margin-top: 0;
}

.card-dark-orange h3 {
  font-size: 20px;
  font-weight: 700;
}

.card-dark-orange p {
  font-size: 14px;
  line-height: 1.5;
}

/* RIGHT BOTTOM - TWO CARDS */
.right-bottom {
  display: flex;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.right-bottom .feat-card {
  flex: 1;
  min-height: 0;
}

/* RED CARD */
.card-red {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #b34148, #6d0d12);
  border-radius: 20px;
  padding: 24px;
  color: var(--btn-text);
  overflow: visible;
  gap: 14px;
  justify-content: flex-start;
  width: 350px;
}
.card-red .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-red .feat-svg {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0 auto;
}

.card-red h3 {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 700;
}

.card-red p {
  font-size: 13px;
  line-height: 1.5;
}

/* PURPLE CARD */
.card-purple {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: linear-gradient(110deg, #6f3387, #2a103a);
  border-radius: 20px;
  padding: 24px;
  color: var(--btn-text);
  overflow: visible;
  justify-content: space-between;
}

.card-purple h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.card-purple p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.card-purple .feat-svg {
  height: 160px;
  width: 100%;
  margin-top: auto;
}

/* ================= ROW 2 ================= */
.row-2 {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

/* OLIVE/TEAL CARD */
.card-olive {
  display: flex;
  flex-direction: column;
  width: 60%;
  background: linear-gradient(96deg, #4b8086, #0b393f);
  border-radius: 20px;
  padding: 24px;
  color: var(--btn-text);
  overflow: visible;
  justify-content: center;
}

.card-olive h3 {
  font-size: 20px;
  margin-bottom: 8px;
  margin-top: 8px;
  font-weight: 700;
}

.card-olive p {
  font-size: 14px;
  line-height: 1.5;
}

.card-olive .d-flex {
  margin-bottom: 0;
  gap: 64px;
  justify-content: space-between;
}

.card-olive .feat-svg {
  height: auto;
  object-fit: contain;
  margin-top: 16px;
}

/* DARK GREEN CARD */
.card-dark-green {
  display: flex;
  flex-direction: column;
  width: 40%;
  flex: 1;
  background: linear-gradient(109deg, #556b2f, #1e2a14);
  border-radius: 20px;
  padding: 24px;
  color: var(--btn-text);
  overflow: visible;
  justify-content: space-between;
  align-items: start;
}

.card-dark-green h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.card-dark-green p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.card-dark-green .feat-svg {
  height: 190px;
  width: 100%;
  object-fit: contain;
  flex-shrink: 0;
}

/* ================= COMMON ================= */
.feat-card {
  display: flex;
  flex-direction: column;
}

.feat-svg {
  display: block;
  width: auto;
  height: auto;
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */

/* Base fixes for all screen sizes */
.card-dark-purple {
  width: 100%;
  max-width: 480px;
  flex-shrink: 0;
}

.card-red {
  width: auto;
  flex: 1;
}

.card-olive {
  width: 60%;
}

.card-dark-green {
  width: 40%;
}

/* 🔥 LARGE DESKTOP (1400px+) */
@media (min-width: 1401px) {
  .features-inner {
    padding: 0 72px;
  }
}

/* 🔥 DESKTOP (1200px – 1400px) */
@media (max-width: 1400px) and (min-width: 1200px) {
  .features-inner {
    padding: 0 60px;
  }

  .card-dark-purple {
    max-width: 400px;
  }

  .card-olive .feat-svg {
    width: 100%;
  }
}

/* 🔥 MEDIUM DESKTOP (992px – 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .features-inner {
    padding: 0 40px;
  }

  .card-dark-purple {
    max-width: 340px;
  }

  .card-dark-orange {
    max-height: none;
  }

  .card-olive .feat-svg {
    width: 100%;
  }

  .card-olive .d-flex {
    gap: 12px;
    overflow: hidden;
  }

  .card-olive .d-flex img {
    margin-bottom: 20px;
    width: 50%;
    height: auto;
    object-fit: contain;
    flex-shrink: 1;
    min-width: 0;
  }
}

/* 🔥 TABLET (768px – 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .features-inner {
    padding: 0 32px;
  }

  /* Stack main rows */
  .row-1,
  .row-2 {
    flex-direction: column;
    gap: 16px;
  }

  /* All cards full width when stacked */
  .card-dark-purple,
  .card-dark-orange,
  .card-olive,
  .card-dark-green {
    width: 100%;
    max-width: 100%;
  }

  .card-dark-orange {
    max-height: none;
  }

  .card-dark-orange img {
    height: auto;
    max-height: 220px;
    object-fit: contain;
  }

  /* Right bottom: keep side by side */
  .right-bottom {
    flex-direction: row;
    gap: 16px;
  }

  .card-red,
  .card-purple {
    flex: 1;
    width: auto;
  }

  .card-olive .d-flex {
    gap: 24px;
    justify-content: center;
  }

  .card-olive .feat-svg {
    width: 100%;
    height: auto;
  }

  .feat-svg {
    width: 100%;
    height: auto;
  }
}

/* 🔥 MOBILE (481px – 767px) */
@media (max-width: 767px) {
  .features-section {
    padding: 20px 0;
  }

  .break-rw {
    display: none;
  }

  .features-inner {
    padding: 0 20px;
  }

  .features-heading {
    margin-bottom: 32px;
    margin-top: 32px;
  }

  .features-title {
    font-size: 24px;
    line-height: 1.3;
  }

  /* Stack everything */
  .row-1,
  .row-2 {
    flex-direction: column;
    gap: 16px;
  }

  .right {
    width: 100%;
  }

  .right-bottom {
    flex-direction: column;
    gap: 16px;
  }

  /* All cards full width */
  .card-dark-purple,
  .card-dark-orange,
  .card-red,
  .card-purple,
  .card-olive,
  .card-dark-green {
    width: 100% !important;
    max-width: 100%;
  }

  .card-dark-orange {
    max-height: none;
  }

  .card-dark-orange img {
    height: auto;
    max-height: 200px;
    object-fit: contain;
  }

  /* Card text sizes */
  .card-dark-purple h3,
  .card-dark-orange h3,
  .card-red h3,
  .card-purple h3,
  .card-olive h3,
  .card-dark-green h3 {
    font-size: 18px;
  }

  .card-dark-purple p,
  .card-dark-orange p,
  .card-red p,
  .card-purple p,
  .card-olive p,
  .card-dark-green p {
    font-size: 14px;
  }

  /* Image scaling */
  .feat-svg {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
  }

  .card-olive .feat-svg:first-child {
    display: none;
  }

  .card-olive .feat-svg {
    width: 100%;
    height: 180px;
    object-fit: contain;
  }

  .card-olive .d-flex {
    gap: 16px;
    justify-content: center;
  }

  .card-olive .d-flex img {
    flex: 1;
  }
}

/* 🔥 SMALL MOBILE (≤480px) */
@media (max-width: 480px) {
  .break-rw {
    display: none;
  }

  .features-inner {
    padding: 0 15px;
  }

  .features-title {
    font-size: 22px;
  }

  .features-heading span {
    font-size: 13px;
  }

  .card-dark-purple,
  .card-dark-orange,
  .card-red,
  .card-purple,
  .card-olive,
  .card-dark-green {
    padding: 16px;
  }

  .feat-svg {
    max-height: 180px;
  }
}
/* ---------------------------- 4. Benefits Section ---------------------------- */

/* Card background gradients */
.benefit-card-1 {
  background: var(--card-1-bg);
}
.benefit-card-2 {
  background: var(--card-2-bg);
}
.benefit-card-3 {
  background: var(--card-3-bg);
}
.benefit-card-4 {
  background: var(--card-4-bg);
}
.benefit-card-5 {
  background: var(--card-5-bg);
}
.benefit-card-6 {
  background: var(--card-6-bg);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* CARD BASE */
.benefit-card {
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* HOVER */
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* CARD BODY */
.benefit-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

/* TOP ROW (ICON + NUMBER) */
.benefit-card .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

/* ICON BOX */
.benefit-card .icon-box {
  width: 48px;
  height: 48px;
  background: #fff;
  color: #000;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

/* NUMBER (BACKGROUND STYLE) */
.benefit-card .number {
  font-size: 64px;
  font-weight: 700;
  opacity: 0.15;
  line-height: 1;
}

/* CONTENT */
.benefit-card .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* TITLE */
.benefit-card .title {
  font-size: 24px;
  font-weight: 600;
  overflow: hidden;

  min-height: 64px;
}

/* DESCRIPTION */
.benefit-card .desc {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;

  min-height: 72px;
}

/* ---------------------------- 5. TESTIMONIAL Section ---------------------------- */

.Tetsimonial {
  background: var(--bg-light);
}

.testimonial-section {
  padding: 60px 20px;
  background-color: var(--bg-light-alt);
}

.testimonial-label {
  color: var(--text-accent);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.testimonial-title {
  color: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.1;
}

.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  gap: 24px;
  overflow: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Hide scrollbar (clean UI) */
.testimonial-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-grid.second-row {
  margin-top: 40px;
}

.testimonial-card {
  background-color: #f8f8f8;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 18px;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  width: 320px;
  flex-shrink: 0;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 12px;
}

.card-user-info {
  display: flex;
  gap: 12px;
  flex: 1;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  color: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  margin: 0;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-body);
  margin-top: 2px;
}

.stars {
  color: var(--text-accent);
  font-weight: 600;
}

.date {
  color: #999;
  font-size: 12px;
}
.google-icon {
  width: 20px;
  height: 20px;
}
.trustpilot-icon {
  width: 30px;
  height: 30px;
}
.testimonial-text {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 767px) {
  .testimonial-title {
    font-size: 32px;
  }

  .testimonial-card {
    width: 280px;
  }

  .carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .carousel > * {
    scroll-snap-align: start;
  }

  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-left: 16px;
  }

  .testimonial-card {
    min-width: 85%;
    flex-shrink: 0;
  }
}

/* ---------------------------- 6. FAQ Section ---------------------------- */

/* FAQ row divider (cleaner than <hr>) */
.faq-row {
  padding: 16px;
  border-bottom: 1px solid #e4e4e4;
  transition: all 0.3s ease;
}

.faq-row.active {
  background-color: #fdf6f6;
  border: 1px solid #e9ccbf;
  border-radius: 16px;
  border-bottom: 1px solid #e9ccbf; /* keep bottom border for active state */
}

.faq-row:last-child {
  border-bottom: none;
}

.faq-row {
  margin-bottom: 20px;
}
/* Question + icon */
.faq-question-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  cursor: pointer;
}

.faq-question {
  font-size: 18px;
  font-weight: 500;
  color: var(--font-heading);
}
.faq-row.active .faq-question {
  color: var(--app-color);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px; /* prevents shrinking */
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background-color: rgba(244, 212, 212, 0.2); /* #F4D4D433 */
  transition: all 0.3s ease;
}
/* SVG animation */
.arrow {
  transition: transform 0.3s ease;
}

/* Rotate when open */
.faq-row.active .arrow {
  transform: rotate(180deg);
}

/* Hidden by default */
.faq-answer {
  display: none;
  margin-top: 10px;
  color: #666;
}

/* Active state */
.faq-row.active .faq-answer {
  display: block;
}

/* COLUMN DIVIDER (FIXED VERSION) */
.faq-row-wrapper {
  position: relative;
  margin-top: 64px;
}

.faq-row-wrapper::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: #e4e4e4;
}

/* Add spacing so divider doesn't touch content */
.faq-col {
  padding-left: 30px;
  padding-right: 30px;
}

/* Remove divider on mobile */
@media (max-width: 768px) {
  .FAQ .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .faq-row-wrapper {
    margin-top: 20px;
  }
  .faq-row-wrapper::after {
    display: none;
  }

  .faq-col {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* ---------------------------- 7. Pricing Section ---------------------------- */

/* Tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid #e4e4e4;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  position: relative;
}

.tab-btn.active {
  color: var(--app-color);
}

.tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 2px;
  background: var(--app-color);
  transition: 0.3s;
}

.tab-btn.active::after {
  width: 100%;
}

/* Tab content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Cards */
.pricing-card {
  border-radius: 16px;
  overflow: visible;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

/* Header */
.pricing-header {
  display: flex;
  padding: 24px 24px 32px 24px; /*top right bottom  left  */
  color: #fff;
  position: relative;
  align-items: center;
  border-radius: 16px 16px 0 0;
}

.pricing-header h3 {
  margin: 0;
  font-size: 28px;
  align-items: center;
}
.sub-heading h3 {
  font-size: 24px;
  font-weight: 600;
}
.pricing-header span {
  font-size: 16px;
}

/* Badge */
.pricing-header .badge {
  position: absolute;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* Colors */
.orange {
  background: var(--card-2-bg);
}

.purple {
  background: var(--card-4-bg);
}

.green {
  background: var(--card-5-bg);
}

.olive {
  background: var(--card-6-bg);
}
/* Body */
.pricing-body {
  position: relative;
  margin-top: -20px;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}

.pricing-body ul {
  padding-left: 18px;
}

.pricing-body li {
  margin-bottom: 10px;
  color: #555;
}

/* ---------------------------- 8. CTA Section ---------------------------- */

.CTA-section {
  position: relative;
  overflow: hidden;
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 60px 20px 0px 20px;
  border-radius: 24px;
}

.decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.decor-top {
  top: -20px;
  left: -20px;
  max-width: 300px;
  width: 100%;
}
.decor-bottom {
  bottom: -20px;
  right: -20px;
  width: 40%;
}

.Google-reviews {
  display: flex;
  align-items: center;
  gap: 6px;

  background-color: #fff;
  color: #000;
  font-weight: 600;

  border-radius: 999px;
  padding: 8px 16px;

  width: fit-content;
}

.Google-reviews p {
  margin: 0;
}

.google-icon {
  height: 16px;
  display: block;
}

.CTA-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}

/* Heading */

.CTA-content h1 {
  font-size: clamp(28px, 4vw, 42px);
  max-width: 520px;
  line-height: 1.3;
  margin: 0;
}

/* Paragraph */

.CTA-content p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}

/* Button */

.CTA-content button {
  background: #fff;
  color: var(--app-color);
  padding: 0.7rem 1.5rem;

  border-radius: 999px;
  border: none;

  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}
.CTA-content,
.CTA-image {
  position: relative;
  z-index: 2;
}

.cta-btn {
  background: #fff;
  color: var(--app-color);
  padding: 0.7rem 1.5rem;

  border-radius: 999px;
  border: none;

  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .CTA-section {
    /* Top: 60px, Right: 120px, Bottom: 0px, Left: 120px */
    padding: 60px 120px 0px 120px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Add the padding here instead so the text stays vertically centered */
  .CTA-content {
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .CTA-section {
    text-align: center;
    padding-bottom: 40px;
  }

  .CTA-content {
    align-items: center;
  }

  .CTA-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 30px;
  }
  .Google-reviews {
    align-self: flex-start;
  }
  .decor-top,
  .decor-bottom {
    width: 330px; /* fixed size instead of % */
  }

  .decor-top {
    top: 0;
    left: 0px;
  }

  .decor-bottom {
    bottom: 0;
    right: 0;
  }
}

/* ---------------------------- 9. Footer Section ---------------------------- */
.footer-link {
  text-decoration: none;
  color: #6c757d;
}

.footer-link:hover {
  color: #000;
}

.store-btn {
  width: 140px;
  pointer-events: none !important;
  opacity: 0.8;
}

/* Breathing room for logo */
.logo {
  max-width: 160px;
}

/* Better spacing under logo */
.footer-desc {
  margin-top: 8px;
  line-height: 1.6;
}

.footer .col-6,
.footer .col-md-4 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.tooltip-wrapper {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.tooltip-text {
  white-space: nowrap;
  max-width: 90vw;
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  transition: 0.3s;
}

.tooltip-wrapper:hover .tooltip-text {
  opacity: 1;
}

.tooltip-wrapper:active .tooltip-text {
  opacity: 1;
}
@media (min-width: 992px) {
  .footer .col-lg-7 {
    padding-left: 3rem;
  }
}

/* ✅ Bigger icons on mobile */
@media (max-width: 991px) {
  .footer .d-flex.gap-3.fs-5 {
    font-size: 1.6rem !important; /* fs-5 is only 1.25rem — bump it up */
    gap: 1.2rem !important;
  }
}
