/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 140px 24px;
  overflow: hidden;
  background: radial-gradient(
      1200px 400px at 10% 10%,
      rgba(211, 47, 47, 0.05),
      transparent 10%
    ),
    linear-gradient(180deg, #fff, #fff);
  text-align: center;
}

.hero .wrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.hero h1 {
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 1.2;
  font-family: "instrument serif", serif;
  color: #111;
}

.hero .lead {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--muted, #444);
  margin-bottom: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-family: "GT Pressure", sans-serif;
}

.hero .btn-cta {
  font-family: "Instrument Serif", serif !important;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.2px;
}

/* Gradient word */
.gradient-word {
  background: linear-gradient(90deg, #d32f2f, #0489b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Badges */
.hero .badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.hero .badge-pill {
  background: rgba(4, 137, 176, 0.08);
  color: #0489b0;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Floating icons */
.hero-icon {
  position: absolute;
  font-size: clamp(32px, 6vw, 60px);
  color: rgba(211, 47, 47, 0.12);
  transform: translateZ(0);
  pointer-events: none;
  z-index: 0;
}

.float-1 {
  top: 10%;
  left: 6%;
  animation: floatA 6s ease-in-out infinite;
}
.float-2 {
  top: 22%;
  right: 8%;
  animation: floatB 7s ease-in-out infinite;
}
.float-3 {
  bottom: 14%;
  left: 10%;
  animation: floatC 5.5s ease-in-out infinite;
}
.float-4 {
  bottom: 20%;
  right: 12%;
  animation: floatA 6.5s ease-in-out infinite;
}

@keyframes floatA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px) rotate(8deg);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px) rotate(-6deg);
  }
}
@keyframes floatC {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-26px) rotate(6deg);
  }
}

