/* ==========================================================================
   WHATSWAY LANDING PAGE STYLESHEET
   Design System: Modern Premium SaaS, WhatsApp Green, Dynamic Animations & Vibrant Colors
   ========================================================================== */

:root {
  /* Brand & Vibrant Colors */
  --primary-green: #25D366;
  --dark-green: #128C7E;
  --deep-green: #075E54;
  --emerald-accent: #059669;
  --vivid-mint: #10B981;
  --electric-blue: #3B82F6;
  --royal-purple: #8B5CF6;
  --amber-gold: #F59E0B;
  --rose-pink: #EC4899;
  
  /* Text & Neutral Colors */
  --charcoal-dark: #0F172A;
  --charcoal-medium: #1E293B;
  --charcoal-body: #334155;
  --text-muted: #64748B;
  
  /* Backgrounds & Surfaces */
  --bg-white: #FFFFFF;
  --bg-light-green: #F0FDF4;
  --bg-subtle-green: #DCFCE7;
  --bg-light-gray: #F8FAFC;
  --bg-dark-section: #090D16;
  
  /* Borders & Shadows */
  --border-light: #E2E8F0;
  --border-green: rgba(37, 211, 102, 0.4);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-green-glow: 0 14px 35px -8px rgba(37, 211, 102, 0.45);
  --shadow-rainbow-glow: 0 16px 40px -10px rgba(16, 185, 129, 0.35);
  
  /* Typography & Radius */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-white);
  color: var(--charcoal-body);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 0;
}

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

button, input {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  color: var(--charcoal-dark);
  line-height: 1.2;
  font-weight: 800;
}

.gradient-text {
  background: linear-gradient(135deg, #25D366 0%, #10B981 50%, #075E54 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
  display: inline-block;
}

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

.text-center { text-align: center; }

/* Section Base */
.section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  max-width: 780px;
  margin: 0 auto 60px auto;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  color: var(--deep-green);
  font-size: 0.825rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(37, 211, 102, 0.4);
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.section-badge.badge-warning {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  color: #92400E;
  border-color: #FCD34D;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.section-badge.dark-badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary-green);
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.section-badge.badge-light {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  transition: var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #25D366 0%, #10B981 50%, #075E54 100%);
  background-size: 200% auto;
  color: #FFFFFF;
  box-shadow: var(--shadow-green-glow);
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px -6px rgba(37, 211, 102, 0.55);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--charcoal-dark);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #F8FAFC;
  border-color: var(--primary-green);
  color: var(--deep-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.15);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.glow-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: rotate(30deg);
  animation: shine 3.5s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  25%, 100% { transform: translateX(100%) rotate(30deg); }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 22px 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(37, 211, 102, 0.15);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo-img {
  height: 42px;
  width: auto;
  display: block;
  transition: var(--transition-fast);
}

.brand-logo:hover .site-logo-img {
  transform: scale(1.03);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #25D366 0%, #10B981 50%, #075E54 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  animation: floatSmall 4s ease-in-out infinite;
}

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

.brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--charcoal-dark);
  letter-spacing: -0.03em;
}

.brand-name span {
  color: var(--primary-green);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal-body);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary-green);
}

.nav-link:hover::after {
  width: 100%;
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--charcoal-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* SECTION 1: HERO */
.hero-section {
  padding: 170px 0 110px 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 211, 102, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #DCFCE7 0%, #A7F3D0 100%);
  border: 1px solid rgba(37, 211, 102, 0.5);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--deep-green);
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--primary-green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary-green);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 580px;
  line-height: 1.65;
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 1.5px solid #F59E0B;
  border-radius: var(--radius-md);
  color: #78350F;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 34px;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.2);
  animation: floatPill 3s ease-in-out infinite;
}

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

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.925rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Hero Phone Mockup Visual */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  animation: floatOrb 6s ease-in-out infinite alternate;
}

.hero-orb-1 {
  width: 320px;
  height: 320px;
  background: rgba(37, 211, 102, 0.3);
  top: -30px;
  right: -30px;
}

