/* ============================================================
   BASE — Reset + Montserrat + Variables
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #374151;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;

  /* 30px default body padding as specified */
  padding: 30px;
}

/* ── Scroll-To-Top Button ── */
.scroll-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #00728f;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 114, 143, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    background 0.2s ease;
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #005e78;
}

.text-center {
  text-align: center;
}
.common-subtitle {
  font-size: 60px;
  font-weight: 400;
  color: #000000;
}
.common-padding {
  padding: 100px 30px;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  line-height: 1.6;
}

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --font: "Montserrat", sans-serif;

  /* Brand colors — extracted from design */
  --clr-hero-bg: #d0f6ff;
  /* hero section background */
  --clr-header-bg: #ffffff;
  --clr-heading: #1b2b3a;
  /* dark navy heading text */
  --clr-body: #374151;
  --clr-muted: #6b7280;
  --clr-teal: #0891b2;
  /* primary teal */
  --clr-teal-dark: #0e7490;
  --clr-navy: #00728f;
  /* logo / dark button */
  --clr-border: #e2e8f0;
  --clr-white: #ffffff;

  /* Spacing */
  --container-max: 1800px;
  /* inner max (body already 1860) */
  --header-px: 0px;
  /* header uses body padding */
  --section-py: 80px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --shadow-card: 0 8px 40px rgba(8, 145, 178, 0.15);

  /* Transition */
  --tr: 0.25s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  padding: 10px 30px;
  gap: 10px;
  border-radius: 50px;
  transition:
    background var(--tr),
    color var(--tr),
    transform var(--tr),
    box-shadow var(--tr);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

/* Book a Demo */
.btn--demo,
.btn--login,
.btn--cta,
.btn--showcase,
.cta__btn--teal,
.smarter__btn {
  background: var(--clr-navy);
  color: var(--clr-white);
}

.btn:hover {
  background: #005b72;
}

/* Hero CTA */

/* ============================================================
   HEADER
   ============================================================ */

.header {
  /* NOT sticky — just sits at the top */
  position: absolute;
  top: 66px;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: 0 66px;
  /* full-width inside the body 30px padding box */
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 24px;
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo__icon {
  display: flex;
  align-items: center;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-size: 13px;
  font-weight: 800;
  color: var(--clr-heading);
  letter-spacing: 0.01em;
}

.logo__sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--clr-muted);
  letter-spacing: 0.01em;
}

/* --- Nav (pill container) --- */
.nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;

  /* Pill border container — exactly like the design */
  background: var(--clr-white);
  border-radius: var(--r-pill);
  padding: 13px 26px;
  width: fit-content;
}

.nav__link {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  padding: 6px 20px;
  border-radius: var(--r-pill);
  transition:
    background var(--tr),
    color var(--tr);
  white-space: nowrap;
}

.nav__link:hover {
  background: var(--clr-hero-bg);
  color: var(--clr-teal);
}

.nav__link.active {
  background: var(--clr-hero-bg);
  color: var(--clr-teal);
}

/* --- Header actions --- */
.header__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

/* --- Burger (mobile) --- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  height: 36px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-heading);
  border-radius: 2px;
  transition:
    transform var(--tr),
    opacity var(--tr);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 16px;
  left: 0;
  border-top: 1px solid var(--clr-border);
  margin-top: 0;
  position: absolute;
  width: 100%;
  top: 100%;
  z-index: 10;
  background: var(--clr-white);
}

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

.mobile-nav .nav__link {
  padding: 10px 0;
  border-radius: var(--r-sm);
  font-size: 14px;
}

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

.hero {
  background: linear-gradient(
    180deg,
    #d0f6ff 77.08%,
    rgba(208, 246, 255, 0) 100%
  );
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 170px;
  padding-bottom: 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Hero text block */
.hero__content {
  max-width: 916px;
  margin: 0 auto 20px;
}

.hero__title {
  font-size: 60px;
  font-weight: 400;
  color: #000000;
  line-height: normal;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 30px;
  margin-bottom: 40px;
}

.hero__note {
  font-size: 15px;
  color: #777676;
  margin-top: 10px;
  line-height: 25px;
}

