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

:root {
  /* Color Palette */
  --bg-dark: #030712;
  --bg-dark-gray: #0b0f19;
  --panel-glass: rgba(17, 24, 39, 0.65);
  --panel-glass-light: rgba(31, 41, 55, 0.45);
  
  --ink-primary: #f9fafb;
  --ink-secondary: #d1d5db;
  --ink-muted: #9ca3af;
  --ink-muted-dark: #6b7280;

  --color-blue-bright: #3d8bff;
  --color-blue-dark: #1e6bff;
  --color-green-bright: #37d399;
  --color-green-dark: #10b981;
  --color-purple-bright: #a78bfa;
  --color-purple-dark: #7c3aed;
  --color-orange-bright: #f97316;

  /* Layout and Styling Tokens */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.16);
  --shadow-glow-blue: 0 0 30px rgba(30, 107, 255, 0.25);
  --shadow-glow-green: 0 0 30px rgba(16, 185, 129, 0.2);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--ink-secondary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--ink-primary);
  letter-spacing: -0.02em;
}

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

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

/* Background Animated Orbs */
.background-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(61, 139, 255, 0.4) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: floatOrb1 18s infinite alternate ease-in-out;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
  animation: floatOrb2 22s infinite alternate ease-in-out;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(55, 211, 153, 0.25) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: floatOrb3 20s infinite alternate ease-in-out;
}

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

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1.1); }
  100% { transform: translate(100px, -60px) scale(0.9); }
}

@keyframes floatOrb3 {
  0% { transform: translate(0, 0) scale(0.9); }
  100% { transform: translate(50px, 50px) scale(1.2); }
}

/* Custom Grid Texture Overlay */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

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

/* Nav Bar styles */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(3, 7, 18, 0.75);
  border-bottom: 1px solid var(--border-glass);
}

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

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

.logo-icon {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--ink-primary) 30%, var(--ink-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-secondary);
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--color-blue-bright);
}

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-blue-bright), var(--color-blue-dark));
  color: #fff;
  box-shadow: var(--shadow-glow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 107, 255, 0.45);
}

.btn-green {
  background: linear-gradient(135deg, var(--color-green-bright), var(--color-green-dark));
  color: #fff;
  box-shadow: var(--shadow-glow-green);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
  background: var(--panel-glass-light);
  color: var(--ink-primary);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(61, 139, 255, 0.1);
  border: 1px solid rgba(61, 139, 255, 0.2);
  color: var(--color-blue-bright);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 30px;
  animation: pulseBadge 3s infinite alternate;
}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  100% { transform: scale(1.03); }
}

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

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 1.05;
  max-width: 16ch;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #fff 40%, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-blue-bright), var(--color-purple-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink-secondary);
  max-width: 62ch;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-bullets {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14.5px;
  color: var(--ink-muted);
}

.hero-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-bullets span::before {
  content: '✓';
  color: var(--color-green-bright);
  font-weight: bold;
}

/* SMS Interactive Simulator */
.simulator-section {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.phone-mockup {
  background: linear-gradient(180deg, rgba(21, 25, 35, 0.8), rgba(11, 15, 25, 0.95));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-notch {
  width: 120px;
  height: 24px;
  background-color: var(--bg-dark);
  border-radius: 100px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-status {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 500;
}

.phone-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue-bright), var(--color-blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-name {
  font-size: 11px;
  color: var(--ink-primary);
  font-weight: 600;
}

.chat-screen {
  background-color: #050811;
  border-radius: var(--radius-lg);
  height: 480px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Chat Bubbles */
.chat-bubble {
  max-width: 80%;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  line-height: 1.5;
  animation: scaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transform-origin: bottom right;
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bubble-user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--color-blue-bright), var(--color-blue-dark));
  color: #fff;
  border-bottom-right-radius: 4px;
}

.bubble-agent {
  align-self: flex-start;
  background: var(--panel-glass);
  border: 1px solid var(--border-glass);
  color: var(--ink-secondary);
  border-bottom-left-radius: 4px;
}

.bubble-agent strong {
  color: var(--color-blue-bright);
}

.bubble-image {
  align-self: flex-end;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
}

.bubble-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(55, 211, 153, 0.1);
  border: 1px solid rgba(55, 211, 153, 0.2);
  color: var(--color-green-bright);
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: none; }
}

.typing-indicator {
  align-self: flex-start;
  background: var(--panel-glass-light);
  border: 1px solid var(--border-glass);
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  display: none;
  align-items: center;
  gap: 5px;
}

.typing-dot {
  width: 7px;
  height: 7px;
  background-color: var(--ink-muted);
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
}

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

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

/* Simulator Interactive Controls */
.simulator-controls {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  position: relative;
}

.input-container {
  flex: 1;
  position: relative;
}

.simulator-input {
  width: 100%;
  background: rgba(11, 15, 25, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 15px 18px;
  color: var(--ink-primary);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s ease;
}

.simulator-input:focus {
  border-color: var(--color-blue-bright);
}

.preset-prompts {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.preset-chip {
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--panel-glass-light);
  border: 1px solid var(--border-glass);
  color: var(--ink-muted);
  font-size: 12.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preset-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-glass-hover);
  color: var(--ink-primary);
}