.hero-orb-2 {
  width: 260px;
  height: 260px;
  background: rgba(139, 92, 246, 0.25);
  bottom: -40px;
  left: -30px;
  animation-delay: 3s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -20px) scale(1.1); }
}

.phone-mockup {
  width: 330px;
  background: #0B141A;
  border: 10px solid #1E293B;
  border-radius: 40px;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.4), 
              0 0 0 2px rgba(37, 211, 102, 0.3),
              0 0 30px rgba(37, 211, 102, 0.2);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--transition-normal);
}

.phone-mockup:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 80px -15px rgba(37, 211, 102, 0.35), 0 0 40px rgba(37, 211, 102, 0.4);
}

.phone-header {
  height: 26px;
  background: #0B141A;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 6px;
}

.phone-speaker {
  width: 54px;
  height: 4px;
  background: #334155;
  border-radius: 2px;
}

.phone-camera {
  width: 8px;
  height: 8px;
  background: #334155;
  border-radius: 50%;
}

.phone-app-header {
  background: #1F2C34;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-ai {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #25D366 0%, #10B981 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
}

.app-title {
  display: flex;
  flex-direction: column;
}

.bot-name {
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
}

.bot-status {
  color: #25D366;
  font-size: 0.72rem;
  font-weight: 600;
}

.phone-chat-body {
  background-color: #0B141A;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 16px 16px;
  padding: 16px;
  height: 430px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-time-stamp {
  align-self: center;
  background: rgba(255, 255, 255, 0.12);
  color: #94A3B8;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
}

.chat-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.825rem;
  line-height: 1.45;
  position: relative;
  animation: slideInUp 0.4s ease-out;
}

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

.chat-bubble.incoming {
  align-self: flex-start;
  background: #202C33;
  color: #E9EDEF;
  border-top-left-radius: 2px;
}

.chat-bubble.outgoing {
  align-self: flex-end;
  background: linear-gradient(135deg, #005C4B 0%, #027A63 100%);
  color: #E9EDEF;
  border-top-right-radius: 2px;
  box-shadow: 0 4px 15px rgba(0, 92, 75, 0.3);
}

.ai-tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: #25D366;
  margin-bottom: 4px;
}

.chat-card-attachment {
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-thumb {
  font-size: 1.3rem;
}

.card-info strong {
  font-size: 0.75rem;
  color: white;
}

.card-info span {
  font-size: 0.65rem;
  color: #94A3B8;
}

.chat-quick-actions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.chat-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 5px 10px;
  border-radius: 16px;
  font-size: 0.68rem;
  font-weight: 700;
}

.chat-time {
  display: block;
  text-align: right;
  font-size: 0.62rem;
  color: #8696A0;
  margin-top: 4px;
}

/* Floating UI Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.float-card-1 {
  top: 40px;
  left: -45px;
  border-left: 4px solid var(--primary-green);
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 90px;
  right: -35px;
  border-left: 4px solid var(--electric-blue);
  animation-delay: 1.5s;
}

.float-card-3 {
  bottom: -20px;
  left: -25px;
  border-left: 4px solid var(--royal-purple);
  animation-delay: 2.5s;
}

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

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.float-icon.green { background: #DCFCE7; color: #15803D; }
.float-icon.blue { background: #DBEAFE; color: #1D4ED8; }
.float-icon.purple { background: #F3E8FF; color: #7E22CE; }

.float-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--charcoal-dark);
}

.float-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* SECTION 2: PROBLEM */
.problem-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.problem-visual-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  align-items: center;
  margin-bottom: 45px;
}

.problem-chaos-box {
  background: #FFFFFF;
  border: 2px dashed #F87171;
  border-radius: var(--radius-lg);
  padding: 45px 32px;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(239, 68, 68, 0.08);
}

.chaos-center {
  text-align: center;
  z-index: 2;
}

.owner-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}

.owner-emoji {
  font-size: 3.8rem;
  display: inline-block;
  animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  20%, 60% { transform: rotate(-6deg); }
  40%, 80% { transform: rotate(6deg); }
}

.stress-badge {
  position: absolute;
  top: -12px;
  right: -24px;
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.chaos-chip {
  position: absolute;
  background: #FEF2F2;
  border: 1.5px solid #FECACA;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
  animation: floatChaos 4s ease-in-out infinite alternate;
}

@keyframes floatChaos {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(2deg); }
}

