/* ============================================
   OMNEAXA — WhatsApp SaaS Landing Page
   ============================================ */

:root {
  --primary: #0B5FFF;
  --primary-dark: #0949CC;
  --secondary: #00C2A8;
  --secondary-dark: #00A38D;
  --accent-gradient: linear-gradient(135deg, #0B5FFF, #6A5BFF);
  --accent-gradient-hover: linear-gradient(135deg, #0949CC, #5A4BEE);
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  --card-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 4px 14px rgba(15, 23, 42, 0.06);
  --card-shadow-hover: 0 4px 12px rgba(15, 23, 42, 0.06), 0 12px 28px rgba(15, 23, 42, 0.1);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(11, 95, 255, 0.15);
  color: var(--text-dark);
}

img { max-width: 100%; height: auto; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(11, 95, 255, 0.08);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(11, 95, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-gradient-hover);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 95, 255, 0.4);
  color: #fff;
}

.btn-primary-gradient:hover::before {
  opacity: 1;
}

.btn-primary-gradient span,
.btn-primary-gradient i {
  position: relative;
  z-index: 1;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-light:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 95, 255, 0.08);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-omneaxa {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  padding: 12px 0;
  transition: var(--transition);
  z-index: 1050;
}

.navbar-omneaxa.scrolled {
  box-shadow: 0 1px 12px rgba(15, 23, 42, 0.06);
}

.navbar-brand-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark) !important;
  text-decoration: none;
}

.navbar-brand-logo .brand-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent-gradient);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: super;
}

.navbar-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-left: 14px;
  white-space: nowrap;
}

.navbar-omneaxa .nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.925rem;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-omneaxa .nav-link:hover,
.navbar-omneaxa .nav-link.active {
  color: var(--primary) !important;
  background: rgba(11, 95, 255, 0.05);
}

.navbar-omneaxa .navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-omneaxa .navbar-toggler:focus {
  box-shadow: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  padding: 120px 0 80px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(11, 95, 255, 0.08);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(11, 95, 255, 0.12);
}

.hero-badge i {
  font-size: 0.8rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-title .gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ai-tagline {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 12px;
  animation: aiTaglinePulse 5s ease-in-out infinite;
}

.hero-ai-tagline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 520px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(11, 95, 255, 0.1), rgba(11, 95, 255, 0.95), rgba(0, 194, 168, 0.95), rgba(11, 95, 255, 0.1));
  background-size: 200% 100%;
  animation: aiTaglineSweep 2.8s linear infinite;
}

.hero-subtitle-secondary {
  margin-top: 8px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero Illustration */
.hero-illustration {
  position: relative;
  z-index: 2;
}

.chat-mockup {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.04),
    0 12px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.chat-header {
  background: #075E54;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.chat-header-info h6 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.chat-header-info small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.chat-body {
  padding: 18px;
  background: #ECE5DD;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
  position: relative;
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
}

.chat-msg:nth-child(1) { animation-delay: 0.2s; }
.chat-msg:nth-child(2) { animation-delay: 0.5s; }
.chat-msg:nth-child(3) { animation-delay: 0.8s; }
.chat-msg:nth-child(4) { animation-delay: 1.1s; }
.chat-msg:nth-child(5) { animation-delay: 1.4s; }

.chat-msg-received {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--text-dark);
}

.chat-msg-sent {
  background: #DCF8C6;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: var(--text-dark);
}

.chat-msg .msg-time {
  font-size: 0.7rem;
  color: var(--text-light);
  text-align: right;
  margin-top: 4px;
}

.chat-msg-bot {
  background: #fff;
  align-self: flex-start;
  border: 1px solid rgba(11, 95, 255, 0.15);
  border-bottom-left-radius: 4px;
}

.chat-msg-bot .bot-label {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.chat-quick-replies {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.chat-quick-reply {
  padding: 6px 12px;
  background: rgba(11, 95, 255, 0.08);
  border: 1px solid rgba(11, 95, 255, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 100px 0;
  background: #fff;
}

.feature-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(11, 95, 255, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
}

.feature-icon.icon-blue {
  background: rgba(11, 95, 255, 0.1);
  color: var(--primary);
}

.feature-icon.icon-teal {
  background: rgba(0, 194, 168, 0.1);
  color: var(--secondary);
}

.feature-icon.icon-purple {
  background: rgba(106, 91, 255, 0.1);
  color: #6A5BFF;
}

.feature-icon.icon-orange {
  background: rgba(255, 122, 0, 0.1);
  color: #FF7A00;
}

.feature-icon.icon-pink {
  background: rgba(236, 72, 153, 0.1);
  color: #EC4899;
}

.feature-icon.icon-green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.feature-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(11, 95, 255, 0.25);
}

.step-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 70px;
  right: -40px;
  width: 80px;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
}

/* ============================================
   DEMO CHAT SECTION
   ============================================ */
.demo-section {
  padding: 100px 0;
  background: #fff;
}

.demo-phone {
  background: #fff;
  border-radius: 32px;
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.04),
    0 20px 50px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
  border: 6px solid #1a1a2e;
}

