/* ===== CSS VARIABLES ===== */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --orange: #fbaa1a;
  --orange-lt: #fbaa1a;
  --navy: #2a2a2a;
  --navy-mid: #1a2b42;
  --navy-lt: #1e3352;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --gray-100: #f4f5f7;
  --gray-200: #e7e1d4;
  --gray-400: #9ba3af;
  --gray-600: #2a2a2a;
  --gray-800: #374151;
  --text-dark: #2a2a2a;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0px 4px 10px 5px rgba(42, 42, 42, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
}

/* ===== BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
 
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden !important;
}
 body , html {
  overflow-x: hidden !important;
}

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

img {
  max-width: 100%;
}

/* ===== UTILS ===== */
.text-orange {
  color: var(--orange) !important;
}

.bg-navy {
  background: var(--navy);
}

.fw-800 {
  font-weight: 800;
}

.fw-700 {
  font-weight: 700;
}

.fw-600 {
  font-weight: 600;
}

.section-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.badge-orange {
  background: #fff3dc;
  color: var(--orange);
}

.badge-navy {
  background: rgba(255, 255, 255, 0.12);
  color: var(--orange);
  border: 1px solid rgba(245, 166, 35, 0.35);
}

.badge-outline {
  background: rgba(251, 170, 26, 0.2);
  border-radius: 32px;
  padding: 8px 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 160%;
  text-transform: uppercase;
  color: #fbaa1a;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.68rem 1.5rem;
  margin-bottom: 1.4rem;
  background: rgba(251, 170, 26, 0.2);
  border-radius: 22.2727px;
  font-style: normal;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #fbaa1a;
  font-size: clamp(0.8rem, 1.2vw, 1.31rem);
  line-height: 160%;
}

.hero-badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fbaa1a;
}