.chip-alert {
  font-weight: 800;
  color: #DC2626;
}

.chip-1 { top: 20px; left: 15px; transform: rotate(-4deg); }
.chip-2 { top: 20px; right: 15px; transform: rotate(4deg); }
.chip-3 { bottom: 25px; left: 15px; transform: rotate(3deg); }
.chip-4 { bottom: 25px; right: 15px; transform: rotate(-3deg); }

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.pain-card {
  background: #FFFFFF;
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: #F87171;
  opacity: 0;
  transition: var(--transition-fast);
}

.pain-card:hover {
  border-color: #FCA5A5;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(239, 68, 68, 0.12);
}

.pain-card:hover::before { opacity: 1; }

.pain-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.pain-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--charcoal-dark);
}

.pain-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.problem-statement-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: white;
  padding: 34px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-statement-banner strong {
  color: var(--primary-green);
}

/* SECTION 3: SOLUTION */
.solution-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.solution-features-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 32px 0;
}

.sol-feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.sol-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #25D366 0%, #10B981 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.sol-feature-item strong {
  font-size: 1.1rem;
  color: var(--charcoal-dark);
  display: block;
}

.sol-feature-item p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.solution-highlight-box {
  background: linear-gradient(135deg, #DCFCE7 0%, #ECFDF5 100%);
  border-left: 5px solid var(--primary-green);
  padding: 18px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 32px;
  font-size: 1.15rem;
  color: var(--deep-green);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.12);
}

/* Interactive Chat Demo Box */
.interactive-chat-container {
  background: #FFFFFF;
  border: 2px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px -15px rgba(37, 211, 102, 0.25);
  overflow: hidden;
  transition: var(--transition-normal);
}

.interactive-chat-container:hover {
  box-shadow: 0 30px 70px -10px rgba(37, 211, 102, 0.35);
}

.chat-window-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  color: white;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.chat-bot-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 12px #25D366;
}

.chat-header-info strong {
  display: block;
  font-size: 1rem;
}

.chat-header-info span {
  font-size: 0.78rem;
  color: #A7F3D0;
}

.live-pulse {
  position: absolute;
  right: 22px;
  width: 12px;
  height: 12px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 14px #25D366;
  animation: pulse-dot 1.5s infinite;
}

.interactive-chat-messages {
  background: #E5DDD5;
  padding: 22px;
  min-height: 350px;
  max-height: 440px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.demo-chat-btn {
  background: #FFFFFF;
  border: 2px solid var(--primary-green);
  color: var(--deep-green);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.825rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.demo-chat-btn:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.chat-interactive-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

/* Typing Indicator */
.typing-indicator-row {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: #FFFFFF;
  padding: 10px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.typing-indicator {
  display: flex;
  gap: 4px;
}

.typing-indicator span {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1.2); opacity: 1; }
}

.typing-text {
  font-size: 0.78rem;
  color: #475569;
  font-weight: 600;
}

.chat-footer-prompt {
  background: #F1F5F9;
  padding: 14px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  font-weight: 600;
}

.hidden { display: none !important; }

/* SECTION 4: HOW IT WORKS */
.how-section {
  background: #FFFFFF;
}

.steps-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}

.step-card {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 26px 32px 26px;
  position: relative;
  transition: var(--transition-normal);
}

.step-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, #25D366, #3B82F6);
  opacity: 0;
  transition: var(--transition-fast);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.step-card:hover {
  background: #FFFFFF;
  border-color: var(--primary-green);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.2);
}

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

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(37, 211, 102, 0.35);
  position: absolute;
  top: 16px;
  right: 22px;
}

.step-icon {
  font-size: 2.8rem;
  margin-bottom: 22px;
  display: inline-block;
  transition: var(--transition-normal);
}

.step-card:hover .step-icon {
  transform: scale(1.15) rotate(5deg);
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
  z-index: 2;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-light);
}

/* SECTION 5: FEATURES */
.features-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #ECFDF5 100%);
}

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

.feature-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.25);
}