/* ============================================================
   HERO SLIDER — Swiper overrides
   ============================================================ */

.hero__slider-wrap {
  position: relative;
  /* overflow: hidden; */
  padding-bottom: 80px;
  max-width: 1640px;
  margin: 0 auto;
}
.heroSwiper .swiper-slide-prev,
.heroSwiper .swiper-slide-next {
  cursor: pointer;
}
/* Swiper container */
.heroSwiper {
  overflow: visible !important;
  width: 100%;
  max-width: 1400px;
  /* active slide visible area */
  margin: 0 auto;
}

.heroSwiper .hero__slide.swiper-slide-active{
  z-index: 10;
}
/* All slides */
.hero__slide {
  position: relative;
  /* Leave room for absolute-positioned badges */
  /* padding: 40px 20px 40px; */
}

/* The white card that wraps the screenshot */
.slide__card {
  overflow: hidden;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease,
    filter 0.5s ease;
}

.slide__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Active (center) slide */
.heroSwiper .swiper-slide-active .slide__card {
  transform: scale(1);
  opacity: 1;
  filter: none;
}

/* Previous & next slides — blurred, scaled, faded */
.heroSwiper .swiper-slide-prev .slide__card,
.heroSwiper .swiper-slide-next .slide__card {
  transform: scale(0.6);
  opacity: 0.5;
  filter: blur(4px);
}

/* Extra outer slides — hide completely */
.heroSwiper
  .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(
    .swiper-slide-next
  )
  .slide__card {
  opacity: 0;
  filter: blur(6px);
}

/* Hide badges on non-active slides */
.heroSwiper .swiper-slide-prev .badge,
.heroSwiper .swiper-slide-next .badge,
.heroSwiper
  .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(
    .swiper-slide-next
  )
  .badge {
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   FLOATING BADGES
   ============================================================ */

.badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    90deg,
    rgba(208, 246, 255, 0.3) 0%,
    rgba(0, 114, 143, 0.3) 100%
  );
  border: 1px solid #d9d9d9;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 15px 15px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font);
  color: #000000;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--clr-hero-bg);
  border-radius: 6px;
  flex-shrink: 0;
}

/* Badge positions — matching the design exactly */
.badge--top-right {
  top: 50px;
  right: -30px;
}

.badge--left {
  top: 50%;
  left: -130px;
  transform: translateY(-50%);
}

.badge--right {
  top: 75%;
  right: -120px;
}

.badge--bottom-left {
  bottom: -10px;
  left: -30px;
}

