@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0F766E;
  --primary-light: #14B8A6;
  --primary-glow: rgba(20, 184, 166, 0.08);
  --secondary: #14B8A6;
  --secondary-glow: rgba(20, 184, 166, 0.05);
  --accent: #F59E0B;
  --accent-glow: rgba(245, 158, 11, 0.1);
  --bg: #F7F9FB;
  --bg-alt: #EEF4F5;
  --surface: #FFFFFF;
  --surface-hover: #F8FAFC;
  --border: rgba(15, 118, 110, 0.08);
  --border-focus: rgba(20, 184, 166, 0.3);
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;

  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 10px 40px rgba(15, 118, 110, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 20px 50px rgba(15, 118, 110, 0.12), 0 4px 12px rgba(0, 0, 0, 0.03);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

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

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 90% 85%, rgba(45, 212, 191, 0.25) 0%, rgba(45, 212, 191, 0.12) 20%, transparent 55%),
    radial-gradient(circle at 75% 40%, rgba(139, 232, 218, 0.15) 0%, transparent 45%),
    linear-gradient(180deg, #F7F9FB 0%, #EEF4F5 100%);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.25;
}

/* Gradients & Glows */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 30%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* App Container - expanded to 1440px globally */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Spacing & Transitions */
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
}

/* Glass Header Navigation (from RevisitCare) */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 118, 110, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  animation: nav-slide-down 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes nav-slide-down {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background-color: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--secondary);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  padding: 10px 0;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-login {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .nav-login {
    display: block;
  }
}

.nav-login:hover {
  color: var(--primary-light);
}

.nav-cta {
  display: none;
  background: var(--primary);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .nav-cta {
    display: block;
  }
}

.nav-cta:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -5px rgba(15, 118, 110, 0.2);
}

.nav-mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle svg {
  display: block;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .nav-mobile-toggle {
    display: none;
  }
}

/* Mobile Menu Drawer */
#mobileMenu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#mobileMenu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav-group {
  opacity: 0;
  transform: translateY(20px);
}

#mobileMenu.active .mobile-nav-group {
  animation: item-fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes item-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-100 {
  animation-delay: 100ms !important;
}

.delay-200 {
  animation-delay: 200ms !important;
}

.mobile-nav-group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-links a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--primary);
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-footer .nav-login {
  display: block !important;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid var(--border);
}

.mobile-menu-footer .nav-cta {
  display: block !important;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  background: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--border-focus);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  padding: 150px 0 100px 0;
  background:
    radial-gradient(circle at 95% 90%,
      rgba(94, 234, 212, 0.45) 0%,
      rgba(45, 212, 191, 0.25) 25%,
      transparent 65%),
    radial-gradient(circle at 85% 55%,
      rgba(20, 184, 166, 0.20) 0%,
      transparent 60%),
    linear-gradient(90deg,
      #F7F9FB 0%,
      #F7F9FB 55%,
      #EAF8F6 75%,
      #D8F5F0 100%);
  overflow: hidden;
}

/* Layer 3: Large cyan-teal blurred orb */
.decor-orb {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.4) 0%, rgba(20, 184, 166, 0.15) 40%, transparent 70%);
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

/* Layer 4: Multi-layered SVG Waves overlaying the image */
.decor-waves {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 380px;
  pointer-events: none;
  z-index: 3;
  /* render on top of image to wrap it in green */
}

.decor-waves svg {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* Layer 5: Tiny dotted grid pattern in upper-right corner */
.decor-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(rgba(45, 212, 191, 0.08) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 1;
}

/* Layer 6: Very soft floating particles scattered through hero section */
.decor-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(20, 184, 166, 0.04) 2px, transparent 2px),
    radial-gradient(circle at 50% 15%, rgba(20, 184, 166, 0.05) 3px, transparent 3px),
    radial-gradient(circle at 80% 45%, rgba(20, 184, 166, 0.03) 2px, transparent 2px),
    radial-gradient(circle at 30% 70%, rgba(20, 184, 166, 0.05) 3px, transparent 3px),
    radial-gradient(circle at 70% 85%, rgba(20, 184, 166, 0.04) 2px, transparent 2px);
  opacity: 0.8;
}

.hero-container-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-container-grid {
    grid-template-columns: 1.3fr 1fr;
    /* content is big, image is small */
    gap: 80px;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 184, 166, 0.06);
  border: 1px solid rgba(20, 184, 166, 0.15);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--secondary);
}

.hero-title-container {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 64px;
  }
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }

  .hero-ctas .btn {
    width: auto;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 72px 0 0 0;
  }

  .hero-container-grid {
    gap: 0;
  }

  .hero-left {
    min-height: calc(100vh - 72px);
    min-height: calc(100dvh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
    box-sizing: border-box;
  }

  .badge {
    margin-bottom: 12px;
    padding: 4px 10px;
    font-size: 11px;
    align-self: flex-start;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 15.5px;
    margin-bottom: 20px;
    line-height: 1.45;
  }

  .hero-ctas {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-ctas .btn {
    width: auto;
    flex: 1;
    padding: 12px 16px;
    font-size: 14.5px;
  }

  .proof-statement {
    gap: 8px;
    font-size: 14px;
  }

  .icon-check {
    width: 17px;
    height: 17px;
  }

  .hero-right {
    margin-top: 20px;
    height: 460px;
    padding-bottom: 40px;
  }

  .hero-illustration-img {
    height: 420px;
  }
}

.proof-statement {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .proof-statement {
    flex-direction: row;
    gap: 24px;
  }
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-check {
  color: var(--secondary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Copy Switcher Widget - Styled as Pagination Dots */
.copy-switcher {
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 0;
  box-shadow: none;
}

.copy-switcher-title {
  display: none;
}

.copy-tabs {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 0;
}

.copy-tab {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0;
  line-height: 0;
  color: transparent;
  outline: none;
}

.copy-tab.active {
  width: 32px;
  border-radius: 5px;
  background: var(--primary);
}

/* =============================================
   HERO RIGHT — Updated for landscape office image
   ============================================= */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 560px;
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .hero-right {
    margin-top: 0;
    height: 760px;
  }
}

/* Updated hero image styles for the landscape office photo - larger & mixed with background */
.hero-illustration-img {
  width: 100%;
  max-width: 850px;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 0;
  box-shadow: none;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0) 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 0) 85%);
}