.feat-icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #DCFCE7 0%, #A7F3D0 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition-normal);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.feature-card:hover .feat-icon-box {
  background: linear-gradient(135deg, #25D366 0%, #10B981 100%);
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.feature-card:hover .feat-icon-box svg {
  stroke: #FFFFFF;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* SECTION 6: WHO IS IT FOR? */
.industries-section {
  background: #FFFFFF;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 45px;
}

.ind-card {
  background: var(--bg-light-gray);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.ind-card:nth-child(1):hover { background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%); border-color: #FB7185; }
.ind-card:nth-child(2):hover { background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%); border-color: #F59E0B; }
.ind-card:nth-child(3):hover { background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%); border-color: #38BDF8; }
.ind-card:nth-child(4):hover { background: linear-gradient(135deg, #F3E8FF 0%, #DDD6FE 100%); border-color: #A855F7; }
.ind-card:nth-child(5):hover { background: linear-gradient(135deg, #FEF9C3 0%, #FEF08A 100%); border-color: #EAB308; }
.ind-card:nth-child(6):hover { background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%); border-color: #4ADE80; }
.ind-card:nth-child(7):hover { background: linear-gradient(135deg, #FCE7F3 0%, #FBCFE8 100%); border-color: #F472B6; }
.ind-card:nth-child(8):hover { background: linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%); border-color: #FB923C; }
.ind-card:nth-child(9):hover { background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%); border-color: #818CF8; }
.ind-card:nth-child(10):hover { background: linear-gradient(135deg, #CCFBF1 0%, #99F6E4 100%); border-color: #2DD4BF; }

.ind-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.ind-emoji {
  font-size: 2.4rem;
  display: inline-block;
  margin-bottom: 14px;
  transition: var(--transition-fast);
}

.ind-card:hover .ind-emoji {
  transform: scale(1.2);
}

.ind-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.ind-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.industry-footer-banner {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 50%, #059669 100%);
  color: white;
  padding: 40px 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: 0 20px 40px -10px rgba(7, 94, 84, 0.4);
}

.ind-banner-icon {
  font-size: 2.8rem;
}

.ind-banner-text h3 {
  color: white;
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.ind-banner-text p {
  color: #A7F3D0;
  font-size: 1rem;
}

/* SECTION 7: BEFORE VS AFTER */
.comparison-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.comparison-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.comp-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 2px solid var(--border-light);
  transition: var(--transition-normal);
}

.comp-before {
  border-color: #FCA5A5;
  background: linear-gradient(180deg, #FFFFFF 0%, #FEF2F2 100%);
}

.comp-after {
  border-color: var(--primary-green);
  background: linear-gradient(180deg, #FFFFFF 0%, #ECFDF5 100%);
  box-shadow: 0 20px 50px -15px rgba(37, 211, 102, 0.25);
}

.comp-card-header {
  margin-bottom: 30px;
}

.comp-badge {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 14px;
}

.comp-badge.red { background: #FEE2E2; color: #DC2626; }
.comp-badge.green { background: #DCFCE7; color: #15803D; }

.comp-card-header h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.comp-card-header p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.comp-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.comp-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.comp-icon.red { background: #FEE2E2; color: #DC2626; }
.comp-icon.green { background: #DCFCE7; color: #15803D; }

.comp-list li strong {
  display: block;
  font-size: 1rem;
  color: var(--charcoal-dark);
}

.comp-list li span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.comp-vs-divider {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* SECTION 8: AI EMPLOYEE */
.ai-employee-section {
  background: var(--bg-dark-section);
  color: white;
  padding: 130px 0;
  overflow: hidden;
}

.ai-bg-grid {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(37, 211, 102, 0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37, 211, 102, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.relative-z { position: relative; z-index: 2; }
.light-text { color: #FFFFFF !important; }
.light-sub { color: #94A3B8 !important; }

.ai-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin: 65px 0 55px 0;
}

.ai-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 40px 26px;
  text-align: center;
  transition: var(--transition-normal);
}

.ai-stat-card:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: var(--primary-green);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.25);
}

.ai-stat-value {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.ai-stat-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.ai-stat-desc {
  font-size: 0.88rem;
  color: #94A3B8;
}

/* SECTION 9: ₹99 SETUP OFFER */
.setup-offer-section {
  background: #FFFFFF;
}

.setup-card-wrapper {
  background: linear-gradient(135deg, #ECFDF5 0%, #DCFCE7 50%, #E0F2FE 100%);
  border: 2.5px solid var(--primary-green);
  border-radius: var(--radius-lg);
  padding: 65px 55px;
  position: relative;
  box-shadow: 0 25px 60px -10px rgba(37, 211, 102, 0.3);
}

.setup-badge-top {
  position: absolute;
  top: -16px;
  left: 55px;
  background: #0F172A;
  color: var(--primary-green);
  font-size: 0.825rem;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.setup-content-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 55px;
  align-items: center;
}

.setup-title {
  font-size: 2.35rem;
  margin-bottom: 16px;
}

.setup-desc {
  font-size: 1.1rem;
  color: var(--charcoal-body);
  margin-bottom: 26px;
}

.setup-features-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.setup-chk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.975rem;
}

.chk-icon {
  color: var(--primary-green);
  font-weight: 900;
  font-size: 1.2rem;
}

.setup-price-box {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  border: 2px solid var(--primary-green);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.2);
  transition: var(--transition-normal);
}

.setup-price-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.3);
}

.setup-tag {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.setup-price {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--charcoal-dark);
  line-height: 1;
  margin-bottom: 10px;
}

.setup-price .currency {
  font-size: 2.2rem;
  vertical-align: top;
}

.setup-price .one-time {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.setup-note {
  font-size: 0.9rem;
  color: var(--primary-green);
  font-weight: 800;
  margin-bottom: 22px;
}

.setup-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-weight: 600;
}

/* SECTION 10: PRICING */
.pricing-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
}

.pricing-card-container {
  max-width: 580px;
  margin: 0 auto;
  padding: 10px 0;
}

.featured-pricing {
  background: #FFFFFF;
  border: 2.5px solid var(--primary-green);
  border-radius: var(--radius-lg);
  padding: 46px 36px;
  position: relative;
  box-shadow: 0 25px 60px -15px rgba(37, 211, 102, 0.3);
  transition: var(--transition-normal);
}

.featured-pricing:hover {
  box-shadow: 0 30px 75px -10px rgba(37, 211, 102, 0.4);
}

.pricing-popular-tag {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #25D366 0%, #10B981 50%, #075E54 100%);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 22px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-align: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  max-width: 90%;
  line-height: 1.3;
}

.pricing-header {
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 26px;
  margin-bottom: 30px;
  margin-top: 8px;
}

.plan-name {
  font-size: 2rem;
  margin-bottom: 6px;
}

.plan-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.pricing-amount {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--charcoal-dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-amount .currency {
  font-size: 2.2rem;
  font-weight: 800;
}

.pricing-amount .period {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 4px;
}

.setup-add-on-pill {
  display: inline-block;
  margin-top: 16px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 1.5px solid #F59E0B;
  color: #78350F;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.18);
}

.pricing-features-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.975rem;
  line-height: 1.45;
}

.pricing-features-list .check {
  color: var(--primary-green);
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-action {
  text-align: center;
}

.pricing-foot-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-weight: 600;
}

/* SECTION 11: DEMO VIDEO */
.demo-video-section {
  background: #FFFFFF;
}

.video-frame-wrapper {
  max-width: 880px;
  margin: 0 auto 40px auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--border-light);
  transition: var(--transition-normal);
}

.video-frame-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -10px rgba(37, 211, 102, 0.25);
  border-color: var(--primary-green);
}

.video-aspect-ratio {
  position: relative;
  padding-top: 56.25%;
  background: #0F172A;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.95) 100%);
  color: white;
  padding: 24px;
  text-align: center;
}

.play-button-outer {
  width: 88px;
  height: 88px;
  background: rgba(37, 211, 102, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 22px;
  transition: var(--transition-normal);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

.play-button-inner {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366 0%, #10B981 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
}

.play-button-outer:hover {
  transform: scale(1.12);
  background: rgba(37, 211, 102, 0.55);
}

.video-brand-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary-green);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.video-placeholder-content h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.video-placeholder-content p {
  color: #94A3B8;
  font-size: 0.95rem;
}

/* SECTION 12: TESTIMONIALS */
.testimonials-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
}

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

.testimonial-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.2);
}

.stars {
  color: #F59E0B;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.testimonial-quote {
  font-size: 0.975rem;
  color: var(--charcoal-body);
  line-height: 1.65;
  margin-bottom: 26px;
  font-style: italic;
}

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

.author-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #DCFCE7 0%, #A7F3D0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.author-details strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal-dark);
}

.author-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* SECTION 13: FAQ */
.faq-section {
  background: #FFFFFF;
}

.faq-accordion-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
  background: #FFFFFF;
}

.faq-item.active {
  border-color: var(--primary-green);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  text-align: left;
  font-size: 1.075rem;
  font-weight: 800;
  color: var(--charcoal-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 1.5rem;
  color: var(--primary-green);
  transition: var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  background: var(--bg-light-gray);
}

.faq-item.active .faq-answer {
  max-height: 260px;
  padding: 0 26px 22px 26px;
}

.faq-answer p {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* SECTION 14: FINAL CTA */
.final-cta-section {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 50%, #059669 100%);
  color: white;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-card {
  position: relative;
  z-index: 2;
}

.final-cta-title {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.final-cta-title span {
  color: #A7F3D0;
}

.final-cta-sub {
  font-size: 1.25rem;
  color: #E6F4EA;
  margin-bottom: 36px;
}

.final-offer-display {
  display: inline-block;
  margin-bottom: 38px;
}

.offer-box {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.offer-box .setup {
  color: #FDE68A;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
}

/* FOOTER */
.site-footer {
  background: #090D16;
  color: #94A3B8;
  padding: 50px 0 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.centered-logo {
  margin: 0 auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 0.875rem;
}

/* STICKY MOBILE CTA BAR */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-top: 1.5px solid var(--border-light);
  padding: 12px 22px;
  z-index: 999;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.12);
  align-items: center;
  justify-content: space-between;
}

.mobile-bar-info {
  display: flex;
  flex-direction: column;
}

.bar-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.bar-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal-dark);
}

.bar-price span {
  font-size: 0.78rem;
  color: var(--primary-green);
  font-weight: 700;
}

/* VIDEO MODAL */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: #090D16;
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  position: relative;
  padding: 44px 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 15px; right: 22px;
  background: none;
  border: none;
  color: white;
  font-size: 2.2rem;
  cursor: pointer;
}

.demo-video-placeholder-inside {
  text-align: center;
  color: white;
  padding: 40px 20px;
}

.inside-badge {
  display: inline-block;
  background: rgba(37, 211, 102, 0.2);
  color: var(--primary-green);
  font-size: 0.825rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.demo-video-placeholder-inside h3 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.demo-video-placeholder-inside p {
  color: #94A3B8;
  margin-bottom: 26px;
}

/* RESPONSIVE DESIGN BREAKPOINTS & MOBILE OPTIMIZATIONS */

/* 1200px Desktop / Laptop */
@media (max-width: 1200px) {
  .hero-title { font-size: 3.2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .industry-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .ai-stats-grid { gap: 18px; }
}

/* 1024px Tablet / Small Laptop */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual-wrapper { margin-top: 20px; max-width: 100%; overflow: hidden; padding: 20px 0; }
  
  .float-card-1 { top: 20px; left: 10px; }
  .float-card-2 { bottom: 40px; right: 10px; }
  .float-card-3 { display: none; }
  
  .solution-wrapper { grid-template-columns: 1fr; gap: 45px; }
  .problem-visual-grid { grid-template-columns: 1fr; gap: 30px; }
  .steps-flow-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .step-arrow { display: none; }
  
  .ai-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .setup-content-grid { grid-template-columns: 1fr; gap: 35px; }
  .setup-card-wrapper { padding: 50px 35px; }
  .setup-badge-top { left: 35px; }
}

/* 768px Tablet / Phablet */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-title { font-size: 2.15rem; }
  .section-header { margin-bottom: 40px; }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #FFFFFF;
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-normal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1050;
  }

  .nav-menu.active { left: 0; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  
  .hero-section { padding: 130px 0 70px 0; }
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { width: 100%; }
  
  .phone-mockup { width: min(320px, 90vw); }
  .float-card-1, .float-card-2, .float-card-3 { display: none; }
  
  .problem-chaos-box {
    padding: 30px 16px;
    min-height: auto;
    flex-direction: column;
    gap: 16px;
  }
  
  .chaos-chip {
    position: static;
    transform: none !important;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
  }
  
  .pain-points-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ind-card { padding: 20px 14px; }
  .industry-footer-banner { flex-direction: column; text-align: center; padding: 30px 24px; }
  .ind-banner-text h3 { font-size: 1.25rem; }
  
  .comparison-container { grid-template-columns: 1fr; gap: 16px; }
  .comp-card { padding: 32px 24px; }
  .comp-vs-divider { margin: 10px auto; }
  
  .setup-card-wrapper { padding: 40px 24px; }
  .setup-badge-top { left: 50%; transform: translateX(-50%); white-space: nowrap; }
  .setup-title { font-size: 1.85rem; }
  .setup-price-box { padding: 30px 20px; }

  .featured-pricing { padding: 36px 24px; }
  .pricing-amount { font-size: 3.2rem; }
  .pricing-popular-tag { width: 90%; text-align: center; white-space: normal; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  
  .final-cta-section { padding: 80px 0; }
  .final-cta-title { font-size: 2.2rem; }
  .final-cta-sub { font-size: 1.05rem; }
  .offer-box { flex-direction: column; gap: 6px; padding: 12px 24px; border-radius: var(--radius-md); }
  .final-cta-buttons { flex-direction: column; width: 100%; }
  .final-cta-buttons .btn { width: 100%; }
  
  .mobile-sticky-bar { display: flex; z-index: 9999; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  body { padding-bottom: 75px; }
}

/* 480px Mobile Phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 1rem; }
  .offer-pill { font-size: 0.85rem; padding: 10px 16px; width: 100%; justify-content: center; }
  
  .pain-points-grid { grid-template-columns: 1fr; }
  .steps-flow-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ind-card { padding: 16px 10px; }
  .ind-card h3 { font-size: 0.95rem; }
  .ind-card p { font-size: 0.75rem; }
  
  .ai-stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .ai-stat-card { padding: 28px 18px; }
  .ai-stat-value { font-size: 2.6rem; }
  
  .interactive-chat-messages { padding: 14px; min-height: 300px; }
  .chat-window-header { padding: 14px; }
  
  .faq-question { padding: 16px 18px; font-size: 0.975rem; }
  .faq-answer p { font-size: 0.9rem; }
  .faq-item.active .faq-answer { padding: 0 18px 18px 18px; }
  
  .phone-mockup { width: 100%; border-width: 8px; border-radius: 32px; }
  .phone-chat-body { height: 380px; padding: 12px; }
  
  .featured-pricing { padding: 32px 16px; }
  .pricing-amount { font-size: 2.8rem; }
  .pricing-features-list li { font-size: 0.875rem; }
  
  .site-footer { padding: 40px 0 25px 0; }
  .footer-bottom { font-size: 0.8rem; }
}

/* 360px Small Mobile Phones */
@media (max-width: 360px) {
  .hero-title { font-size: 1.85rem; }
  .section-title { font-size: 1.75rem; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .industry-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WHATSWAY CHECKOUT PAGE STYLES
   ========================================================================== */

.checkout-page-body {
  background-color: var(--bg-light-gray);
  color: var(--charcoal-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.checkout-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.checkout-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.secure-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light-green);
  border: 1px solid var(--border-green);
  color: var(--deep-green);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.back-home-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.back-home-link:hover {
  color: var(--primary-green);
}

/* Main Layout */
.checkout-main-section {
  position: relative;
  padding: 48px 0 80px 0;
  flex: 1;
}

.checkout-bg-glow {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Left Column Info */
.checkout-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #DCFCE7;
  color: #047857;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.checkout-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--charcoal-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.checkout-main-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.benefits-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.benefits-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal-dark);
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefit-content strong {
  display: block;
  font-size: 0.975rem;
  color: var(--charcoal-dark);
  margin-bottom: 2px;
}

.benefit-content span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.checkout-trust-box {
  background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.rating-row .stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal-dark);
}

.trust-quote {
  font-size: 0.9rem;
  color: var(--charcoal-body);
  font-style: italic;
  line-height: 1.5;
}

/* Right Column Form Card */
.checkout-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

/* Plan Summary Card */
.plan-summary-card {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 28px;
}

.plan-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.plan-label-pill {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #047857;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 4px;
}

.plan-card-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--charcoal-dark);
}

.plan-price-display {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--deep-green);
}

.plan-price-display .currency {
  font-size: 1rem;
  font-weight: 700;
}

.plan-price-display .period {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.plan-setup-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--charcoal-body);
  padding-top: 4px;
}

.setup-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.setup-price {
  font-weight: 700;
  color: #047857;
}

.plan-divider {
  height: 1px;
  background: rgba(37, 211, 102, 0.3);
  margin: 12px 0;
}

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

.total-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal-dark);
}

.total-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--charcoal-dark);
}

/* Form Titles */
.form-card-title-group {
  margin-bottom: 24px;
}

.form-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--charcoal-dark);
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal-dark);
  margin-bottom: 8px;
}

.form-label .required {
  color: #EF4444;
}

.input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: #94A3B8;
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: color var(--transition-fast);
}

.form-control {
  width: 100%;
  padding: 12px 16px 12px 44px;
  font-size: 0.95rem;
  font-family: var(--font-family);
  color: var(--charcoal-dark);
  background-color: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  background-color: var(--bg-white);
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.15);
}

.input-container:focus-within .input-icon {
  color: var(--primary-green);
}

/* Phone input with country code */
.phone-input-group {
  display: flex;
}

.country-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background-color: #E2E8F0;
  border: 1px solid var(--border-light);
  border-right: none;
  border-top-left-radius: var(--radius-sm);
  border-bottom-left-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal-dark);
}