/* Abstract blob (subtle) */
.hero .blob {
  position: absolute;
  width: 520px;
  height: 420px;
  right: -80px;
  top: -60px;
  z-index: 1;
  opacity: 0.14;
  background: radial-gradient(
      circle at 30% 30%,
      #ffdede 0 22%,
      transparent 22.5%
    ),
    linear-gradient(180deg, #fff0, #fff0);
  filter: blur(28px);
}

/* -------- Responsive -------- */

/* Tablets */
@media (max-width: 992px) {
  .hero {
    padding: 100px 16px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero .lead {
    font-size: 1.1rem;
  }
  .hero .badges {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero {
    padding: 80px 14px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero .lead {
    font-size: 1rem;
  }
  .hero .btn-cta {
    display: block;
    margin: 10px auto 0;
    width: fit-content;
  }
  .hero .badges {
    flex-direction: column;
    align-items: center;
  }
  .hero .badge-pill {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

/* ---- Hero With Mobile ---- */
.hero-with-mobile {
  position: relative;
  padding: 50px 24px;
  overflow: hidden;
  background: radial-gradient(
      1200px 400px at 10% 10%,
      rgba(211, 47, 47, 0.05),
      transparent 10%
    ),
    linear-gradient(180deg, #fff, #fff);
  text-align: center;
}

.hero-with-mobile .wrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.hero-with-mobile h1 {
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 1.2;
  font-family: "instrument serif", serif;
  color: #111;
}

.hero-with-mobile .lead {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--muted, #444);
  margin-bottom: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-family: "GT Pressure", sans-serif;
}

.hero-with-mobile .btn-cta {
  font-family: "Instrument Serif", serif !important;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.2px;
}

/* Gradient word */
.hero-with-mobile .gradient-word {
  background: linear-gradient(90deg, #d32f2f, #0489b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Badges */
.hero-with-mobile .badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.hero-with-mobile .badge-pill {
  background: rgba(4, 137, 176, 0.08);
  color: #0489b0;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Phone Mockup */
.hero-with-mobile .phone-frame {
  width: 300px;
  max-width: 90%;
  border: 5px solid #111;
  border-radius: 40px;
  padding: 6px;
  background: #000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

.hero-with-mobile .phone-frame::before {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 16px;
  background: #111;
  border-radius: 10px;
  z-index: 2;
}

.hero-with-mobile .phone-frame video {
  display: block;
  width: 100%;
  border-radius: 28px;
}

/* Floating icons */
.hero-with-mobile .hero-icon {
  position: absolute;
  font-size: clamp(32px, 6vw, 60px);
  color: rgba(211, 47, 47, 0.12);
  transform: translateZ(0);
  pointer-events: none;
  z-index: 0;
}

.hero-with-mobile .float-1 {
  top: 10%;
  left: 6%;
  animation: floatA 6s ease-in-out infinite;
}
.hero-with-mobile .float-2 {
  top: 22%;
  right: 8%;
  animation: floatB 7s ease-in-out infinite;
}
.hero-with-mobile .float-3 {
  bottom: 14%;
  left: 10%;
  animation: floatC 5.5s ease-in-out infinite;
}
.hero-with-mobile .float-4 {
  bottom: 20%;
  right: 12%;
  animation: floatA 6.5s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-with-mobile {
    padding: 100px 16px;
  }
  .hero-with-mobile h1 {
    font-size: 2.2rem;
  }
  .hero-with-mobile .lead {
    font-size: 1.1rem;
  }
  .hero-with-mobile .wrap {
    flex-direction: column;
    text-align: center;
  }
  .hero-with-mobile .phone-frame {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .hero-with-mobile {
    padding: 80px 14px;
  }
  .hero-with-mobile h1 {
    font-size: 1.8rem;
  }
  .hero-with-mobile .lead {
    font-size: 1rem;
  }
  .hero-with-mobile .btn-cta {
    display: block;
    margin: 10px auto 0;
    width: fit-content;
  }
  .hero-with-mobile .badges {
    flex-direction: column;
    align-items: center;
  }
  .hero-with-mobile .badge-pill {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

/* ---- Split Section ---- */
.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 80px 6%;
  background: linear-gradient(135deg, #fff, #f9f9fb);
  flex-wrap: wrap; /* ensures proper wrapping */
}

.split .col-text {
  flex: 1;
  min-width: 300px;
}

.split .col-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

/* ---- Typography ---- */
.split h2 {
  font-family: "Instrument Serif", serif;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 700;
  color: #111;
}

.split h2 em {
  color: #d32f2f;
  font-style: normal;
}

.split p {
  font-family: "GT Pressure", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 22px;
}

.split p em {
  color: #0489b0; /* secondary */
  font-style: normal;
  font-weight: 600;
}

/* accent line under heading */
.accent-line {
  width: 60px;
  height: 4px;
  background: #b71c1c;
  margin: 10px 0 25px;
  border-radius: 2px;
}

/* ---- Feature List ---- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "GT Pressure", sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  color: #222;
  text-align: left; /* always left aligned */
}

.feature-list li i {
  color: #0489b0;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---- Button ---- */
.btn-wrap {
  margin-top: 25px;
}

/* ---- Responsive Tweaks ---- */
@media (max-width: 768px) {
  .feature-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
}
/* ---- Split Section ---- */
#split {
  display: flex;
  align-items: stretch; /* equal height */
  justify-content: space-between;
  gap: 40px;
  padding: 80px 6%;
}

/* Left Column (Text) */
#split .col-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#split .col-text h2 {
  font-family: "Instrument Serif", serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
}

#split .col-text h2 em.red {
  color: var(--red-600);
  font-style: normal;
}

#split .col-text p {
  font-family: "GT Pressura", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #333;
}

.split h2 em {
  color: #d32f2f !important;
  font-style: normal;
}

.split p {
  font-family: "GT Pressure", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 22px;
}

.split p em {
  color: #0489b0; /* secondary */
  font-style: normal;
  font-weight: 600;
}

/* accent line under heading */
.accent-line {
  width: 60px;
  height: 4px;
  background: #b71c1c;
  margin: 10px 0 25px;
  border-radius: 2px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.feature-list li {
  display: flex;
  align-items: center;
  font-family: "GT Pressura", sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  gap: 10px;
}

.feature-list i {
  color: var(--red-600);
  font-size: 1.1rem;
}

/* Right Column (Visual) */
#split .col-visual {
  flex: 1;
  display: flex;
  align-items: center;
}

.visual-card {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%; /* equal height with text column */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 0.8s ease;
}

.visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.mockup-box {
  border-radius: 10px;
  background: #fafafa;
  padding: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-box img {
  width: 100%;
  max-height: 320px; /* prevents image from being too tall */
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

/* ---- Visual Footer ---- */
.visual-footer {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
  justify-content: space-between;
}

.meta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #e6f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0489b0;
  box-shadow: 0 6px 18px rgba(4, 137, 176, 0.08);
  font-size: 1.1rem;
}

.meta-title {
  font-weight: 700;
  color: #111;
}

.meta-sub {
  color: #777;
  font-size: 0.9rem;
}

.price-title {
  font-weight: 800;
  color: #b71c1c;
}

.price-range {
  font-size: 0.95rem;
  color: #555;
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  #split {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 60px 5%;
  }

  #split .col-text,
  #split .col-visual {
    width: 100%;
    height: auto; /* reset equal height */
  }

  .accent-line {
    margin: 12px auto 25px;
  }

  .feature-list li {
    justify-content: center;
  }

  .visual-card {
    height: auto;
  }
}

@media (max-width: 600px) {
  #split h2 {
    font-size: 1.8rem;
  }
  #split p {
    font-size: 0.95rem;
  }
  .feature-list li {
    font-size: 0.9rem;
  }
  .visual-card {
    padding: 16px;
    border-radius: 14px;
  }
}

/* ---- Timeline ---- */
.timeline {
  padding: 90px 6%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fdf4f4); /* light gradient bg */
}

/* animated morphing blobs */
.timeline .blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 30% 30%, #d32f2f, #0489b0);
  border-radius: 60% 40% 30% 70% / 60% 40% 70% 40%;
  transform: translate(-50%, -50%);
  animation: morph 5s infinite ease-in-out;
  z-index: 1;
  opacity: 0.1;
}

.timeline .blob.blob-1 {
  top: -120px;
  left: -100px;
}
.timeline .blob.blob-2 {
  bottom: -140px;
  right: -120px;
}

@keyframes morph {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 40% 70% 40%;
    transform: scale(1);
  }
  50% {
    border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
    transform: scale(1.1);
  }
}

.timeline .title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.timeline .title h2 {
  font-family: "Instrument Serif", serif;
  font-size: 3rem;
  margin-bottom: 14px;
  color: #111;
}
.timeline .title h2 em {
  color: #d32f2f !important; /* primary red */
  font-style: normal;
}
.timeline .title p {
  font-family: "GT Pressure", sans-serif;
  font-size: 1rem;
  color: #555;
  max-width: 780px;
  margin: 0 auto;
}

/* row with connecting line */
.timeline-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding: 18px 6px;
  z-index: 2;
}
.timeline-row:before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 999px;
}

/* step cards */
.timeline-step {
  position: relative;
  z-index: 3;
  flex: 1 1 220px;
  max-width: 260px;
  margin: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 8px 22px rgba(243, 242, 242, 0.06);
  transition: transform 0.35s, box-shadow 0.35s;
  text-align: left;
  animation: fadeUp 0.8s ease both;
}
.timeline-step:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-step:nth-child(2) {
  animation-delay: 0.3s;
}
.timeline-step:nth-child(3) {
  animation-delay: 0.5s;
}
.timeline-step:nth-child(4) {
  animation-delay: 0.7s;
}

.timeline-step:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 52px rgba(6, 10, 15, 0.15);
}
.timeline-step .num {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: #0489b0;
  margin-bottom: 14px;
  font-size: 18px;
  animation: pulse 2.4s infinite;
}
.timeline-step h4 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
  font-family: "instrument serif", serif;
}
.timeline-step p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  font-family: "GT Pressure", sans-serif;
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .timeline-row:before {
    display: none;
  }
  .timeline-row {
    justify-content: center;
  }
  .timeline-step {
    flex: 1 1;
    max-width: 45%;
    text-align: center;
  }
  .timeline-step .num {
    margin: 0 auto 14px;
  }
}
@media (max-width: 768px) {
  .timeline-step {
    max-width: 100%;
    margin: 12px 0; /* pehle 16px tha */
    text-align: left;
    padding: 18px; /* thoda tight kiya */
  }

  .timeline-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px; /* pehle 12px tha */
    gap: 10px;
  }

  .timeline-step .num {
    margin: 0;
    flex-shrink: 0;
  }

  .timeline-step h4 {
    font-size: 1.25rem;
    margin: 0; /* heading ke neeche extra space hata diya */
  }

  .timeline-step p {
    font-size: 0.92rem;
    line-height: 1.45;
    margin: 6px 0 0; /* top-bottom spacing control */
  }
}