/* ---- Float keyframes ---- */
@keyframes float1 {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes float4 {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* badge--left uses translateY(-50%) as base — special float */
@keyframes float2-left {
  0%,
  100% {
    transform: translateY(calc(-50% + 0px));
  }

  50% {
    transform: translateY(calc(-50% - 12px));
  }
}

.badge--float-1 {
  animation: float1 3.2s ease-in-out infinite;
}

.badge--float-2:not(.badge--left) {
  animation: float2 3.8s ease-in-out 0.4s infinite;
}

.badge--float-2.badge--left {
  animation: float2-left 3.8s ease-in-out 0.4s infinite;
}

.badge--float-3 {
  animation: float3 2.9s ease-in-out 0.9s infinite;
}

.badge--float-4 {
  animation: float4 3.5s ease-in-out 1.4s infinite;
}

/* ============================================================
   STATS / TRUSTED SECTION
   Add to style.css after the hero/badge section
   ============================================================ */

/* ---- Section wrapper ---- */

/* ---- Inner container — max width matches body ---- */
.stats__inner {
  max-width: 1410px;
  margin: 0 auto;
}

/* ---- Section heading ---- */
.stats__heading {
  font-size: 30px;
  font-weight: 600;
  color: #00728f;
  text-align: center;
  margin-bottom: 40px;
  line-height: normal;
}

/* ---- 4-column grid ---- */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ---- Individual card ---- */
.stats__card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  /* exact Figma value */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* left-align content like design */
  padding: 30px 30px;
  /* exact Figma height */
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  cursor: default;
}

.stats__card:hover {
  box-shadow: 0 8px 32px rgba(0, 114, 143, 0.12);
  transform: translateY(-4px);
}

/* ---- Icon area — top half of card ---- */
.stats__icon-wrap {
  flex: 1;
  /* takes upper half space */
  display: flex;
  align-items: center;
  /* icon centred vertically in top half */
  justify-content: flex-start;
  width: 100%;
}

.stats__icon {
  width: 104px;
  height: 104px;
  flex-shrink: 0;
}

/* ---- Number + label — bottom of card ---- */
.stats__content {
  margin-top: auto;
  /* push to bottom */
  text-align: left;
  width: 100%;
}

.stats__number {
  font-size: 36px;
  font-weight: 600;
  color: #00728f;
  line-height: normal;
  margin-top: 62px;
  margin-bottom: 10px;
}

.stats__label {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: normal;
}

/* ============================================================
   COMPARE SECTION 
   ============================================================ */

.compare {
  /* Teal background matching design */
  background-color: #1a7a8c;

  /* Subtle dot texture — pure CSS, no image needed */
  background-image: url("../images/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 20px;
}

/* ---- Inner container ---- */
.compare__inner {
  max-width: 1040px;
  margin: 0 auto;
}

/* ---- Section heading ---- */
.compare__inner .common-subtitle {
  color: #ffffff;
  text-align: center;
  padding-bottom: 50px;
}

/* ---- Rows container ---- */
.compare__rows {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ---- Single row: left item + arrow + right item ---- */
.compare__row {
  display: grid;
  /* Left col: fixed, Arrow: flexible stretch, Right col: fixed */
  grid-template-columns: 380px 1fr 380px;
  align-items: center;
  gap: 16px;
}

/* ---- Left & right items ---- */
.compare__item {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Left items — text on right of icon */
.compare__item--left {
  justify-content: flex-start;
}

/* Right items — icon then text (same order, left-to-right) */
.compare__item--right {
  justify-content: flex-start;
}

/* ---- Icon wrapper ---- */
.compare__icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---- Text label ---- */
.compare__text {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  line-height: normal;
}

/* ---- Dashed arrow ---- */
.compare__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  width: 100%;
}

.compare__arrow-svg {
  width: 100%;
  height: 16px;
  display: block;
}

/* ============================================================
   FEATURES SECTION — "Built For High-Performance Teams"
   ============================================================ */

.features {
  background: #ffffff;
}

/* ---- Inner container ---- */
.features__inner {
  max-width: 1310px;
  margin: 0 auto;
}

/* ---- Heading ---- */
.features__inner .common-subtitle {
  padding-bottom: 50px;
}

/* ---- 3-column grid ---- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* No gap — borders handle visual separation */
  column-gap: 30px;
  row-gap:50px;
}

/* ---- Individual item ---- */
.features__item {
  padding: 0px 30px 30px 0;
  border-bottom: 1px solid #ebebeb;
  /* border-right: 1px solid #e5e5e5; */

  padding-right: 48px;
}

/* ---- Feature title ---- */
.features__title {
  font-size: 24px;
  font-weight: 500;
  color: #00728f;
  line-height: normal;
  margin-bottom: 20px;
}

/* ---- Feature body text ---- */
.features__body {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 30px;
  margin: 0;
}

.showcase {
  background: #e8faff;
  display: flex;
  align-items: center;
  gap: 100px;
  margin-right: -30px;
  margin-left: -30px;
  overflow: hidden;
}

/* ---- Left: Image wrap ---- */
.showcase__image-wrap {
  max-width: 1060px;
  padding-left: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.showcase__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px; /* rounded only on right side */
  box-shadow:
    4px 0 40px rgba(0, 0, 0, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  border-left: none;
}

/* ---- Right: Text content ---- */
.showcase__content {
  flex: 1;
  min-width: 0;
  padding-right: 20px;
}

/* ---- Heading ---- */
.showcase__heading {
  padding-bottom: 40px;
}

/* ---- Description ---- */
.showcase__desc {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 30px;
  margin-bottom: 22px;
  max-width: 470px;
}

/* ---- Checklist ---- */
.showcase__list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: flex;
  flex-direction: column;
}

.showcase__list-item {
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 12px;
  color: #000000;
  line-height: 36px;
}

/* Teal checkmark icon wrapper */
.showcase__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing {
  background-color: #ffffff;
  background-image: url("../images/princing-bg.png");
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  position: relative;
}

/* ---- Inner container ---- */
.pricing__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ---- Header: heading + subtext ---- */
.pricing__header {
  text-align: center;
  margin-bottom: 72px;
}

.pricing__heading {
  margin-bottom: 10px;
}

.pricing__subtext {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 30px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: center;
}

/* ============================================================
   BASE CARD STYLES
   ============================================================ */
.pricing__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 34px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.pricing__card:hover {
  transform: translateY(-3px);
}

/* ---- Popular card overrides ---- */
.pricing__card--popular {
  border: 2px solid #00728f;
  border-radius: 12px;
  scale: 1.02;
  padding-top: 44px;
}

/* ---- "Most Popular" badge ---- */
.pricing__popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #0891b2;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ---- Card top block ---- */
.pricing__card-top {
  text-align: center;
  margin-bottom: 54px;
}

/* Plan name */
.pricing__plan-name {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 14px;
  line-height: 32px;
}

/* Plan description */
.pricing__plan-desc {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 24px;
  margin-bottom: 24px;
}

/* Price row */
.pricing__price-row {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
}

.pricing__currency {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1;
}

.pricing__amount {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  line-height: 48px;
}

.pricing__period {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 24px;
  text-align: left;
}

/* Custom price (Enterprise) */
.pricing__price-row--custom {
  justify-content: center;
  margin: 16px 0 0;
}

.pricing__amount-custom {
  font-size: 46px;
  font-weight: 800;
  color: #000000;
  line-height: 1;
}

/* ---- Buttons ---- */
.pricing__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 24px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

/* Outline button (Starter / Enterprise) */
.pricing__btn--outline {
  background: transparent;
  border: 1px solid #0000001a;
  color: #0a0a0a;
}

.pricing__btn--outline:hover {
  border-color: #0891b2;
  color: #0891b2;
}

/* Filled button (Professional) */
.pricing__btn--filled {
  background: #0891b2;
  border: 1px solid #0891b2;
  color: #ffffff;
}

.pricing__btn--filled:hover {
  background: #0e7490;
  border-color: #0e7490;
}

/* ---- Feature list ---- */
.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing__feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 24px;
}

.pricing__check {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS SECTION — "Teams Love The Simplicity"
   Add to style.css after pricing section
   ============================================================ */

.testimonials {
  background: #f9fafb;
  margin-right: -30px;
  margin-left: -30px;
}

/* ---- Inner container ---- */
.testimonials__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* ---- Heading ---- */
.testimonials__heading {
  margin-bottom: 47px;
}

/* ---- Swiper container ---- */
.testiSwiper {
  width: 100%;
  padding-bottom: 52px; /* space for pagination dots */
}

/* ---- Individual slide ---- */
.testimonials__slide {
  text-align: center;
}

/* ---- Large opening quote icon ---- */
.testimonials__quote-icon {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

/* ---- Quote body text ---- */
.testimonials__text {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 30px;
  max-width: 926px;
  margin: 0 auto 30px;
  text-align: center;
}

/* ---- Author name ---- */
.testimonials__author {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 6px;
}

/* ---- Role / title ---- */
.testimonials__role {
  font-size: 14px;
  font-weight: 500;
  color: #777676;
  margin-bottom: 0;
}

/* Pagination wrapper */
.testiSwiper .swiper-pagination {
  bottom: 4px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Individual dot */
.testiSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  opacity: 1;
  margin: 0 !important;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

/* Active dot */
.testiSwiper .swiper-pagination-bullet-active {
  background: #0891b2;
  transform: scale(1.15);
}

/* ============================================================
   FAQ SECTION — "Frequently Asked Questions"
   Add to style.css after testimonials section
   ============================================================ */

.faq {
  background: #ffffff;
}

/* ---- Inner: 2-column layout ---- */
.faq__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 690px;
  gap: 60px;
  align-items: start;
}

.faq__heading {
  margin-bottom: 30px;
}

.faq__sub-grey {
  font-size: 30px;
  font-weight: 400;
  color: #777676;
  line-height: 50px;
}

.faq__sub-teal {
  font-size: 40px;
  font-weight: 400;
  color: #00728f;
  line-height: 50px;
}

/* ============================================================
   RIGHT COLUMN — Accordion
   ============================================================ */

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

/* ---- Individual FAQ item ---- */
.faq__item {
  background: #d0f6ff;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq__item:hover {
  background: #c8edf7;
}

/* ---- Question row ---- */
.faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  user-select: none;
}

/* The + icon (hidden on open item — replaced by no icon) */
.faq__plus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Rotate + to x when open */
.faq__item.faq__item--open {
  border-radius: 30px;
}
.faq__item--open .faq__plus-icon {
  transform: rotate(45deg);
}

/* Open item has no icon in the design — hide it */
.faq__item--open .faq__plus-icon {
  display: none;
}

.faq__question-text {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  line-height: normal;
  flex: 1;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease;
  padding: 0 22px;
}

.faq__answer p {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 30px;
  margin: 0;
}

/* ---- Open state ---- */
.faq__item--open .faq__answer {
  max-height: 200px;
  padding: 0 26px 22px;
}

/* Open item — question has no gap since no icon */
.faq__item--open .faq__question {
  padding-bottom: 10px;
}

/* ============================================================
   CTA / CONTACT SECTION
   Add to style.css after FAQ section
   ============================================================ */

.cta {
  background-color: #d0f6ff;
  position: relative;
  overflow: hidden;
  background-image: url("../images/cta-bg.webp");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  border-radius: 10px;
}
/* ---- Inner layout ---- */
.cta__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 713px;
  gap: 60px;
  align-items: self-start;
  position: relative;
  z-index: 1;
}

/* ============================================================
   LEFT COLUMN
   ============================================================ */

.cta__heading {
  font-weight: 600;
  color: #000000;
  line-height: normal;
  margin-bottom: 20px;
}

.cta__desc {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 30px;
  margin-bottom: 40px;
}

/* ---- CTA Buttons ---- */
.cta__btns {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Dark button */
.cta__btn--dark {
  background: #000000;
  color: #ffffff;
}
.cta__btn--dark:hover {
  background: #1f2937;
}

/* Note below buttons */
.cta__note {
  font-size: 14px;
  font-weight: 400;
  color: #777676;
}

/* ============================================================
   RIGHT COLUMN — Form card
   ============================================================ */

.cta__form-card {
  background: #00728f;
  border-radius: 20px;
  padding: 45px 35px;
}

/* ---- Form layout ---- */
.cta__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 2-col row */
.cta__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Field wrapper */
.cta__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Label */
.cta__label {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 30px;
}

/* Base input / select / textarea */
.cta__input {
  background: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  width: 100%;
  outline: none;
  transition: box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.cta__input::placeholder {
  color: #a0a5b0;
  font-size: 16px;
}

.cta__input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}

/* Error state */
.cta__input--error {
  box-shadow: 0 0 0 2px #f87171 !important;
}

/* Input with icon wrapper */
.cta__input-icon-wrap {
  position: relative;
}

.cta__input-icon-wrap .cta__input {
  padding-right: 38px;
}

.cta__input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* Date input — hide default calendar icon, show custom */
.cta__input--date::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 38px;
  height: 100%;
  cursor: pointer;
}

/* Select */
.cta__input--select {
  cursor: pointer;
  padding-right: 38px;
  background: #ffffff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat right 12px center;
}

/* Textarea */
.cta__input--textarea {
  resize: none;
  min-height: 90px;
  line-height: 1.5;
}

/* Error message */
.cta__error {
  font-size: 12.5px;
  font-weight: 500;
  color: #fa9f9f;
  font-family: var(--font);
  min-height: 16px;
  display: block;
  line-height: 1.3;
}

.cta_require_field_star{
  color: #fa9f9f;
}

/* ---- Submit button ---- */
.cta__submit {
  background: #000000;
  color: #ffffff;
}

.cta__submit:hover {
  background: #1f2937;
}

/* ---- Success message ---- */
.cta__success {
  display: none;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta__success--visible {
  display: block;
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   SMARTER WAY SECTION
   ============================================================ */

.smarter {
  background-color: #ffffff;
  padding-top: 200px;
  overflow: hidden;
  position: relative;

  /* background-image : url("../images/sm-bg.png"); */
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

.smarter::before {
  background-image: url("../images/sm-bg.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 532px;
}
/* ---- 2-col layout ---- */
.smarter__inner {
  max-width: 1400px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.smarter__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* ============================================================
   LEFT COLUMN
   ============================================================ */

.smarter__heading {
  margin-bottom: 58px;
}
.smarter__left {
  position: relative;
  z-index: 2;
  background-color: white;
}
/* ---- Accordion container ---- */
.smarter__accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

/* ---- Each accordion item ---- */
.smarter__acc-item {
  background: #d0f6ff; /* light teal blue — same in active & inactive */
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease;
}

.smarter__acc-item:hover {
  background: #aeeaf8;
}

/* ---- Header row ---- */
.smarter__acc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
  padding: 22px 26px;
  user-select: none;
}
.smarter__acc-item.smarter__acc-item--active {
  border-radius: 30px;
}
/* + icon — visible on inactive, hidden on active */
.smarter__acc-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}

/* Active: rotate + to × */
.smarter__acc-item--active .smarter__acc-plus {
  transform: rotate(45deg);
}
.smarter__acc-item--active .smarter__acc-plus {
  display: none;
}
/* ---- Title ---- */
.smarter__acc-title {
  font-size: 26px;
  font-weight: 500;
  color: #000000;
  line-height: normal;
}

/* ---- Body (description) — collapsed by default ---- */
.smarter__acc-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease;
  padding: 0 24px;
}

.smarter__acc-body p {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 30px;
  margin: 0;
}

/* Open state */
.smarter__acc-item--active .smarter__acc-body {
  max-height: 140px;
  padding: 0 26px 22px;
}
.smarter__acc-item--active .smarter__acc-header {
  padding-bottom: 10px;
}
/* ============================================================
   RIGHT COLUMN 
   ============================================================ */

.smarter__right {
  /* overflow: hidden; */
  margin-right: -150px;
}

.smarterSwiper {
  overflow: visible !important;
  max-width: 630px;
  margin: 0 auto;
  padding-block: 14px;
}

/* ---- Card ---- */
.smarter__card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #ebebeb;
  overflow: hidden;
  position: relative;
  padding: 30px;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.5s ease,
    box-shadow 0.5s ease;
}

.smarter__card-img {
  width: 100%;
  overflow: hidden;
  background: #e8f4fd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.smarter__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Card text ---- */
.smarter__card-body {
  padding-top: 30px;
}

.smarter__card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0d1f2d;
  line-height: 1.35;
  margin-bottom: 10px;
  font-family: var(--font);
}

.smarter__card-body p {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 30px;
  margin: 0;
}

/* ============================================================
   Swiper slide states — ACTIVE vs SIDE
   ============================================================ */

/* ── ACTIVE slide ── */
.smarterSwiper .swiper-slide-active .smarter__card {
  transform: scale(1);
  filter: none;
  z-index: 2;
  box-shadow: 0px 0px 20px 0px #00000026;
}
.smarterSwiper .swiper-slide.swiper-slide-active{
  z-index: 10;
}

/* ── PREV & NEXT — scaled + blurred ── */
.smarterSwiper .swiper-slide-prev .smarter__card,
.smarterSwiper .swiper-slide-next .smarter__card {
  transform: scale(0.8);
  filter: blur(2.5px);
  box-shadow: none;
  opacity: 0.75;
}

/* ── All other slides — hidden ── */
.smarterSwiper
  .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(
    .swiper-slide-next
  )
  .smarter__card {
  opacity: 0;
}
