@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
      --primary: #6d28d9;
      --primary-dark: #5b21b6;
      --secondary: #10b981;
      --text: #1f2937;
      --gray: #6b7280;
      --light: #f9fafb;
      --white: #ffffff;
      --border: #d1d5db;
    }

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

    body {
      font-family: 'Sora', system-ui, sans-serif;
      color: var(--text);
      background: var(--light);
      line-height: 1.6;
      min-height: 100vh;
    }

/* ──────────────────────────────────────────────
   NAV  —  UNTOUCHED
────────────────────────────────────────────── */

nav {
    background-color: rgba(255,255,255,0.9);
    width: 98%;
    margin: 1em auto;
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1em;
    border-radius: 52px;
    border: 1px solid var(--border);
    z-index: 1000;
}

.menu-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.CLogo {
  width: 120px;
  height: auto;
  display: block;
  filter: brightness(1.1);
  margin-left: 0.8em;
}

.logo-text {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary-dark), var(--secondary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.logo-text span { color: var(--violet-bright); }

.prime-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style-type: none;
    width: 25em;
}

@media (max-width: 751px) {
    nav {
        padding: 8px 15px 8px 5px;
    }

    .prime-nav {
        width: 100%;
        max-width: 350px;
        position: fixed;
        top: 0;
        right: -500px;
        height: 100vh;
        transition: right, 0.9s ease-in-out;
        flex-direction: column;
        align-items: flex-start;
        background-color: var(--light);
        -webkit-backdrop-filter: blur(3em);
        backdrop-filter: blur(3em);
    }

    .prime-nav.active { right: 0; }

    .prime-nav {
        justify-content: flex-start;
        padding-top: 8em;
    }

    .prime-nav li {
        margin: 8em 0 0 0;
        padding: 1rem 0;
    }

    .prime-nav li span {
        font-size: 1.2rem;
        text-align: left;
    }
}

@media (max-width: 320px) {
    .prime-nav {
        width: 100%;
        max-width: 100%;
        position: fixed;
        top: 0;
        right: -500px;
    }
    .prime-nav.active { right: 0; }
}

.prime-nav li {
    margin: .1em 1em;
    cursor: pointer;
}

.prime-nav li span {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.ham-toggle {
    display: none;
    height: 35px;
    width: 35px;
    margin-left: auto;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    height: 4px;
    width: 100%;
    background-color: #090739;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .9s ease-in-out;
}

.hamburger span:nth-child(1) { top: 25%; }
.hamburger span:nth-child(3) { top: 75%; }

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 751px) {
    .ham-toggle { display: inline; z-index: 9999; }
}

@media (hover: hover) and (pointer: fine) {
  .inter span {
     position: relative;
     display: inline-block;
     padding-bottom: 2px;
  }
  .inter span::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     width: 0;
     height: 1px;
     background: var(--primary);
     border-radius: 12px;
     transform: translateX(-50%);
     transition: width 0.35s ease;
  }
  .inter span:hover::after,
  .inter span.active::after { width: 140%; }
}

.inter span::after {
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  height: 1.6px;
  filter: drop-shadow(0 0 6px rgba(109, 40, 217, 0.4));
}

.inter span:hover { color: var(--gray); }


/* ──────────────────────────────────────────────
   ANIMATIONS
────────────────────────────────────────────── */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-ring {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(109,40,217,0.35); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 16px rgba(109,40,217,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(109,40,217,0); }
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.97); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-25px, 20px) scale(1.04); }
  66%       { transform: translate(20px, -10px) scale(0.96); }
}