/* Proof Section */
.proof-section {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(17, 24, 39, 0.2);
}

.proof-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.logo-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  background: var(--panel-glass);
  border: 1px solid var(--border-glass);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-secondary);
}

.logo-item .icon {
  font-size: 18px;
}

/* General Layout sections */
section {
  padding: 90px 0;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-blue-bright);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 58ch;
  margin-bottom: 50px;
}

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

.text-center h2, .text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* Reseller Calculator (ROI) Section */
.calculator-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: var(--panel-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-glow-blue);
  align-items: center;
}

@media (max-width: 900px) {
  .calculator-container {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

.calc-sliders {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-primary);
}

.slider-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-blue-bright);
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: #111827;
  height: 8px;
  border-radius: 100px;
  outline: none;
  border: 1px solid var(--border-glass);
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-blue-bright);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(61, 139, 255, 0.5);
  transition: transform 0.1s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-results {
  background: rgba(11, 15, 25, 0.7);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  padding: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.result-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result-card .lbl {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

.result-card .val {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 54px);
  color: var(--color-green-bright);
  line-height: 1;
}

.result-card .val.val-hours {
  color: var(--color-blue-bright);
}

.calc-note {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

.feature-card {
  background: var(--panel-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(61, 139, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(61, 139, 255, 0.05);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(61, 139, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-blue-bright);
  margin-bottom: 20px;
  border: 1px solid rgba(61, 139, 255, 0.15);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Interactive Pricing Switcher */
.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--panel-glass);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  padding: 6px;
}

.toggle-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-muted);
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--color-blue-bright), var(--color-blue-dark));
  color: #fff;
}

.discount-badge {
  font-size: 11px;
  background: rgba(55, 211, 153, 0.15);
  border: 1px solid rgba(55, 211, 153, 0.3);
  color: var(--color-green-bright);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 950px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.pricing-card {
  background: var(--panel-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--color-blue-bright);
  background: linear-gradient(180deg, rgba(30, 107, 255, 0.08) 0%, rgba(11, 15, 25, 0.6) 100%);
  box-shadow: var(--shadow-glow-blue);
  transform: scale(1.03);
  z-index: 10;
}

@media (max-width: 950px) {
  .pricing-card.featured {
    transform: none;
  }
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--color-blue-bright), var(--color-purple-bright));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(30, 107, 255, 0.3);
}

.plan-name {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.pricing-card.featured .plan-name {
  color: var(--color-blue-bright);
}

.plan-description {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.plan-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.plan-currency {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink-primary);
}

.plan-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 54px;
  color: var(--ink-primary);
  line-height: 1;
}

.plan-duration {
  font-size: 15px;
  color: var(--ink-muted);
}

.plan-overage-note {
  font-size: 13.5px;
  color: var(--color-green-bright);
  font-weight: 600;
  min-height: 20px;
  margin-bottom: 24px;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features-list li {
  font-size: 14.5px;
  color: var(--ink-secondary);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pricing-features-list li::before {
  content: '✓';
  color: var(--color-blue-bright);
  font-weight: bold;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features-list li::before {
  color: var(--color-purple-bright);
}

/* Pricing bottom text */
.pricing-bottom-info {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-muted);
}

.pricing-bottom-info b {
  color: var(--ink-primary);
}

/* Testimonial slider */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonials-viewport {
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: var(--panel-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-glow-blue);
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.6;
  font-weight: 500;
  color: var(--ink-primary);
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue-bright), var(--color-purple-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}

.author-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-primary);
}

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

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-glass-hover);
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.slider-dot.active {
  background-color: var(--color-blue-bright);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--panel-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item:hover {
  border-color: var(--border-glass-hover);
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  text-align: left;
}

.faq-question-btn h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-primary);
}

.faq-icon {
  font-size: 20px;
  color: var(--color-blue-bright);
  transition: transform 0.25s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 24px;
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 24px 24px;
}

/* CTA Band */
.cta-band {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(180deg, rgba(30, 107, 255, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(61, 139, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  box-shadow: var(--shadow-glow-blue);
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 139, 255, 0.3), transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.cta-box-content {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-box p {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 50ch;
  margin: 0 auto 30px;
}

.sms-disclaimer {
  font-size: 12px;
  color: var(--ink-muted-dark);
  max-width: 60ch;
  margin: 20px auto 0;
  line-height: 1.5;
}

.sms-disclaimer a {
  color: var(--ink-muted);
  text-decoration: underline;
}

/* Footer Section */
footer {
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 80px;
  background: rgba(3, 7, 18, 0.9);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

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

.footer-links a {
  font-size: 14.5px;
  color: var(--ink-muted);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--color-blue-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  font-size: 13px;
  color: var(--ink-muted-dark);
  line-height: 1.6;
}

.footer-bottom a {
  color: var(--ink-muted);
  text-decoration: underline;
}

/* Audience Switcher Link in Nav */
.audience-switcher {
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.25);
  color: var(--color-purple-bright) !important;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.audience-switcher:hover {
  background: rgba(167, 139, 250, 0.2);
  border-color: rgba(167, 139, 250, 0.4);
  transform: translateY(-1px);
}