.hero-headline {
  /* font-size: clamp(2.4rem, 5vw, 3.8rem); */
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.heading-glow {
  position: absolute;
  width: 272px;
  height: 263px;
  /* left:50%;
    top:50%; */
  transform: translate(-50%, -50%);
  filter: blur(175px);
  z-index: 0;
  left: 49px;
  top: 72px;
}

.heading-glow::before {
  content: "";
  position: absolute;
  width: 188px;
  height: 228px;
  background: radial-gradient(circle, #fbaa1a 0%, #fff 100%);
  left: 0;
  top: 0;
}

.heading-glow::after {
  content: "";
  position: absolute;
  width: 139px;
  height: 162px;
  background: radial-gradient(circle, #3a64af 0%, #fff 100%);
  right: 0;
  bottom: 0;
}

.hero-sub {
  color: var(--gray-600);
  max-width: 440px;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 160%;
}

.btn-orange {
  color: var(--white);
  font-weight: 600;
  border: none;
  transition:
    background 0.2s,
    transform 0.15s;
  padding: 11px 28px;
  background: #3a64af;
  border-radius: 32px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  display: flex;
  font-family: "Plus Jakarta Sans", sans-serif;
  justify-content: center;
  font-weight: 400;
  align-items: center;
}

.btn-orange:hover {
  background: #fbaa1a;
  transform: translateY(-1px);
  color: var(--white);
}

.btn-outline-navy {
  color: var(--white);
  font-weight: 600;
  border: none;
  transition:
    background 0.2s,
    transform 0.15s;
  padding: 11px 28px;
  background: #fbaa1a;
  border-radius: 32px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  display: flex;
  font-family: "Plus Jakarta Sans", sans-serif;
  justify-content: center;
  font-weight: 400;
  align-items: center;
}

.btn-outline-navy:hover {
  background: #3a64af;
  transform: translateY(-1px);
  color: var(--white);
}

/* Hero phone mockup area */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;

  background: linear-gradient(180deg,
      rgba(251, 170, 26, 0.2) 0%,
      rgba(197, 170, 121, 0.2) 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-phone-wrap {
  position: relative;
  z-index: 2;
}

.hero-phone {
  width: 220px;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.hero-avatar {
  position: absolute;
  top: 20%;
  left: -140px;
  width: 120px;
  height: 120px;
  /* border-radius: 50%; */
  object-fit: cover;
  right: auto;
}

.hero-orb-1 {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.85;
  top: 20px;
  right: 30px;
  z-index: 1;
}

.hero-orb-2 {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange-lt);
  box-shadow: 0px 4px 10px 5px rgba(42, 42, 42, 0.1);
  bottom: 120px;
  right: 130px;
  z-index: 1;
}

.hero-orb-3 {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.4;
  bottom: 30px;
  left: 20px;
  z-index: 1;
}

/* ===== VALUE PROPOSITION ===== */
.value-section {
  padding: 60px 0 60px;
  background: var(--white);
  position: relative;
}

.value-section::after {
  content: "";
  position: absolute;

  width: 272px;
  height: 263px;
  left: 310px;
  top: 10px;
  background: radial-gradient(50% 50% at 50% 50%, #fbaa1a 0%, #ffffff 100%);
  filter: blur(175px);
  z-index: 0;
}

.quote-block {
  color: var(--navy);
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 5vw, 4.375rem);
  line-height: 110%;
  letter-spacing: -0.05em;
}

.quote-block .highlight {
  color: var(--orange);
}

.quote-attr {
  margin-top: 0.75rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  line-height: clamp(1.375rem, 1.6vw, 1.5625rem);
  text-transform: capitalize;
  color: #2a2a2a;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(360deg,
      rgba(251, 170, 26, 0) 0%,
      #fbaa1a 50%,
      rgba(251, 170, 26, 0) 100%);

  z-index: 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.timeline-icon {
  min-width: 36px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 1;
  margin-top: 0.1rem;
  width: 50px;
  height: 50px;
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 6px;
  gap: 10px;
}

.timeline-text strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.1rem;
  font-family: "Plus Jakarta Sans", sans-serif;

  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  line-height: clamp(1.375rem, 1.6vw, 1.5625rem);
  text-transform: capitalize;
}

.timeline-text span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: clamp(1rem, 1.1vw, 1.25rem);
  color: rgba(42, 42, 42, 0.6);
}

.value-sub {
  margin-top: 2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  line-height: 160%;
  color: rgba(42, 42, 42, 0.6);
}

.email-form-wrap {
  max-width: 655px;
  margin: 0 auto;
}

.email-input-group {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e7e1d4;
  border-radius: 48px;
  padding: 12px 12px 12px 37px;
  gap: 16px;
}

.email-input-group .form-control {
  border: none;
  font-family: "Plus Jakarta Sans", sans-serif;

  box-shadow: none !important;
  padding: 0;
  background: transparent;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(14px, 1vw, 16px);
  line-height: clamp(18px, 1.2vw, 20px);
  text-transform: capitalize;
  color: #3d3b38;
}

.email-input-group .form-control::placeholder {
  color: #3b3b3b;
  opacity: 1;
}

.btn-waitlist {
  color: var(--white);
  font-weight: 600;
  border: none;
  transition:
    background 0.2s,
    transform 0.15s;
  padding: 11px 28px;
  background: #fbaa1a;
  border-radius: 32px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  display: flex;
  font-family: "Plus Jakarta Sans", sans-serif;
  justify-content: center;
  font-weight: 400;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
}

.btn-waitlist:hover {
  background: #3a64af;
  color: #fff;
}

.email-note {
  text-align: center;
  margin-top: 12px;
  color: #8a8a8a;
  font-size: 12px;
}

@media (max-width: 576px) {
  .email-input-group {
    flex-direction: column;
    border-radius: 24px;
    padding: 15px;
  }

  .email-input-group .form-control {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .btn-waitlist {
    width: 100%;
    padding: 14px;
  }
}

.email-note {
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  text-transform: capitalize;
  color: rgba(42, 42, 42, 0.6);
}

.scroll-circle {
  width: 100px;
  height: 100px;
  background: #fbaa1a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  margin: auto;
  color: #fff;
  transition: 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.scroll-circle::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 0.76px solid rgba(255, 255, 255, 1);
  border-radius: 50%;
}

.scroll-circle span {
  font-size: clamp(8px, 1.5vw, 10px);
  font-weight: 500;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.scroll-circle svg {
  position: relative;
  z-index: 2;
}

.scroll-circle:hover {
  transform: translateY(-5px);
  color: #fff;
}

@media (max-width: 576px) {
  .scroll-circle {
    width: 140px;
    height: 140px;
  }

  .scroll-circle span {
    font-size: 18px;
  }
}

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

/* ===== CALCULATOR ===== */
.calc-section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.calc-section::before {
  content: "";
  position: absolute;

  width: 272px;
  height: 263px;
  left: 310px;
  top: 10px;
  background: radial-gradient(50% 50% at 50% 50%, #fbaa1a 0%, #ffffff 100%);
  filter: blur(175px);
  z-index: 0;
}

.calc-section .text-orange {
  color: #f6ae2f !important;
}

.calc-section .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

.calc-section .section-sub {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  text-transform: capitalize;
  color: rgba(42, 42, 42, 1);
  margin-top: 0.5rem;
}

.payment_cals {
  background: #ffffff;
  border: 1px solid #e7e1d4;
  box-shadow: 0px 1px 2px rgba(27, 29, 39, 0.03);
  border-radius: 24px;
  padding: 20px;
  gap: 20px;
}

.calc-card {
  padding: 2rem;
  box-shadow: unset;
  background: #f7f2ea;
  border-radius: 18px;
}

.calc-label {
  margin-bottom: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;

  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.77px;
  text-transform: uppercase;
  color: #7f7f7f;
}

.calc-input {
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  background: #ffffff;
  border: 1px solid #e7e1d4;
  border-radius: 14px;
  padding: 17px 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: clamp(20px, 1.5vw, 25px);
  color: #2a2a2a;
}

.calc-input:focus {
  border-color: var(--orange);
}

.slider-wrap {
  margin-top: 0.6rem;
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--gray-200);
  outline: none;
  border-radius: 100px;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(245, 166, 35, 0.4);
}

.calc-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: none;
}

.calc-btn {
  /* width: 100%; */
  margin-top: 1.5rem;
}

.qtsss {
  color: #fbaa1a;
  font-size: 22px;
  line-height: 22px;
}

.calc-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-family: "Plus Jakarta Sans", sans-serif;

  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  background: #ffe7c4;
  padding: 18px 24px;
  border-radius: 14px;
  color: #7a5a2e;
}

/* Results card */
.results-card {
  padding: 2rem;
  color: var(--white);
  height: 100%;
  background: #1e3458;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}

.results-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: 425px;
  top: -83.01px;
  background: #fbe3c4;
  opacity: 0.1;
  border-radius: 130px;
  z-index: 0;
}

.results-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -54px;
  top: 400px;

  background: #fbe3c4;
  opacity: 0.1;
  border-radius: 100px;
}

.results-meta {
  margin-bottom: 0.3rem;
  font-family: "Plus Jakarta Sans", sans-serif;

  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.77px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.results-hours {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: clamp(2rem, 4vw, 3.25rem);
  color: #fbaa1a;
  display: flex;
  align-items: center;
}

.results-hours span {
  margin-left: 0.3rem;
  font-style: normal;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  font-size: clamp(14px, 1vw, 18px);
  line-height: clamp(14px, 1vw, 18px);
  color: rgba(255, 255, 255, 0.7);
}

.results-cost-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.results-cost {
  margin-top: 0.1rem;
  font-family: "Plus Jakarta Sans", sans-serif;

  font-style: normal;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  line-height: clamp(36px, 3.5vw, 48px);
  color: #ffffff;
}

.stats-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.stat-pill {
  flex: 1;
  min-width: 80px;
  text-align: center;
  background: #304465;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 15px 39px;
}

.stat-pill .val {
  font-style: normal;
  font-weight: 800;
  font-size: clamp(1rem, 1.5vw, 1.375rem);
  line-height: clamp(1.375rem, 2vw, 1.75rem);
  color: #fbaa1a;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.stat-pill .lbl {
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.15rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.results-cta {
  margin-top: 1.4rem;
}

/* ===== ATTENTION SECTION ===== */
.attention-section {
  padding: 90px 0;
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.attention-section::after {
  content: "";
  position: absolute;

  width: 272px;
  height: 263px;
  left: 310px;
  top: 10px;
  background: radial-gradient(50% 50% at 50% 50%, #fbaa1a 0%, #ffffff 100%);
  filter: blur(175px);
  z-index: 0;
}

.attention-section .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
}

.attention-section .section-sub {
  font-size: 0.85rem;
  color: var(--gray-600);
  max-width: 500px;
  margin: 0.75rem auto 0;
  line-height: 1.65;
}

/* ===== MARQUEE ROWS ===== */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 1rem;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.marquee-track.left {
  animation: marqueeLeft 28s linear infinite;
}

.marquee-track.right {
  animation: marqueeRight 32s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.quote-pill {
  flex: 0 0 auto;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
  background: #ffffff;
  border: 1px solid #e7e1d4;
  box-shadow: 0px 5px 20px rgba(42, 42, 42, 0.1);
  border-radius: 24px;
  padding: 22px 24px;
  gap: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 156%;
 
  color: rgba(42, 42, 42, 0.6);
}

.quote-pill:hover {
  background: #fbaa1a;
  border: 1px solid #e7e1d4;
  box-shadow: 0px 5px 20px rgba(42, 42, 42, 0.1);
  border-radius: 24px;

  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
 font-size: 15px;
  line-height: 156%;
}

/* .quote-pill.active em {
    color: var(--orange);
    font-style: normal;
} */

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  /* margin-top: 1.8rem; */
  align-items: center;
}

.c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  transition:
    background 0.2s,
    width 0.2s;
}

.c-dot.active {
  width: 12px;
  border-radius: 50%;
  height: 12px;
  background: #fbaa1a;
}

/* ===== WAKE-UP SECTION ===== */
.wakeup-section {
  padding: 60px 0;
  background: #0c0e1a;
  position: relative;
  overflow: hidden;
}

.wakeup-section::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  right: -100px;
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%,
      #a855f7 0%,
      rgba(168, 85, 247, 0) 100%);
  opacity: 0.2;
  width: 427px;
  height: 427px;
  left: -114px;
  top: -65px;
  z-index: 0;
}

.wakeup-eyebrow {
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  text-transform: uppercase;
  color: #000000;
  background: #ffffff;
  border-radius: 17px;
  padding: 8px 14px;
  width: 185px;
  text-align: center;
}

.wakeup-title {
  color: var(--white);
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 130%;
  background: linear-gradient(91.53deg, #3a64af 2.13%, #fbaa1a 61.73%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.wakeup-title em {
  font-style: normal;
  color: #8b9fbf;
}

.progress-label {
  /* display: flex;
    justify-content: space-between; */
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.4rem;
}

.progress-label span:last-child {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 130%;
  color: #ffffff;
}

.percentages {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 130%;
  color: #e74c3c;
}

.int_text {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
  color: #e74c3c;
}

.wakeup-progress {
  height: 6px;
  background: #d9d9d9;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.3rem;
  width: 100%;
}

.wakeup-progress-bar {
  height: 100%;
  width: 72%;

  background: linear-gradient(270deg, #eac789 0%, #fc8e51 100%);
  border-radius: 52px;
  animation: progressFill 2s ease forwards;
}

@keyframes progressFill {
  from {
    width: 0%;
  }

  to {
    width: 72%;
  }
}

.wakeup-quote-card {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  background: #0f1224;
  border: 1px solid #542b7c;
  border-radius: 24px;
  padding: 47px 34px;
}

/* .wakeup-quote-card::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: rgba(245, 166, 35, .15);
    font-family: Georgia, serif;
    line-height: 1;
} */

.wakeup-lines {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wakeup-lines li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.6);
}

.wakeup-lines li:last-child {
  border-bottom: none;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 60px 0;
  background: var(--white);
}

.features-section .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
}

.feature-card-main {
  padding: 1.75rem;
  color: var(--white);
  height: 100%;
  background: #ffffff;
  border: 1px solid #3a64af;
  box-shadow: 0px 18px 42px rgba(14, 165, 164, 0.1);
  border-radius: 24px;
}

.feature-card-main .icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 1.4rem;
}