@media (min-width: 1024px) {
  .hero-illustration-img {
    max-width: 100%;
    height: 640px;
    object-fit: cover;
  }
}

/* Teal frame accent around the image - disabled to remove border edges */
.hero-right::before {
  display: none;
}

/* Layer 2: Radial Glow behind the image */
.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 420px;
  background: radial-gradient(ellipse, #DFFAF5 0%, #BDF5EC 35%, #7FE9DA 70%, #2DD4BF 100%);
  filter: blur(60px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
}

/* Layer 3: Connection Paths */
.decor-paths {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Floating Glassmorphic Notification Cards */
.floating-card-glass {
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow:
    0 10px 30px rgba(15, 118, 110, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.03);
  z-index: 3;
  max-width: 240px;
  animation: floatAnim 6s infinite ease-in-out;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

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

.fcard-icon-container {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.voice-icon {
  background: linear-gradient(135deg, #0F766E, #14B8A6);
}

.whatsapp-icon {
  background: #25D366;
}

.email-icon {
  background: #3B82F6;
}

.rev-icon {
  background: #F59E0B;
}

.confirmed-icon {
  background: #10B981;
}

.fcard-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fcard-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

.fcard-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
}

.fcard-status {
  font-size: 10px;
  font-weight: 600;
  color: #10B981;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.fcard-status::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #10B981;
  border-radius: 50%;
}

.fcard-time {
  font-size: 10px;
  color: var(--text-muted);
  align-self: flex-end;
  margin-top: 4px;
}

.fcard-val {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.fcard-trend {
  font-size: 10px;
  font-weight: 600;
  color: #10B981;
}

.fcard-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.fcard-date {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Card positions — adjusted for landscape image layout */
.fcard-voice {
  top: 20px;
  left: 10%;
  animation-delay: 0s;
}

.fcard-whatsapp {
  top: 130px;
  left: -10px;
  animation-delay: 1.5s;
}

.fcard-email {
  bottom: 110px;
  left: 0px;
  animation-delay: 3s;
}

.fcard-revenue {
  top: 40px;
  right: -10px;
  animation-delay: 0.8s;
}

.fcard-confirmed {
  bottom: 120px;
  right: -10px;
  animation-delay: 2.3s;
}

/* Smartphone Mockup */
.fcard-phone-mockup {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 110px;
  background: #000000;
  border: 4px solid #1E293B;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.12);
  z-index: 4;
  overflow: hidden;
  padding: 6px;
  animation: phoneAnim 6s infinite ease-in-out;
  animation-delay: 0.5s;
}

@keyframes phoneAnim {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

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

.phone-screen {
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 10px 0 10px;
}

.phone-check {
  width: 24px;
  height: 24px;
  background: #10B981;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 6px;
}

.phone-title {
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.phone-desc {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.2;
}

@media (max-width: 640px) {
  .hero-right {
    height: 380px;
  }

  .hero-illustration-img {
    width: 92%;
    max-width: 480px;
    height: 300px;
  }

  .hero-right::before {
    width: 340px;
    height: 260px;
  }

  .floating-card-glass {
    padding: 8px 12px;
    max-width: 170px;
  }

  .fcard-sub {
    font-size: 11px;
  }

  .fcard-title {
    font-size: 10px;
  }

  .fcard-val {
    font-size: 16px;
  }

  .fcard-voice {
    left: 2%;
    top: 10px;
  }

  .fcard-whatsapp {
    left: -8px;
    top: 115px;
  }

  .fcard-email {
    left: -4px;
    bottom: 80px;
  }

  .fcard-revenue {
    right: -8px;
    top: 30px;
  }

  .fcard-confirmed {
    right: -4px;
    bottom: 90px;
  }

  .fcard-phone-mockup {
    width: 130px;
    height: 95px;
  }

  .decor-paths {
    display: none;
  }
}

/* =============================================
   REST OF SECTIONS (unchanged)
   ============================================= */

.dashboard-header {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dash-dot.red {
  background: #EF4444;
}

.dash-dot.yellow {
  background: #F59E0B;
}

.dash-dot.green {
  background: #10B981;
}

.dashboard-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.dashboard-body {
  padding: 20px;
}

.mockup-chart-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-metric-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.metric-value {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trend {
  font-size: 11px;
  color: #10B981;
}

.mockup-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-row {
  display: flex;
  align-items: center;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  gap: 10px;
}

.mockup-pill {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.mockup-pill.outbound {
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary);
}

.mockup-pill.whatsapp {
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
}

.mockup-pill.email {
  background: rgba(245, 158, 11, 0.08);
  color: var(--accent);
}

.mockup-text {
  font-size: 11px;
  color: var(--text-secondary);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-status {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 12px;
}

.mockup-status.booking {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.mockup-status.active {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
}

.mockup-status.success {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.05);
  z-index: 3;
}

.float-1 {
  top: -20px;
  right: -30px;
}

.float-2 {
  bottom: -20px;
  left: -30px;
}

@media (max-width: 640px) {
  .floating-card {
    display: none;
  }
}

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.float-title {
  font-size: 10px;
  color: var(--text-muted);
}

.float-val {
  font-size: 14px;
  font-weight: 700;
}

/* Sections Configuration */
.problem-section {
  background-color: #FFFFFF;
}

.solution-section {
  background-color: #F8FAFC;
}

.features-section {
  background: linear-gradient(185deg, #ECFEFF 0%, #E0F7F5 100%);
  border-top: 1px solid rgba(20, 184, 166, 0.06);
  border-bottom: 1px solid rgba(20, 184, 166, 0.06);
}

.deepdive-section {
  background-color: #FFFFFF;
}

.usecases-section {
  background-color: #F8FAFC;
}

.diff-section {
  background-color: #FFFFFF;
}

.roi-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #E6F4F1 100%);
}

.pricing-section {
  background: radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.08) 0%, transparent 70%), #FAFAF9;
  padding: 120px 0;
  color: var(--text-primary);
  border-top: 1px solid rgba(20, 184, 166, 0.12);
  border-bottom: 1px solid rgba(20, 184, 166, 0.12);
}

.pricing-section .section-tag {
  color: #14B8A6;
  background: rgba(20, 184, 166, 0.06);
  border: 1px solid rgba(20, 184, 166, 0.12);
  display: table;
  margin: 0 auto 16px auto;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-section .section-title {
  color: var(--text-primary);
}

.pricing-section .section-subtitle {
  color: var(--text-secondary);
  margin-bottom: 56px;
}

.faq-section {
  background-color: #F8FAFC;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
  text-align: center;
}

.usecases-section .section-tag {
  text-align: left;
}

.section-tag-solution {
  color: var(--primary-light);
}

.section-title {
  font-size: 32px;
  margin-bottom: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 42px;
  }
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Elevated Cards Framework */
.elevated-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.elevated-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-hover);
}

.elevated-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: var(--transition);
}

/* ===== PROBLEM SECTION REDESIGN ===== */
.problem-section {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

/* Background Warm Radial Glow behind cards */
.problem-section::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}

.problem-section .container {
  position: relative;
  z-index: 2;
}



.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 10px 30px -15px rgba(245, 158, 11, 0.03);
  border: 1px solid rgba(15, 118, 110, 0.06);
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 380px;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

/* Thin orange-to-amber gradient top border */
.problem-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F59E0B, #D97706);
  opacity: 0.8;
}

.problem-section {
  background-color: #F8FAFC !important;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.problem-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 10px 24px -8px rgba(0, 0, 0, 0.04);
  border: 1px solid #E5E7EB;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 440px;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  box-sizing: border-box;
}

/* Accent line across top edge */
.problem-card-missed {
  border-top: 3px solid #F59E0B !important;
}

.problem-card-callbacks {
  border-top: 3px solid #F97316 !important;
}

.problem-card-customers {
  border-top: 3px solid #EF4444 !important;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.02);
  border-color: #D1D5DB;
}

/* Top Section: Visual Story (70% height) */
.problem-card-visual {
  height: 70%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 24px;
}

/* Clean Divider separating Visual and Text */
.card-divider {
  height: 1px;
  border: none;
  background-color: #E5E7EB;
  margin: 0;
}

/* Bottom Section: Content (30% height) */
.problem-card-content {
  height: 30%;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  background: #FFFFFF;
}

.category-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
}

.tag-orange {
  background: rgba(245, 158, 11, 0.08);
  color: #D97706;
}

.tag-red-orange {
  background: rgba(249, 115, 22, 0.08);
  color: #C2410C;
}

.tag-red {
  background: rgba(239, 68, 68, 0.08);
  color: #B91C1C;
}

.problem-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.2;
}

.problem-card-desc {
  font-size: 13.5px;
  color: #475569;
  margin: 0;
  line-height: 1.45;
}

/* --- CARD 1: Missed Appointments - Flat Calendar Timeline --- */
.schedule-ui-flat {
  width: 100%;
  max-width: 260px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  box-sizing: border-box;
}

.schedule-ui-flat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 8px;
}

.schedule-icon {
  width: 12px;
  height: 12px;
  background: #0F766E;
  border-radius: 3px;
}

.schedule-title {
  font-size: 11px;
  font-weight: 700;
  color: #0F172A;
}

.schedule-subtitle {
  font-size: 9.5px;
  color: #64748B;
  margin-left: auto;
}

.schedule-ui-flat-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #F1F5F9;
}

.schedule-row-flat {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E2E8F0;
  border: 2px solid #FFFFFF;
  z-index: 2;
  box-sizing: border-box;
}

.timeline-dot.dot-active {
  background: #14B8A6;
}

.timeline-dot.dot-warning {
  background: #F59E0B;
}

.row-time {
  font-size: 9.5px;
  font-weight: 600;
  color: #64748B;
  width: 52px;
  flex-shrink: 0;
}

.row-block {
  flex: 1;
  padding: 6px 10px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.block-active {
  background: #F0FDFA;
  border: 1px solid #CCFBF1;
  color: #0F766E;
}

.block-empty-warning {
  background: #FFFBEB;
  border: 1.5px dashed #FDE68A;
  color: #D97706;
  animation: emptyGapGlow 3s infinite ease-in-out;
}

.block-name {
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.2;
}

.block-status {
  font-size: 8px;
  opacity: 0.8;
  line-height: 1.2;
}

/* Floating analytics badge showing lost revenue */
.lost-revenue-badge {
  position: absolute;
  right: -16px;
  top: -14px;
  background: #FFFFFF;
  border: 1px solid #FCA5A5;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.08);
  border-radius: 6px;
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  animation: badgeFloat 3s infinite ease-in-out;
}

.badge-accent {
  font-size: 10px;
  font-weight: 700;
  color: #EF4444;
  line-height: 1.2;
}

.badge-label {
  font-size: 7.5px;
  font-weight: 500;
  color: #64748B;
  line-height: 1.2;
}

@keyframes emptyGapGlow {

  0%,
  100% {
    border-color: #FDE68A;
    background: #FFFBEB;
  }

  50% {
    border-color: #F59E0B;
    background: rgba(245, 158, 11, 0.08);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.08);
  }
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

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

/* --- CARD 2: Forgotten Callbacks - Live Chat --- */
.chat-ui-flat {
  width: 100%;
  max-width: 260px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  box-sizing: border-box;
}

.chat-ui-flat-header {
  background: #F8FAFC;
  padding: 10px 12px;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-avatar-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-header-avatar {
  width: 16px;
  height: 16px;
  background: #3B82F6;
  border-radius: 50%;
}

.chat-header-status {
  display: flex;
  flex-direction: column;
}

.chat-header-name {
  font-size: 10.5px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
}

.chat-header-subtitle {
  font-size: 8px;
  color: #64748B;
  line-height: 1.2;
}

.unanswered-corner-badge {
  font-size: 8px;
  font-weight: 700;
  color: #EF4444;
  background: #FEE2E2;
  padding: 2px 6px;
  border-radius: 4px;
  animation: unansweredPulse 2s infinite ease-in-out;
}

.chat-ui-flat-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 130px;
}

.chat-msg-row {
  display: flex;
  gap: 8px;
}

.chat-msg-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #E2E8F0;
  color: #475569;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-msg-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 85%;
}

.chat-msg-bubble {
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 9.5px;
  line-height: 1.35;
  background: #F1F5F9;
  color: #334155;
  border-top-left-radius: 2px;
  position: relative;
  box-sizing: border-box;
}

.chat-msg-bubble.warning-bubble {
  background: #FFF5F5;
  border: 1px solid #FCA5A5;
  color: #991B1B;
}

.delayed-indicator {
  display: block;
  font-size: 7.5px;
  font-weight: 600;
  color: #EF4444;
  margin-top: 3px;
}

.alert-pulse-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 13px;
  height: 13px;
  background: #EF4444;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(239, 68, 68, 0.3);
  animation: alertPulseMini 2s infinite ease-in-out;
}

.chat-msg-time {
  font-size: 8px;
  color: #94A3B8;
}

@keyframes unansweredPulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 rgba(239, 68, 68, 0);
  }

  50% {
    opacity: 0.85;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.15);
  }
}