/* ──────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 190px 24px 150px;
  text-align: center;
  background: linear-gradient(135deg, #f3e8ff 0%, #ecfdf5 100%);
  overflow: hidden;
}

/* Decorative blobs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #c4b5fd, transparent 70%);
  top: -80px;
  left: -120px;
  animation: blobFloat1 12s ease-in-out infinite;
}

.hero::after {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, #6ee7b7, transparent 70%);
  bottom: -60px;
  right: -100px;
  animation: blobFloat2 14s ease-in-out infinite;
}

/* Trust badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(109,40,217,0.2);
  border-radius: 999px;
  padding: 6px 18px 6px 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.6s ease both, floatBadge 5s ease-in-out 1s infinite;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse-ring 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--text);
  letter-spacing: -0.03em;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero .main-title {
  background: linear-gradient(to right, var(--primary-dark), green, var(--secondary), var(--secondary), var(--primary), var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeUp 0.8s ease 0.2s both, shimmer 6s linear 1s infinite;
}

.hero h1 span { color: var(--primary); }

.hero p {
  font-size: 1.25rem;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.75;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  animation: fadeUp 0.8s ease 0.65s both;
}

.hero-buttons button {
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.01em;
}

.primary-btn {
  background: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 4px 24px rgba(109,40,217,0.35);
}

.primary-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(109,40,217,0.45);
}

.outline-btn {
  background: rgba(255,255,255,0.7);
  border: 1.5px solid var(--border);
  color: var(--text);
  backdrop-filter: blur(4px);
}

.outline-btn:hover {
  background: rgba(255,255,255,0.95);
  border-color: rgba(109,40,217,0.3);
  transform: translateY(-2px);
}

/* Social proof strip */
.hero-social-proof {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease 1s both;
}

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

.hero-stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1.2s ease 1.4s both;
}

.scroll-hint::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  border-radius: 2px;
  animation: floatBadge 1.8s ease-in-out infinite;
}

@media (max-width: 607px) {
  .hero {
    padding: 140px 20px 100px;
  }

  .hero h1,
  .feature-content h2,
  .feature-block h2 {
    font-size: 2.2rem;
  }

  .sub-text {
    padding-top: 30px;
    display: block;
  }

  .hero p {
    font-size: 1.05rem;
    text-align: center;
  }

  .hero-social-proof { gap: 12px; }
  .stat-divider { height: 24px; }
}


/* ──────────────────────────────────────────────
   FEATURES
────────────────────────────────────────────── */

.features {
  padding: 120px 24px;
  background: white;
  position: relative;
}

/* Subtle section label */
.section-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary));
}

.section-label::after {
  background: linear-gradient(to left, transparent, var(--primary));
}

.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 100px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.feature-block.in-view {
  opacity: 1;
  transform: translateY(0);
}

.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

/* Chip label above h2 */
.feature-chip {
  display: inline-block;
  background: linear-gradient(135deg, #ede9fe, #d1fae5);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.feature-content h2 {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
}

.feature-content p {
  font-size: 1.12rem;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
  font-weight: 400;
}

/* Bullet checkmarks */
.feature-checks {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.feature-checks li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-image:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 40px 80px rgba(109,40,217,0.15), 0 4px 16px rgba(0,0,0,0.08);
}

/* Decorative corner accent */
.feature-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(109,40,217,0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Placeholder when image is missing */
.feature-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f3e8ff 0%, #ecfdf5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.btn-secondary {
  background: var(--secondary);
  color: white;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
  font-size: 0.95rem;
}

.btn-secondary::after {
  content: '→';
  transition: transform 0.2s ease;
}

.btn-secondary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.4);
}

.btn-secondary:hover::after {
  transform: translateX(4px);
}

@media (max-width: 769px) {
  .feature-content {
    width: 100%;
  }
  .feature-content p {
    width: 100%;
    margin: 0 auto 2em auto;
    max-width: 100%;
  }
}