.feature-card-main h4 {
  margin-bottom: 0.75rem;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  line-height: clamp(1.75rem, 2.5vw, 2.25rem);
  color: #2a2a2a;
}

.feature-card-main p {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: rgba(42, 42, 42, 0.6);
  margin-bottom: 0;
}

.feature-card-sm {
  height: 100%;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #e7e1d4;
  box-shadow: 0px 12px 28px rgba(22, 25, 35, 0.07);
  border-radius: 24px;
  padding: 20px 22px;
}

.feature-card-sm:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card-sm .icon-wrap {
  margin-bottom: 1rem;
}

.feature-card-sm h5 {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 19px;
  line-height: 25px;
  color: #2a2a2a;
  margin-bottom: 1rem;
}

.feature-card-sm p {
  font-size: 0.76rem;
  color: rgba(42, 42, 42, 0.6);
  line-height: 1.55;
  margin: 0;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background-image: url(../img/cs.jpg);
  padding: 50px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32, 46, 61, 0.8);

  backdrop-filter: blur(20px);
  pointer-events: none;
}

.final-cta h2 .orange-line {
  color: var(--orange);
  display: block;
}

.final-cta .cta-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.8rem;
  max-width: 420px;
  line-height: 1.65;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  border: 2px solid #ffffff;
  border-radius: 24px;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--navy);
}