@keyframes alertPulseMini {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

/* --- CARD 3: Lost Customers - Node Flow Diagram --- */
.journey-ui-flat {
  width: 260px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.journey-flow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.flow-hub-node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0F766E;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  position: absolute;
  top: 82px;
  left: 112px;
  z-index: 3;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.12);
}

.flow-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.flow-line {
  stroke-width: 1.5;
  stroke-linecap: round;
}

.flow-line.active-line {
  stroke: #10B981;
  stroke-dasharray: 3 3;
}

.flow-line.fading-churn-line {
  stroke: #FCA5A5;
  stroke-dasharray: 4 4;
  animation: lineFadeSlow 4s infinite ease-in-out;
}

.flow-customer-node {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
  z-index: 2;
  box-sizing: border-box;
}

.flow-customer-node.node-active {
  border-color: #A7F3D0;
  background: #F0FDFA;
}

.flow-customer-node.node-churned {
  border-color: #FCA5A5;
  background: #FFF5F5;
  animation: customerChurnDrift 4s infinite ease-in-out;
}

.active-left {
  top: 20px;
  left: 10px;
}

.active-right {
  top: 20px;
  right: 10px;
}

.churned-bottom {
  bottom: 15px;
  left: 82.5px;
  width: 95px;
}

.node-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.node-dot.dot-green {
  background: #10B981;
}