.phone-control {
  padding-left: 16px !important;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.field-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Radio Card Group */
.radio-card-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.radio-card {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #F8FAFC;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.radio-card:hover {
  background: var(--bg-white);
  border-color: #CBD5E1;
}

.radio-card input[type="radio"] {
  accent-color: var(--primary-green);
  width: 18px;
  height: 18px;
  margin-right: 12px;
  cursor: pointer;
}

.radio-card:has(input[type="radio"]:checked) {
  background: #F0FDF4;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.radio-card-content {
  display: flex;
  flex-direction: column;
}

.radio-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal-dark);
}

.radio-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Error States */
.form-group.has-error .form-control,
.form-group.has-error .radio-card-group {
  border-color: #EF4444 !important;
}

.form-group.has-error .form-control:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
}

.error-msg {
  font-size: 0.8rem;
  color: #EF4444;
  font-weight: 600;
  margin-top: 6px;
  display: none;
}

.error-msg.visible {
  display: block;
}

/* Form Alert Box */
.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.alert-success {
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  color: #15803D;
}

.alert-error {
  background: #FEE2E2;
  border: 1px solid #FCA5A5;
  color: #B91C1C;
}

/* Submit Button & Spinner */
.submit-btn {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #FFFFFF;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-security-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.security-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--charcoal-body);
}

.payment-methods-strip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.pay-badge {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--charcoal-body);
}

.checkout-footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* RESPONSIVE CHECKOUT BREAKPOINTS */
@media (max-width: 991px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .checkout-form-col {
    order: 1;
  }

  .checkout-info-col {
    order: 2;
  }

  .checkout-main-title {
    font-size: 2.1rem;
  }
  
  .checkout-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .checkout-main-section {
    padding: 24px 0 60px 0;
  }
  
  .secure-badge span {
    display: none;
  }
  
  .checkout-main-title {
    font-size: 1.85rem;
  }
  
  .benefits-card {
    padding: 20px;
  }
  
  .radio-card-group {
    grid-template-columns: 1fr;
  }
}