.demo-phone .chat-body {
  min-height: 340px;
}

/* ============================================
   AI USE CASE VISUALS
   ============================================ */
.use-cases-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.use-case-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--card-shadow);
}

.use-case-copy h4 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.use-case-list {
  padding-left: 20px;
  margin: 0;
}

.use-case-list li {
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.6;
}

.use-case-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.visual-frame {
  min-height: 260px;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.85);
  background: linear-gradient(160deg, #f9fbff, #edf3ff);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visual-frame-two {
  background: linear-gradient(160deg, #f5fffb, #ecfaf4);
}

.visual-chat {
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.7);
}

.visual-chat-light {
  background: #fff;
  color: var(--text-dark);
}

.visual-chat-success,
.visual-chat-green {
  background: #dff7e8;
  border-color: #b9e8cb;
  color: #14532d;
}

.visual-chat-map {
  position: relative;
  min-height: 90px;
  background: linear-gradient(135deg, #fde68a, #bfdbfe 45%, #86efac);
  overflow: hidden;
}

.map-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 42px;
  height: 6px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.75);
}

.map-pin {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #ef4444;
}

.map-pin::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 95, 255, 0.1);
  color: var(--primary);
  border: 1px solid rgba(11, 95, 255, 0.2);
  border-radius: 100px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  max-width: fit-content;
}

.chip-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.visual-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  max-width: 160px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  border: 1px solid rgba(11, 95, 255, 0.2);
  transition: var(--transition);
}

.visual-link:hover {
  color: #fff;
  background: var(--primary);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
  padding: 100px 0;
  background: #fff;
}

.blog-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.blog-card-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(11, 95, 255, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h5 {
  font-size: 1.14rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.blog-card p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.blog-read-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-read-link:hover {
  color: var(--primary-dark);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.contact-info-card,
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  box-shadow: var(--card-shadow);
}

.contact-info-card h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.contact-info-card > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.contact-detail-item i {
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 2px;
}

.contact-detail-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.contact-detail-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.contact-form-card .form-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-form-card .form-control {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-form-card .form-control:focus {
  border-color: rgba(11, 95, 255, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(11, 95, 255, 0.12);
}

.contact-form-note {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.benefit-icon.bi-green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.benefit-icon.bi-blue {
  background: rgba(11, 95, 255, 0.1);
  color: var(--primary);
}

.benefit-icon.bi-purple {
  background: rgba(106, 91, 255, 0.1);
  color: #6A5BFF;
}

.benefit-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
  margin: 0;
}

.benefit-stat {
  font-size: 2.25rem;
  font-weight: 800;
  margin-top: 16px;
  letter-spacing: -0.02em;
}

.benefit-stat.stat-green { color: #10B981; }
.benefit-stat.stat-blue { color: var(--primary); }
.benefit-stat.stat-purple { color: #6A5BFF; }

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: 100px 0;
  background: #fff;
}

.pricing-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.pricing-card.popular {
  background: #fff;
  border: 2px solid var(--primary);
  box-shadow: var(--card-shadow-hover);
  transform: scale(1.02);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #fff;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 0.925rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.pricing-btn-gradient {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(11, 95, 255, 0.3);
}

.pricing-btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 95, 255, 0.4);
  color: #fff;
}

.pricing-btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.pricing-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-size: 0.975rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author-info h6 {
  margin: 0;
  font-size: 0.925rem;
  font-weight: 700;
}

.testimonial-author-info small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(11, 95, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(106, 91, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #fff;
  color: var(--text-dark);
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
  background: var(--text-dark);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand h5 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-tagline {
  display: inline-block;
  margin-top: 4px;
  padding: 5px 10px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: fit-content;
}

.footer-heading {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 48px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes aiTaglineSweep {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes aiTaglinePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .step-connector {
    display: none;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .contact-info-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ai-tagline::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-stat {
    text-align: center;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .use-case-card,
  .contact-info-card,
  .contact-form-card {
    padding: 22px;
  }

  .pricing-price {
    font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .btn-primary-gradient,
  .btn-outline-light {
    padding: 12px 24px;
    font-size: 0.925rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
}