.node-dot.dot-red {
  background: #EF4444;
}

.node-name {
  font-size: 8.5px;
  font-weight: 700;
  color: #0F172A;
}

.node-status {
  font-size: 7.5px;
  font-weight: 600;
}

.node-status.status-active {
  color: #059669;
}

.node-status.status-churn {
  color: #DC2626;
}

.churn-warning-tag {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  background: #EF4444;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(239, 68, 68, 0.15);
}

@keyframes lineFadeSlow {

  0%,
  100% {
    opacity: 0.8;
    stroke-dashoffset: 0;
  }

  50% {
    opacity: 0.15;
    stroke-dashoffset: 8;
  }
}

@keyframes customerChurnDrift {

  0%,
  100% {
    transform: translateY(0);
    border-color: #FCA5A5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
  }

  50% {
    transform: translateY(10px);
    border-color: #EF4444;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.08);
  }
}

/* ===== SOLUTION SECTION & ORBS ===== */
.solution-section {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}

/* Floating Background Orbs */
.solution-orbs-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.solution-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  animation: orbFloat 20s infinite alternate ease-in-out;
}

.solution-orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  top: -10%;
  left: 5%;
}

.solution-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8B5CF6 0%, transparent 70%);
  bottom: -15%;
  right: 5%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(60px, -40px) scale(1.1);
  }

  100% {
    transform: translate(-40px, 60px) scale(0.95);
  }
}

.solution-section .container {
  position: relative;
  z-index: 2;
}

/* Solution Grid & Card Base */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(15, 118, 110, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 10px 30px -12px rgba(15, 118, 110, 0.03);

  /* Scroll Entrance Animation properties */
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.solution-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hover State */
.solution-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: #FFFFFF;
  box-shadow: 0 20px 40px -15px rgba(15, 118, 110, 0.1);
  border-color: rgba(15, 118, 110, 0.12);
}

/* Card Gradient Border Glows */
.solution-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, transparent 60%, var(--primary-light) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.solution-card.voice-card::after {
  background: linear-gradient(135deg, transparent 60%, #10B981 100%);
}

.solution-card.whatsapp-card::after {
  background: linear-gradient(135deg, transparent 60%, #8B5CF6 100%);
}

.solution-card.email-card::after {
  background: linear-gradient(135deg, transparent 60%, #F59E0B 100%);
}

.solution-card:hover::after {
  opacity: 1;
}

/* Card Checkmark Badge */
.card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #10B981;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

/* Card Visual Header */
.card-visual-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

/* Icon Wrap */
.solution-card-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.voice-card .solution-card-icon-wrap {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.12);
  color: #10B981;
}

.whatsapp-card .solution-card-icon-wrap {
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.12);
  color: #8B5CF6;
}

.email-card .solution-card-icon-wrap {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.12);
  color: #F59E0B;
}

/* Icon Hover Float */
.solution-card:hover .solution-card-icon-wrap {
  transform: translateY(-4px);
}

.voice-card .phone-icon {
  animation: phoneFloat 3.5s infinite ease-in-out;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0);
  }

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

/* Mockup elements */
.mockup-waveform,
.mockup-chat,
.mockup-email {
  flex: 1;
  height: 54px;
  display: flex;
  align-items: center;
}

/* --- CARD 1: Waveform --- */
.mockup-waveform {
  gap: 3.5px;
  justify-content: flex-start;
  position: relative;
}

.wave-bar {
  width: 3.5px;
  height: var(--h);
  background: rgba(16, 185, 129, 0.22);
  border-radius: 4px;
  animation: waveGrow 1.2s infinite ease-in-out alternate;
  animation-delay: var(--d);
  transform-origin: bottom;
}

@keyframes waveGrow {
  0% {
    transform: scaleY(0.4);
    background: rgba(16, 185, 129, 0.22);
  }

  100% {
    transform: scaleY(1.15);
    background: rgba(16, 185, 129, 0.5);
  }
}


/* Hover: Wave intensity increases */
.solution-card.voice-card:hover .wave-bar {
  animation-duration: 0.6s;
  background: rgba(16, 185, 129, 0.7);
}

/* --- CARD 2: WhatsApp Chat & Typing --- */
.mockup-chat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

.chat-bubble {
  background: #F0FDF4;
  border: 1px solid rgba(16, 185, 129, 0.12);
  padding: 6px 12px;
  border-radius: 12px 12px 12px 2px;
  font-size: 11px;
  color: #15803D;
  font-weight: 600;
  white-space: nowrap;
  animation: chatBubbleFloat 4s infinite ease-in-out;
  position: relative;
  overflow: hidden;
}

@keyframes chatBubbleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

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