@media (max-width: 480px) {
  .timeline {
    padding: 60px 4%;
  }
  .timeline .title h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .timeline-step {
    padding: 20px;
  }
  .timeline-step .num {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
}
/* ---- Benefits Section ---- */
.benefits {
  position: relative;
  padding: 90px 6%;
  background: linear-gradient(180deg, #fafbff, #f9f9f9);
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

/* animated blobs in background */
.benefits::before,
.benefits::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d32f2f55, transparent 70%);
  filter: blur(80px);
  animation: floaty 10s ease-in-out infinite alternate;
  z-index: 0;
}
.benefits::before {
  top: -120px;
  left: -120px;
}
.benefits::after {
  bottom: -140px;
  right: -140px;
  background: radial-gradient(circle at 70% 70%, #0489b055, transparent 70%);
}

@keyframes floaty {
  from {
    transform: translateY(0px) scale(1);
  }
  to {
    transform: translateY(40px) scale(1.05);
  }
}

/* heading styles */
.benefits h2 {
  font-size: 3rem;
  font-family: "Instrument Serif", serif;
  margin-bottom: 14px;
  background: #111;
  -webkit-background-clip: text;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
}
.benefits h2 em {
  font-style: normal;
  background: #d32f2f;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.benefits p {
  font-size: 1.05rem;
  color: #444;
  max-width: 760px;
  margin: 0 auto 50px;
  font-family: "GT Pressure", sans-serif;
}

/* responsive grid */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 2;
}

/* glass cards */
.benefit {
  border-radius: 20px;
  padding: 34px 28px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.4s, box-shadow 0.4s;
  text-align: center;
  animation: fadeUp 1s ease both;
}
.benefit:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.15);
}