@media (max-width: 607px) {
  .features {
    padding: 64px 20px;
  }

  .feature-content h2,
  .feature-block h2 {
    font-size: 2rem;
  }

  .feature-content p,
  .feature-block p {
    font-size: 1rem;
    text-align: left;
  }

  .feature-content {
    width: 100%;
  }

  .feature-content p {
    width: 100%;
    margin: 0 auto 2em auto;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .feature-block,
  .feature-block.reverse {
    grid-template-columns: 1fr;
    text-align: center;
    direction: ltr;
  }

  .feature-block > *,
  .feature-block.reverse > * {
    direction: ltr;
  }

  .feature-content { max-width: 100%; }

  .feature-checks { align-items: flex-start; text-align: left; }
}


/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, #fafafa 0%, #f3f4f6 100%);
}
.how-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.section-tag {
  display: inline-block;
  background: rgba(109,40,217,0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text);
}
.section-sub { font-size: 1.1rem; color: var(--gray); max-width: 540px; margin: 0 auto 64px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 36px 24px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.25s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(109,40,217,0.1); border-color: rgba(109,40,217,0.2); }
.step-card:hover::before { opacity: 1; }
.step-num { font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; color: var(--primary); opacity: 0.5; margin-bottom: 16px; }
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-card h3 { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

@media (max-width: 307px) {

  .mwc {
    width: 100%;
  }

  .step-card {
    padding: 36px 8px;
    text-align: justify;
    width: 100%;
  }

   .how-section {
  padding: 100px 8px;
 }
}


/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */

.bottom {
  margin-top: 0;
  background: #111827;
  width: 100%;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-text {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 240px;
  margin-top: 8px;
}

.footer-col h4 {
  color: #e5e7eb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li {
  color: #9ca3af;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-col ul li:hover {
  color: #e5e7eb;
  transform: translateX(4px);
}

.footer-divider {
  max-width: 1100px;
  margin: 48px auto 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #ffffff, transparent);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.copy-right {
  font-size: 0.82rem;
  color: #6b7280;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  border-color: var(--primary);
  color: #c4b5fd;
  background: rgba(109,40,217,0.08);
}

@media (max-width: 750px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-brand { grid-column: span 1; }
}

/* ──────────────────────────────────────────────
   SCROLL REVEAL (JS hook)
────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════
   Testimonials section
   ══════════════════════════════════════════════════ */
.tst-section { padding: 80px 24px; background: #fff; }
.tst-wrap { max-width: 1100px; margin: 0 auto; }
.tst-head { text-align: center; margin-bottom: 48px; }
.tst-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: #ecfdf5; color: #059669;
  font-size: .75rem; font-weight: 700;
  border-radius: 999px;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Sora', sans-serif;
}
.tst-heading {
  font-size: 2.2rem; font-weight: 700; color: #0f172a;
  margin-bottom: 12px; line-height: 1.2;
  font-family: 'Sora', sans-serif;
}
.tst-sub { font-size: 1.05rem; color: #64748b; font-family: 'DM Sans', sans-serif; }

.tst-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.tst-card {
  border-radius: 14px;
  padding: 28px;
  border: 1px solid transparent;
}
.tst-card-violet { background: #faf5ff; border-color: #e9d5ff; }
.tst-card-green  { background: #f0fdf4; border-color: #bbf7d0; }
.tst-card-amber  { background: #fef3c7; border-color: #fde68a; }

.tst-quote {
  font-size: 2rem; line-height: 1; margin-bottom: 12px;
  color: #a78bfa;
  font-family: 'Sora', sans-serif;
}
.tst-quote-green { color: #34d399; }
.tst-quote-amber { color: #f59e0b; }

.tst-body {
  font-size: .98rem; color: #334155; line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}
.tst-author { display: flex; align-items: center; gap: 12px; }
.tst-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700;
  font-family: 'Sora', sans-serif;
  flex-shrink: 0;
}
.tst-avatar-violet { background: linear-gradient(135deg, #6d28d9, #a78bfa); }
.tst-avatar-green  { background: linear-gradient(135deg, #059669, #10b981); }
.tst-avatar-amber  { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

.tst-name { font-weight: 600; color: #0f172a; font-family: 'Sora', sans-serif; }
.tst-role { font-size: .82rem; color: #64748b; }

.tst-cta { text-align: center; margin-top: 48px; }
.tst-cta-note { font-size: .82rem; color: #94a3b8; margin-top: 16px; font-family: 'DM Sans', sans-serif; }

/* Mobile — stack to single column, no overflow, card padding tightens */
@media (max-width: 640px) {
  .tst-section { padding: 56px 16px; }
  .tst-head { margin-bottom: 32px; }
  .tst-heading { font-size: 1.65rem; }
  .tst-sub { font-size: .95rem; }
  .tst-grid { grid-template-columns: 1fr; gap: 16px; }
  .tst-card { padding: 22px 20px; }
  .tst-body { font-size: .92rem; }
  .tst-cta { margin-top: 32px; }
}

/* ══════════════════════════════════════════════════
   ROI / Revenue Booked mockup — landing page proof
   ══════════════════════════════════════════════════ */
.roi-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #faf5ff 0%, #f0fdf4 100%);
}
.roi-wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.roi-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: #ede9fe;
  color: #6d28d9;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Sora', sans-serif;
}
.roi-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}
.roi-sub {
  font-size: 1.05rem;
  color: #64748b;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'DM Sans', sans-serif;
}
.roi-sub strong { color: #6d28d9; }

.roi-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(109,40,217,.12);
  text-align: left;
  border: 1px solid #e9d5ff;
}
.roi-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.roi-card-title {
  font-size: .9rem;
  font-weight: 600;
  color: #475569;
  font-family: 'Sora', sans-serif;
}
.roi-pill {
  font-size: .72rem;
  font-weight: 700;
  color: #6d28d9;
  background: #ede9fe;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.roi-hero-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.roi-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #6d28d9;
  line-height: 1;
  font-family: 'Sora', sans-serif;
}
.roi-delta {
  font-size: .9rem;
  font-weight: 600;
  color: #059669;
}
.roi-caption {
  font-size: .88rem;
  color: #6d28d9;
  font-weight: 600;
  margin: 0 0 24px;
  font-family: 'DM Sans', sans-serif;
}
.roi-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}
.roi-stat-lbl {
  font-size: .72rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.roi-stat-val {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  font-family: 'Sora', sans-serif;
}
.roi-stat-val-green { color: #059669; }
.roi-footnote {
  font-size: .8rem;
  color: #94a3b8;
  margin-top: 28px;
  font-style: italic;
}

/* Mobile polish — covers iPhone SE (375), Android (360-412), Plus (428) */
@media (max-width: 640px) {
  .roi-section { padding: 56px 16px; }
  .roi-heading { font-size: 1.65rem; }
  .roi-sub { font-size: .95rem; margin-bottom: 32px; }
  .roi-card { padding: 22px 20px; border-radius: 14px; }
  .roi-head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 14px; }
  .roi-number { font-size: 2.4rem; }
  .roi-delta { font-size: .82rem; }
  .roi-caption { font-size: .82rem; margin-bottom: 20px; }
  .roi-stats { grid-template-columns: 1fr; gap: 14px; padding-top: 16px; }
  .roi-stat { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
  .roi-stat-lbl { margin-bottom: 0; font-size: .7rem; }
  .roi-stat-val { font-size: 1.15rem; }
  .roi-footnote { font-size: .75rem; margin-top: 22px; }
}

@media (max-width: 400px) {
  .roi-number { font-size: 2.1rem; }
  .roi-card { padding: 20px 16px; }
}

/* ── Flash CTA button (shine sweep, matches pricing.cta-btn) ── */
.flash-btn {
  display: inline-block;
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(109,40,217,0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.flash-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: flashSweep 3.5s ease-in-out infinite;
  pointer-events: none;
}
.flash-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(109,40,217,0.36);
}
.flash-btn:hover::before {
  animation: flashSweepFast 0.5s ease forwards;
}
@keyframes flashSweep {
  0%   { left: -100%; }
  45%  { left: 100%; }
  100% { left: 100%; }
}
@keyframes flashSweepFast {
  0%   { left: -100%; }
  100% { left: 100%; }
}