/* Message sending pulse effect */
.chat-bubble::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: translateX(-100%);
  animation: shimmerSend 4.5s infinite ease-in-out;
}

@keyframes shimmerSend {

  0%,
  40% {
    transform: translateX(-100%);
  }

  60%,
  100% {
    transform: translateX(100%);
  }
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 3.5px;
  padding-left: 6px;
}

.typing-dot {
  width: 5px;
  height: 5px;
  background: #8B5CF6;
  border-radius: 50%;
  opacity: 0.3;
  transform: scale(0.8);
  animation: typingDots 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
  animation-delay: 0s;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDots {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Hover: Typing animation speeds up & bubble scales */
.solution-card.whatsapp-card:hover .typing-dot {
  animation-duration: 0.8s;
}

.solution-card.whatsapp-card:hover .chat-bubble {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.06);
}

/* --- CARD 3: Email Mockup --- */
.mockup-email {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.email-preview-card {
  width: 130px;
  background: #FDFBF7;
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: 10px;
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 6px;
  position: relative;
  animation: emailFloat 3.5s infinite ease-in-out;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.02);
  overflow: hidden;
}

@keyframes emailFloat {

  0%,
  100% {
    transform: translateY(0);
  }

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

.email-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.email-line {
  height: 4px;
  background: rgba(245, 158, 11, 0.18);
  border-radius: 2px;
}

.email-line.long {
  width: 100%;
}

.email-line.short {
  width: 60%;
}

.email-thumbnail {
  width: 30px;
  height: 20px;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 158, 11, 0.35);
}

/* Email Automated Badge */
.email-badge {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #ECFDF5;
  border: 1px solid rgba(16, 185, 129, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
  font-size: 8px;
  color: #10B981;
  font-weight: 700;
  animation: badgePulse 3s infinite ease-in-out;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.15);
  }
}

/* Progress bar simulate email sent */
.email-progress-bar {
  grid-column: 1 / -1;
  height: 2px;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 2px;
}

.email-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  animation: emailSendProgress 5s infinite linear;
}

@keyframes emailSendProgress {
  0% {
    width: 0%;
    opacity: 1;
  }

  80% {
    width: 100%;
    opacity: 1;
  }

  90%,
  100% {
    width: 100%;
    opacity: 0;
  }
}

/* Moving shimmer across email preview */
.email-preview-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40px;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(30deg);
  animation: emailShimmer 4.5s infinite ease-in-out;
}

@keyframes emailShimmer {

  0%,
  20% {
    left: -60%;
  }

  80%,
  100% {
    left: 140%;
  }
}

/* Hover: Shimmer more visible & email card lifts */
.solution-card.email-card:hover .email-preview-card {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.06);
}

.solution-card.email-card:hover .email-preview-card::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

/* Card Content styling */
.solution-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.solution-card-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 28px;
  flex: 1;
}

/* Card Footer */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 118, 110, 0.05);
}

.card-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
}

.voice-card .card-pill {
  background: rgba(16, 185, 129, 0.05);
  color: #0F766E;
  border: 1px solid rgba(16, 185, 129, 0.08);
}

.whatsapp-card .card-pill {
  background: rgba(139, 92, 246, 0.05);
  color: #6D28D9;
  border: 1px solid rgba(139, 92, 246, 0.08);
}

.email-card .card-pill {
  background: rgba(245, 158, 11, 0.05);
  color: #B45309;
  border: 1px solid rgba(245, 158, 11, 0.08);
}

.card-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.voice-card .card-arrow {
  background: rgba(16, 185, 129, 0.05);
  color: #10B981;
}

.whatsapp-card .card-arrow {
  background: rgba(139, 92, 246, 0.05);
  color: #8B5CF6;
}

.email-card .card-arrow {
  background: rgba(245, 158, 11, 0.05);
  color: #F59E0B;
}

.solution-card:hover .card-arrow {
  transform: translateX(4px);
}

.voice-card:hover .card-arrow {
  background: #10B981;
  color: #fff;
}

.whatsapp-card:hover .card-arrow {
  background: #8B5CF6;
  color: #fff;
}

.email-card:hover .card-arrow {
  background: #F59E0B;
  color: #fff;
}




.features-grid-wrapper {
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Initial hidden state:
   All cards translated TO the grid center + scaled down.
   opacity:0 keeps them invisible even outside container bounds. */
.features-grid.feat-initial .feature-card {
  opacity: 0;
  transform: translate(var(--tx, 0px), var(--ty, 0px)) scale(0.5);
  pointer-events: none;
}

/* Revealed state — fly out to final grid positions */
.features-grid.feat-revealed .feature-card {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  pointer-events: auto;
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card::before {
  background: var(--primary);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 20px;
}

.feature-title {
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}


/* Simulator Section Redesign */
.simulator-section {
  background-color: var(--bg-alt);
}

.sim-container {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-premium);
}

.sim-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.sim-tabs::-webkit-scrollbar {
  display: none;
}

.sim-tab {
  flex-shrink: 0;
  background: rgba(15, 118, 110, 0.03);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.sim-tab.active {
  background: var(--primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.sim-story-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.story-seg {
  flex: 1;
  height: 3px;
  background: rgba(15, 118, 110, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

.story-seg-fill {
  height: 100%;
  width: 0%;
  background: var(--primary);
  border-radius: 10px;
}

.sim-box {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.sim-contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sim-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.sim-contact-name {
  font-size: 14px;
  font-weight: 600;
}

.sim-channel-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.sim-channel-badge.voice {
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary);
  border: 1px solid rgba(15, 118, 110, 0.15);
}

.sim-channel-badge.whatsapp {
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.sim-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  scrollbar-width: none;
}

.sim-body::-webkit-scrollbar {
  display: none;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chat-msg.system {
  align-self: center;
  background: rgba(15, 118, 110, 0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 30px;
  max-width: 90%;
  text-align: center;
}

.chat-msg.agent {
  align-self: flex-start;
  background: #FFFFFF;
  color: var(--text-primary);
  border-bottom-left-radius: 2px;
  border: 1px solid var(--border);
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 2px;
}

.chat-msg.agent-voice {
  align-self: flex-start;
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid rgba(20, 184, 166, 0.15);
  color: var(--text-primary);
  border-bottom-left-radius: 2px;
}

/* Use Cases Section Redesign */
.usecases-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .usecases-section-grid {
    grid-template-columns: 280px 1fr;
    gap: 48px;
  }
}

.usecases-tabs-vertical {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.usecases-tabs-vertical::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .usecases-tabs-vertical {
    flex-direction: column;
    overflow-x: visible;
    padding-bottom: 0;
  }
}

.usecase-vertical-tab {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

@media (min-width: 1024px) {
  .usecase-vertical-tab {
    width: 100%;
    border-left: 3px solid transparent;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 14px 20px;
  }
}

.usecase-vertical-tab.active {
  background: rgba(20, 184, 166, 0.05);
  color: var(--primary);
}

@media (min-width: 1024px) {
  .usecase-vertical-tab.active {
    border-left: 3px solid var(--secondary);
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.06) 0%, transparent 100%);
  }
}

.usecase-content-panel {
  display: none;
}

.usecase-content-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.usecase-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-premium);
}

.usecase-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.usecase-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.usecase-name {
  font-size: 24px;
}

.usecase-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.usecase-bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text-secondary);
}

.usecase-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* Comparison Table Redesign */
.diff-table-container {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  box-shadow: var(--shadow-premium);
}

.diff-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  min-width: 600px;
}

.diff-table th,
.diff-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.diff-table th {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(15, 118, 110, 0.02);
}

.diff-table td.highlight {
  color: var(--primary);
  font-weight: 600;
  background: rgba(20, 184, 166, 0.03);
}

.diff-table tr:last-child td {
  border-bottom: none;
}

/* ROI Calculator Light Teal Glassmorphism Widget */
.roi-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-premium);
}