/* icon styling with gradient */
.benefit i {
  font-size: 44px;
  display: inline-block;
  margin-bottom: 16px;
  background: linear-gradient(1200deg, #d32f2f, #0489b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2.8s infinite;
}

/* title and text */
.benefit h4 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #111;
  font-family: "instrument serif", serif;
}
.benefit h4 em {
  color: #d32f2f;
  font-style: normal;
}
.benefit p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  font-family: "GT Pressure", sans-serif;
}

/* animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* responsiveness */
@media (max-width: 768px) {
  .benefits {
    padding: 70px 5%;
  }
  .benefits h2 {
    font-size: 2rem;
  }
  .benefit {
    padding: 26px 20px;
  }
}
@media (max-width: 480px) {
  .benefits {
    padding: 60px 4%;
  }
  .benefits h2 {
    font-size: 1.7rem;
  }
  .benefit h4 {
    font-size: 1.05rem;
  }
}

/* ---- Impact Section ---- */
.impact {
  position: relative;
  padding: 90px 6%;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fff 35%, #fce9e9 100%);
}

/* background blobs */
.impact::before,
.impact::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d32f2f, #0489b0);
  opacity: 0.08;
  z-index: 0;
  animation: floaty 12s infinite ease-in-out alternate;
}
.impact::before {
  top: -100px;
  left: -100px;
}
.impact::after {
  bottom: -120px;
  right: -80px;
}