.store-btn i {
  font-size: 1.3rem;
}

.store-btn small {
  display: block;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #bfd5e6;
}

.store_app {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  line-height: clamp(1.5rem, 1.4rem + 0.5vw, 1.625rem);
  color: #ffffff;
}

.social-icons a {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0.5rem;
  transition:
    border-color 0.2s,
    color 0.2s;
  width: 48px;
  height: 48px;
  background: rgba(217, 217, 217, 0.1);
  border: 1px solid #2b2b2b;
}

.social-icons a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.footer-copy {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #ffffff;

  margin-top: 1.2rem;
  margin-bottom: 0;
}

/* ===== SECTION HEADINGS ===== */
.section-center {
  text-align: center;
  margin-bottom: 3rem;
}

/* .hero-phone-wrap{
    position: relative;
    display: inline-block;
} */

.phone-screen {
  position: absolute;
  top: 1.5%;
  left: 5.5%;
  width: 90%;
  height: 96%;
  overflow: hidden;
  border-radius: 10px;
  z-index: -1;
}

.phone-screen img,
.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.heading-glow1 {
  position: absolute;
  /* transform: translate(-50%, -50%); */
  filter: blur(175px);
  z-index: 0;
  bottom: 100px;
  width: 253.33px;
  height: 100px;
  right: 0px;
  top: 300px;
}