.roi-input-group {
  margin-bottom: 24px;
}

.roi-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.roi-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.roi-value {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.roi-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(15, 118, 110, 0.1);
  outline: none;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
  box-shadow: 0 0 12px var(--primary-glow);
  transition: var(--transition);
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.roi-outputs {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.roi-output-box {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.roi-output-box.recovered {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(103, 232, 249, 0.08) 100%);
  border-color: rgba(20, 184, 166, 0.25);
}

.roi-output-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.roi-output-val {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
}

.roi-output-box.recovered .roi-output-val {
  color: var(--primary);
}

/* Feature Deep-Dive Visual (Timeline Redesign) */
.flow-step-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .flow-step-container {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
}

/* Connected Line */
@media (min-width: 1024px) {
  .flow-step-container::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(15, 118, 110, 0.1) 0%, rgba(20, 184, 166, 0.4) 100%);
    z-index: 1;
  }
}

.flow-step-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-premium);
  transition: var(--transition);
}

.flow-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-hover);
}

@media (min-width: 1024px) {
  .flow-step-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: #FFFFFF;
  }
}

.flow-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.08);
  border: 2px solid var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 3;
}

.flow-content {
  flex: 1;
}

.flow-title {
  font-size: 16px;
  margin-bottom: 8px;
  font-family: var(--font-headings);
}

.flow-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Social Proof */
.socialproof-section {
  background-color: #F8FAFC;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

@media (min-width: 640px) {
  .stat-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-box {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-premium);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
}

.proof-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .proof-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-premium);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-hover);
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 72px;
  font-family: serif;
  color: rgba(15, 118, 110, 0.05);
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.author-info {
  line-height: 1.3;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* Pricing Section Redesign */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.pricing-toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.pricing-toggle-label.active {
  color: #14B8A6;
}

.pricing-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.pricing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: .4s;
  border-radius: 24px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: #14B8A6;
  transition: .4s;
  border-radius: 50%;
}

input:checked+.switch-slider {
  background-color: #14B8A6;
  border-color: #14B8A6;
}

input:checked+.switch-slider:before {
  transform: translateX(22px);
  background-color: #FFFFFF;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: stretch;
}

@media (min-width: 640px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Frosted glass cards aligned horizontally */
.price-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(20, 184, 166, 0.12);
  border-radius: 28px;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  color: var(--text-primary);
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 184, 166, 0.3);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 48px rgba(15, 118, 110, 0.08);
}

.price-card.popular {
  border: 1.5px solid #14B8A6;
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.03);
  box-shadow: 0 24px 50px rgba(20, 184, 166, 0.08), 0 0 20px rgba(20, 184, 166, 0.03);
}

.price-card.popular:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: #14B8A6;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 32px 60px rgba(20, 184, 166, 0.12);
}

@media (max-width: 1023px) {
  .price-card.popular {
    transform: none;
  }

  .price-card.popular:hover {
    transform: translateY(-8px);
  }
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #14B8A6;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.15);
}

.price-tier-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.price-currency {
  font-size: 24px;
  font-weight: 700;
}

.price-amount {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
}

.price-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 32px;
  min-height: 42px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  flex: 1;
  border-top: 1px solid rgba(20, 184, 166, 0.08);
  padding-top: 24px;
}

.price-features li {
  font-size: 13.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-feature-icon {
  color: #14B8A6;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Minimal buttons with solid teal backgrounds matching the brand accent */
.price-card .btn {
  background: #14B8A6;
  color: #FFFFFF !important;
  border: 1px solid #14B8A6;
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.15);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 14px;
  width: 100%;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  transition: var(--transition);
}

.price-card .btn:hover {
  background: #0d9488;
  border-color: #0d9488;
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.25);
}

.addons-header {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.addon-price {
  color: var(--text-primary);
  font-weight: 600;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(15, 118, 110, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01), 0 2px 4px rgba(0, 0, 0, 0.01);
}

.faq-item:hover {
  border-color: rgba(20, 184, 166, 0.15);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.03);
}

.faq-item.active {
  border: 1.5px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.05);
  background: #FFFFFF;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 32px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #0F172A;
  font-family: var(--font-headings);
  font-size: 17px;
  font-weight: 700;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: #14B8A6;
}

.faq-icon-arrow {
  font-size: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #0F172A;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  color: #14B8A6;
}

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

.faq-item.active .faq-content {
  max-height: 300px;
  padding: 12px 32px 24px 32px;
}

.faq-answer {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
}

/* Final CTA Section (Soft, medium-intensity moving brand-teal gradient) */
.final-cta-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(-45deg, #208279, #3FB3A7, #63C7BC, #C7EAE5);
  background-size: 400% 400%;
  animation: ctaGradientMove 12s ease infinite;
  color: var(--text-primary);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
}

@keyframes ctaGradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.final-cta-section .final-cta-title {
  color: var(--text-primary);
  font-size: 36px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .final-cta-section .final-cta-title {
    font-size: 48px;
  }
}