@keyframes floaty {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* heading */
.impact h2 {
  font-family: "Instrument Serif", serif;
  font-size: 3.5rem;
  margin-bottom: 14px;
  font-weight: 600;
  color: #111;
}
.impact h2 em {
  color: #d32f2f; /* primary */
  font-style: normal;
}
.impact p {
  font-family: "GT Pressure", sans-serif;
  font-size: 1rem;
  color: #555;
  max-width: 760px;
  margin: 0 auto 40px;
}

/* grid layout */
.impact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* cards */
.impact-card {
  flex: 1 1 260px;
  max-width: 300px;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(211, 47, 47, 0.08);
  box-shadow: 0 10px 28px rgba(6, 10, 15, 0.08);
  transition: transform 0.35s, box-shadow 0.35s;
  animation: fadeUp 0.8s ease both;
}
.impact-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 48px rgba(6, 10, 15, 0.15);
}

/* values */
.impact-value {
  font-size: 3rem;
  font-weight: 500;
  color: #d32f2f;
  margin-bottom: 8px;
  line-height: 1;
  animation: pulse 2.4s infinite;
}

/* animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .impact h2 {
    font-size: 2.2rem;
  }
  .impact-card {
    flex: 1 1 45%;
  }
}
@media (max-width: 768px) {
  .impact {
    padding: 70px 5%;
  }
  .impact-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .impact h2 {
    font-size: 1.9rem;
  }
}
@media (max-width: 480px) {
  .impact {
    padding: 60px 4%;
  }
  .impact h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .impact-value {
    font-size: 2.2rem;
  }
}

/* ---- CTA (keep same Book a Demo) ---- */
.book-demo-section {
  padding: 72px 10px;
  background: linear-gradient(
    90deg,
    rgba(183, 28, 28, 0.04),
    rgba(255, 95, 95, 0.02)
  );
  text-align: center;
}
.book-demo-section h2 {
  font-size: 44px;
  margin-bottom: 12px;
}
.book-demo-section p {
  color: var(--muted);
  margin-bottom: 22px;
}

/* ---- reveals ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- responsive ---- */
@media (max-width: 980px) {
  h1 {
    font-size: 46px;
  }
  .split {
    padding: 38px 6%;
  }
  .timeline-row:before {
    left: 6%;
    right: 6%;
    top: calc(50%);
  }
  .hero {
    padding: 80px 20px;
  }
}
@media (max-width: 640px) {
  .timeline-row:before {
    display: none;
  }
  .timeline-row {
    flex-direction: column;
    align-items: center;
  }
  .timeline-step {
    max-width: 420px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .impact-card {
    width: 100%;
    max-width: 420px;
  }
}
/* Book a Demo Section */
.book-demo-section {
  background: #fff; /* primary color background */

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.book-demo-section .container {
  max-width: 800px;
  padding: 0 1rem;
}

.book-demo-section h1 {
  font-family: "Instrument Serif", serif;
  font-size: 3rem !important;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.book-demo-section h1 em {
  color: #d32f2f; /* subtle secondary accent */
  /* font-style: italic; */
  font-style: normal;
}

/* Button */
.book-demo-section .btn-cta {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 2rem;
  transition: all 0.3s ease;
}
.book-demo-section .btn-cta:hover {
  background: #fdecec; /* secondary soft tint on hover */
  color: #0489b0;
  border-color: #fdecec;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .book-demo-section h1 {
    font-size: 2.2rem;
  }
  .book-demo-section .btn-cta {
    font-size: 0.95rem;
    padding: 0.55rem 1.8rem;
  }
}

@media (max-width: 768px) {
  .book-demo-section {
    padding: 3rem 1rem;
  }
  .book-demo-section h1 {
    font-size: 2rem;
  }
  .book-demo-section .btn-cta {
    font-size: 0.9rem;
    padding: 0.5rem 1.6rem;
  }
}

@media (max-width: 576px) {
  .book-demo-section {
    padding: 2.5rem 0.8rem;
  }
  .book-demo-section h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .book-demo-section .btn-cta {
    font-size: 0.85rem;
    padding: 0.45rem 1.4rem;
  }
}