.heading-glow1::before {
  content: "";
  position: absolute;
  width: 188px;
  height: 228px;
  background: radial-gradient(circle, #fbaa1a 0%, #fff 100%);
  left: 0;
  top: 0;
}

.heading-glow1::after {
  content: "";
  position: absolute;
  width: 139px;
  height: 162px;
  background: radial-gradient(circle, #3a64af 0%, #fff 100%);
  right: 0;
  bottom: 0;
}

.footer-bottm {
  padding: 3rem 0 30px 0px;
  position: relative;
  z-index: 1;
  background-color: #0c0e1a;
  text-align: center;
}

/* ===== RESPONSIVE OVERRIDES ===== */

@media (width: 1024px) {
  .hero-orb-2 {
    bottom: 130px;
    right: 30px;
    z-index: 1;
  }
}

@media (width: 1366px) {
  .hero-orb-2 {
    bottom: 130px;
    right: 80px;
    z-index: 1;
  }
}

@media (max-width: 767.98px) {

  .btn-orange {
   
    font-size: clamp(12px, 1vw, 16px);
   
}


  .heading-glow1{
    display: none;
  }
  .carousel-dots {
    display: none;
  }



  .value-section::after, .calc-section::before, .attention-section::after, .heading-glow::before, .heading-glow::after {
    display: none;
  }

  .results-card::before,
  .results-card::after {
    display: none;
  }

  .payment_cals {
    padding: 0;
  }

  .stat-pill {
    padding: 8px 10px;
  }

  .hero-avatar,
  .hero-orb-2 {
    display: none;
  }

  .hero {
    padding: 70px 0 50px;
  }

  .hero-visual {
    margin-top: 2.5rem;
  }

  .hero-phone {
    width: 180px;
  }

  .hero-bg-circle {
    width: 300px;
    height: 300px;
  }

  .email-input-group {
    flex-direction: column;
  }

  .value-section .col-lg-6:first-child {
    margin-bottom: 2.5rem;
  }

  .calc-card+.results-card {
    margin-top: 1.2rem;
  }

  .quote-pill {
    max-width: max-content;
    white-space: normal;
  }

  .wakeup-quote-card {
    padding: 1.5rem;
  }

  .feature-card-main {
    margin-bottom: 1.2rem;
  }

  .store-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-phone {
    width: 190px;
  }

  .hero-bg-circle {
    width: 350px;
    height: 350px;
  }
}

@media (min-width: 992px) {
  .hero-visual {
    min-height: 480px;
  }
}