.final-cta-section .final-cta-subtitle {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 36px;
}

.final-cta-section .btn-primary {
  background: #FFFFFF;
  color: var(--primary);
  border: 1px solid #FFFFFF;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}

.final-cta-section .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.final-cta-section .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.final-cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Sticky Mobile CTA Bar - Hidden completely */
.sticky-cta-bar {
  display: none !important;
}

/* Premium Footer (matching RevisitCare) */
.premium-footer {
  background-color: #0b0f19;
  /* Deep Slate/Navy background */
  color: #ffffff;
  padding: 80px 0 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-logo {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand-logo .logo-dot {
  width: 10px;
  height: 10px;
  background-color: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--secondary);
}

.footer-brand-tagline {
  color: #94a3b8;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social-icon:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-column-title {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cbd5e1;
  margin-bottom: 24px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 13px;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .footer-copyright {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  color: #64748b;
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.footer-powered {
  font-size: 13px;
  color: #94a3b8;
}

.footer-powered a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 700;
}

.footer-powered a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ROI CALCULATOR SECTION ===== */
.roi-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.roi-card {
  background: #FFFFFF;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 20px 40px -8px rgba(15, 118, 110, 0.04);
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 992px) {
  .roi-card {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

.roi-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.roi-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roi-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.roi-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.roi-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(15, 118, 110, 0.06);
  padding: 4px 12px;
  border-radius: 8px;
  font-variant-numeric: tabular-nums;
}

/* Slider Track Customization */
.roi-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: #E2E8F0;
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(15, 118, 110, 0.3);
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--primary-dark, #0d9488);
}

.roi-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(15, 118, 110, 0.3);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.roi-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

/* Outputs Column */
.roi-outputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  justify-content: center;
}

.roi-output-box {
  background: #F8FAFC;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.roi-output-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
}

.roi-output-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.roi-output-val {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

/* Highlighting recovered revenue box */
.roi-output-box.recovered {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.03) 0%, rgba(15, 118, 110, 0.08) 100%);
  border: 1.5px solid rgba(15, 118, 110, 0.2);
  position: relative;
  overflow: hidden;
}

.roi-output-box.recovered::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #0d9488 100%);
}

.roi-output-box.recovered .roi-output-label {
  color: var(--primary);
}

.roi-output-box.recovered .roi-output-val {
  color: var(--primary);
  font-size: 44px;
  text-shadow: 0 2px 10px rgba(15, 118, 110, 0.05);
}

/* ===== THE UNIFIED FOLLOW-UP ENGINE (DEEPDIVE SECTION) ===== */
.deepdive-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.flow-step-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  gap: 20px;
  padding: 40px 0;
  margin-top: 48px;
}

.flow-line-bg {
  height: 2px;
  background: rgba(15, 118, 110, 0.1);
  position: absolute;
  top: 60px;
  left: 6%;
  right: 6%;
  z-index: 1;
}

.flow-line-progress {
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 60px;
  left: 6%;
  width: 0%;
  z-index: 2;
  transition: width 0.1s linear;
}

.flow-step-card {
  position: relative;
  z-index: 3;
  background: #FFFFFF;
  border: 1.5px solid rgba(15, 118, 110, 0.08);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 10px 20px -8px rgba(0, 0, 0, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.flow-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 118, 110, 0.3);
  box-shadow: 0 20px 40px -12px rgba(15, 118, 110, 0.1);
}

.flow-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(15, 118, 110, 0.15);
  background: #FFFFFF;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 4;
}

.flow-step-card.active {
  border-color: rgba(15, 118, 110, 0.2);
  box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.05);
}

.flow-step-card.active .flow-number {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(15, 118, 110, 0.4);
  transform: scale(1.1);
}

.flow-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.flow-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Responsive Steps: Vertical timeline on smaller viewports */
@media (max-width: 991px) {
  .flow-step-container {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding-left: 32px;
  }

  .flow-line-bg {
    width: 2px;
    height: 80%;
    position: absolute;
    left: 16px;
    top: 40px;
    bottom: 40px;
    right: auto;
  }

  .flow-line-progress {
    width: 2px;
    height: 0%;
    position: absolute;
    left: 16px;
    top: 40px;
    bottom: 40px;
    right: auto;
    transition: height 0.1s linear;
  }

  .flow-step-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 24px;
  }

  .flow-number {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* ===== SOCIAL PROOF / SUCCESS STORIES SECTION ===== */
.socialproof-section {
  padding: 100px 0;
  background: #F8FAFC;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .stat-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-box {
  background: #FFFFFF;
  border: 1px solid rgba(15, 118, 110, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01), 0 10px 20px -8px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.15);
}

.stat-number {
  font-size: clamp(38px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.45;
}

.proof-cards-wrapper {
  position: relative;
  width: 100%;
  margin: 60px auto 0 auto;
  overflow: hidden;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.proof-cards {
  display: flex;
  gap: 40px;
  width: max-content;
  position: relative;
  z-index: 2;
  will-change: transform;
  pointer-events: none;
}

.testimonial-card {
  position: relative;
  width: 480px;
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid rgba(15, 118, 110, 0.06);
  border-radius: 28px;
  padding: 48px 44px 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01), 0 10px 30px rgba(15, 118, 110, 0.02);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  pointer-events: auto;
  transform-origin: center center;
}

.testimonial-card.active-center {
  border-color: rgba(15, 118, 110, 0.15);
  box-shadow: 0 20px 50px -10px rgba(15, 118, 110, 0.08), 0 0 30px rgba(15, 118, 110, 0.03);
}

.testimonial-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-primary);
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.testimonial-text::before {
  content: '“';
  font-size: 130px;
  position: absolute;
  top: 10px;
  left: 28px;
  color: rgba(15, 118, 110, 0.04);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  margin-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 16px;
}

.author-avatar {
  position: absolute;
  top: -24px;
  left: 44px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 10px rgba(15, 118, 110, 0.15);
  z-index: 10;
  flex-shrink: 0;
}

.author-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.author-role {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

@media (max-width: 767px) {
  .proof-cards-wrapper {
    padding: 20px 0;
  }

  .testimonial-card {
    width: 320px;
    padding: 36px 24px 28px 24px;
    border-radius: 20px;
  }

  .testimonial-text::before {
    font-size: 100px;
    top: 5px;
    left: 12px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 24px;
    font-size: 12px;
  }
}

/* Contact Form Styling inside Final CTA Section */
.contact-form {
  max-width: 500px;
  margin: 40px auto 0 auto;
  background: #FFFFFF;
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  box-shadow: 0 20px 50px rgba(15, 118, 110, 0.15);
  scroll-margin-top: 100px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .contact-form .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-form .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #708090;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(15, 118, 110, 0.1);
}

.contact-form .btn-submit {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #FFFFFF !important;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.2);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-sm);
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.contact-form .btn-submit:hover {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  border-color: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.3);
}

/* Custom Error Validation & Asterisk styling */
.contact-form label .required {
  color: #EF4444;
  margin-left: 4px;
}

.contact-form .error-message {
  color: #EF4444;
  font-size: 12.5px;
  margin-top: 4px;
  display: none;
  font-weight: 500;
}

.contact-form input.invalid,
.contact-form textarea.invalid {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.03);
}

/* =============================================
   SUBPAGE HERO STYLING
   ============================================= */
.subpage-hero {
  position: relative;
  padding: 160px 0 90px 0;
  text-align: center;
  background:
    radial-gradient(circle at 15% 25%, rgba(45, 212, 191, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(15, 118, 110, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #F7F9FB 0%, #EEF4F5 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.subpage-hero .container {
  max-width: 960px;
  position: relative;
  z-index: 2;
}

.subpage-hero-title {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .subpage-hero-title {
    font-size: 56px;
  }
}

.subpage-hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 40px auto;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .subpage-hero-subtitle {
    font-size: 20px;
  }
}

.subpage-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .subpage-hero-ctas {
    flex-direction: row;
  }

  .subpage-hero-ctas .btn {
    width: auto;
  }
}

/* =============================================
   SIMULATOR MOBILE OPTIMIZATION
   ============================================= */
@media (max-width: 767px) {
  .sim-container {
    padding: 16px;
  }

  .sim-tabs {
    flex-wrap: wrap;
    gap: 8px 6px;
    margin-bottom: 16px;
    padding-bottom: 0;
  }

  .sim-tab {
    font-size: 11.5px;
    padding: 8px 10px;
    flex: 1 1 calc(50% - 6px);
    text-align: center;
    border-radius: 20px;
    box-sizing: border-box;
  }

  .sim-box {
    padding: 14px;
    height: 400px;
  }

  .sim-header {
    padding-bottom: 8px;
    margin-bottom: 12px;
  }

  .sim-avatar {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .sim-contact-name {
    font-size: 12.5px;
  }

  .sim-channel-badge {
    font-size: 9.5px;
    padding: 3px 8px;
  }

  .chat-msg {
    padding: 10px 14px;
    font-size: 12.5px;
  }
}

/* =============================================
   INDUSTRY SECTION MOBILE RESPONSIVE FIX
   ============================================= */
/* =============================================
   INDUSTRY Solutions SECTION
   ============================================= */
.industry-section {
  padding: 100px 0;
  background-color: var(--surface-hover);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.industry-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.industry-header-centered {
  text-align: center;
  max-width: 650px;
}

.industry-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.industry-heading {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.industry-subtext {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.industry-card-container {
  width: 100%;
  max-width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  padding: 40px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Tabs Header */
.industry-tabs-header {
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  padding-bottom: 0px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.industry-tabs-list {
  display: flex;
  gap: 24px;
  position: relative;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.industry-tabs-list::-webkit-scrollbar {
  display: none;
}

.industry-tab-btn {
  background: none;
  border: none;
  padding: 12px 4px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

.industry-tab-btn .tab-icon {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.industry-tab-btn:hover {
  color: var(--text-primary);
}

.industry-tab-btn:hover .tab-icon {
  opacity: 1;
}

.industry-tab-btn.active {
  color: var(--text-primary);
}

.industry-tab-btn.active .tab-icon {
  opacity: 1;
  color: var(--primary-light);
}

/* Sliding underline indicator */
.industry-tab-underline {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Content Area Viewport */
.industry-content-viewport {
  position: relative;
  min-height: 380px;
}

/* Content Pane */
.industry-content-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  pointer-events: none;
}

.industry-content-pane.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.industry-pane-header {
  margin-bottom: 28px;
}

.pane-title {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pane-subtitle {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Feature Rows List */
.industry-feature-list {
  display: flex;
  flex-direction: column;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  margin-left: -24px;
  margin-right: -24px;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: var(--radius-sm);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row:hover {
  background-color: var(--surface-hover);
  transform: translateX(4px);
}

.feature-num-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-hover);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-row:hover .feature-num-circle {
  background-color: var(--text-primary);
  color: var(--surface);
}

.feature-row-content {
  flex-grow: 1;
}

.feature-row-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.feature-row-desc {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* Bottom Navigation Controls */
.industry-bottom-nav {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.industry-nav-progress-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
  max-width: 240px;
}

.industry-nav-counter {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 48px;
}

.industry-progress-track {
  height: 2px;
  background-color: var(--surface-hover);
  border-radius: 2px;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
}

.industry-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-nav-arrows {
  display: flex;
  gap: 8px;
}

.industry-nav-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.industry-nav-arrow-btn:hover {
  background-color: var(--surface-hover);
  color: var(--text-primary);
  border-color: var(--text-muted);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .industry-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .industry-card-container {
    padding: 24px;
  }

  .feature-row {
    padding: 16px 12px;
    margin-left: -12px;
    margin-right: -12px;
    gap: 16px;
  }

  .industry-content-viewport {
    min-height: auto;
  }

  .pane-title {
    font-size: 18px;
  }

  .pane-subtitle {
    font-size: 13.5px;
  }
}

@media (max-width: 640px) {
  .industry-container {
    padding: 0 16px;
    gap: 32px;
  }

  .industry-card-container {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }

  .industry-tabs-list {
    gap: 16px;
  }

  .industry-tab-btn {
    font-size: 13.5px;
    padding: 10px 2px;
  }

  .feature-row {
    padding: 14px 8px;
    margin-left: -8px;
    margin-right: -8px;
    gap: 12px;
  }

  .feature-row-title {
    font-size: 14px;
  }

  .feature-row-desc {
    font-size: 12.5px;
  }

  .industry-bottom-nav {
    margin-top: 30px;
    padding-top: 20px;
  }

  .industry-nav-progress-wrapper {
    max-width: 180px;
    gap: 12px;
  }
}