/* ============================================================
   BulkSend v1.1 - Main Stylesheet
   Company: JAAN Network Pvt Ltd
   ============================================================ */

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

/* --- CSS Variables (Dark Theme Default) --- */
:root {
  --primary:        #25D366;
  --primary-dark:   #128C7E;
  --primary-light:  #dcffe4;
  --secondary:      #075E54;
  --accent:         #FFD700;
  --bg-body:        #0d1117;
  --bg-section:     #111827;
  --bg-card:        #1a2332;
  --bg-card-hover:  #1e2a3e;
  --text-primary:   #f0f6fc;
  --text-secondary: #8b949e;
  --text-muted:     #6e7681;
  --border-color:   rgba(37,211,102,0.15);
  --gradient-main:  linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
  --gradient-dark:  linear-gradient(135deg, #0d1117 0%, #111827 100%);
  --gradient-card:  linear-gradient(145deg, #1a2332 0%, #1e2a3e 100%);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:      0 8px 30px rgba(0,0,0,0.4);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.5);
  --shadow-green:   0 8px 30px rgba(37,211,102,0.25);
  --shadow-hover:   0 20px 60px rgba(37,211,102,0.3);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main:     'Poppins', sans-serif;
  --font-body:     'Inter', sans-serif;
  --navbar-height:  80px;
}

/* --- Light Theme Variables --- */
[data-theme="light"] {
  --bg-body:        #f0f4f8;
  --bg-section:     #ffffff;
  --bg-card:        #ffffff;
  --bg-card-hover:  #f8fbff;
  --text-primary:   #0d1117;
  --text-secondary: #374151;
  --text-muted:     #6b7280;
  --border-color:   rgba(37,211,102,0.2);
  --gradient-dark:  linear-gradient(135deg, #f0f4f8 0%, #e8f5e9 100%);
  --gradient-card:  linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.15);
  --shadow-green:   0 8px 30px rgba(37,211,102,0.2);
}

/* ============================================================
   BASE STYLES
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.7;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

p { color: var(--text-secondary); margin-bottom: 1rem; }

section { padding: 80px 0; }

/* ============================================================
   LOADER / PRELOADER
   ============================================================ */

#page-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

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

/* Preloader logo image (small and centered) */
.loader-logo-img {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}

.loader-logo {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
  width: 50px; height: 50px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  height: var(--navbar-height);
  background: var(--bg-section);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
  padding: 10px 0 !important;
}

[data-theme="light"] .navbar {
  background: rgba(255,255,255,0.95) !important;
  border-bottom: 1px solid rgba(37,211,102,0.2);
}

.navbar.scrolled {
  box-shadow: var(--shadow-green);
}

.navbar-brand {
  display: flex;
  align-items: center;
 
}

/* Logo image in navbar */
.navbar-logo {
  height: 60px;
  width: auto; 
  display: block;
  transition: var(--transition); 
}

 

/* Logo image in footer */
.footer-logo-img {
  height: 90px;
  width: auto;
  
  display: block;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Keep old brand classes as fallback if needed */
.brand-icon {
  width: 38px; height: 38px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  box-shadow: var(--shadow-green);
  flex-shrink: 0;
}

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

.brand-version {
  font-size: 0.6rem;
  background: var(--gradient-main);
  color: white;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
  vertical-align: super;
  margin-left: 2px;
}

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gradient-main);
  border-radius: 1px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: rgba(37,211,102,0.08);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-toggler {
  border: 1px solid var(--border-color);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  filter: brightness(0) saturate(100%) invert(71%) sepia(52%) saturate(500%) hue-rotate(95deg) brightness(95%) contrast(90%);
}

/* Theme toggle & CTA in navbar */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
}

.theme-toggle:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(20deg);
}

.btn-nav-cta {
  background: var(--gradient-main);
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 25px !important;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  box-shadow: var(--shadow-green);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: white !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  font-family: var(--font-main);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before { width: 300px; height: 300px; }

.btn-primary-custom {
  background: var(--gradient-main);
  color: white;
  box-shadow: var(--shadow-green);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: white;
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

.btn-white {
  background: white;
  color: var(--primary-dark);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-dark);
}

.btn-lg { padding: 15px 40px; font-size: 1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-header { margin-bottom: 60px; text-align: center; }

.section-badge {
  display: inline-block;
  background: rgba(37,211,102,0.12);
  color: var(--primary);
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(37,211,102,0.2);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.divider {
  width: 60px; height: 4px;
  background: var(--gradient-main);
  border-radius: 2px;
  margin: 16px auto;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
  min-height: 100vh;
  background: var(--bg-body);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37,211,102,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(18,140,126,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(7,94,84,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,211,102,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,211,102,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero-badge .badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

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

.hero-stat-number {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  background: var(--border-color);
  margin: 4px 0;
}

/* Hero image/mockup area */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.4s both;
}

.hero-mockup-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.hero-mockup-bar {
  background: rgba(37,211,102,0.1);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-color);
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.mockup-dot.red   { background: #ff5f56; }
.mockup-dot.yellow{ background: #ffbd2e; }
.mockup-dot.green { background: var(--primary); }

.hero-mockup-content {
  padding: 20px;
}

.dashboard-card {
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  margin-bottom: 10px;
}

.dashboard-stat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.stat-item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.stat-item .stat-num {
  display: block;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
}

.stat-item .stat-lbl {
  font-size: 0.6rem;
  color: var(--text-muted);
}

/* Floating feature badges on hero */
.floating-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}

.floating-badge .badge-icon {
  width: 32px; height: 32px;
  background: var(--gradient-main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.floating-badge-1 { top: 10%; right: -10%; animation-delay: 0s; }
.floating-badge-2 { bottom: 20%; left: -12%; animation-delay: 1.5s; }
.floating-badge-3 { top: 50%; right: -8%; animation-delay: 1s; }

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

/* ============================================================
   COUNTER / STATS SECTION
   ============================================================ */

.stats-section {
  padding: 60px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(37,211,102,0.05) 0%, transparent 70%);
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.stat-card .counter-number {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .counter-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-card .counter-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  opacity: 0.7;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features-section {
  background: var(--bg-body);
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37,211,102,0.4);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 60px; height: 60px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-green);
  transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

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

/* ============================================================
   SERVICES SECTION / CARDS
   ============================================================ */

.services-section { background: var(--bg-section); }

.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition-slow);
  z-index: 0;
  border-radius: var(--radius-lg);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::after { opacity: 0.05; }

.service-card > * { position: relative; z-index: 1; }

.service-number {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(37,211,102,0.1);
  line-height: 1;
  margin-bottom: 16px;
}

.service-icon {
  width: 70px; height: 70px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 24px;
  box-shadow: var(--shadow-green);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-hover);
}

.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; color: var(--text-secondary); }

.service-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color);
}

.service-list li:last-child { border: none; }

.service-list li i {
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */

.pricing-section { background: var(--bg-body); }

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.pricing-toggle-label {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 8px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  white-space: nowrap;
}

.pricing-toggle-label:hover {
  color: var(--primary);
  background: rgba(37,211,102,0.08);
}

.pricing-toggle-label.active {
  color: white;
  background: var(--gradient-main);
  box-shadow: var(--shadow-green);
}

.save-badge {
  background: rgba(255,215,0,0.15);
  color: var(--accent);
  border: 1px solid rgba(255,215,0,0.3);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  display: block;
  width: fit-content;
  margin: 10px auto 0;
}

.pricing-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(145deg, rgba(37,211,102,0.08) 0%, var(--bg-card) 100%);
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37,211,102,0.5);
}

.pricing-card.featured:hover { transform: scale(1.03) translateY(-8px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: white;
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-green);
  white-space: nowrap;
}

.pricing-plan-name {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pricing-price {
  margin-bottom: 8px;
}

.pricing-currency {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  vertical-align: top;
  line-height: 2;
}

.pricing-amount {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 12px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(37,211,102,0.05);
}

.pricing-features li:last-child { border: none; }

.pricing-features li i.fa-check {
  width: 18px; height: 18px;
  background: rgba(37,211,102,0.12);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.pricing-features li i.fa-times {
  width: 18px; height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  text-align: center;
}

.pricing-features li.disabled { opacity: 0.4; text-decoration: line-through; }

/* ============================================================
   TESTIMONIALS / FEEDBACK
   ============================================================ */

.testimonials-section { background: var(--bg-section); }

.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37,211,102,0.3);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

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

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid rgba(37,211,102,0.3);
}

.testimonial-author-info .name {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
  margin: 0;
}

.testimonial-author-info .role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Carousel customization */
.carousel-indicators [data-bs-target] {
  width: 8px; height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  border: none;
  opacity: 1;
  transition: var(--transition);
}

.carousel-indicators .active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */

.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
}

.process-step-number {
  width: 60px; height: 60px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-green);
  position: relative;
  z-index: 1;
}

.process-connector {
  position: absolute;
  top: 50px;
  right: -30%;
  width: 60%;
  height: 2px;
  background: var(--border-color);
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

.process-step h5 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section { background: var(--bg-body); }

.accordion-item {
  background: var(--gradient-card) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header .accordion-button {
  background: transparent !important;
  color: var(--text-primary) !important;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 20px 24px;
  border: none;
  box-shadow: none !important;
  gap: 12px;
}

.accordion-button::after {
  filter: invert(60%) sepia(80%) saturate(400%) hue-rotate(95deg);
}

.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
}

.accordion-body {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================================
   TIMELINE
   ============================================================ */

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 30px);
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 30px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  width: 16px; height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--bg-body);
  box-shadow: var(--shadow-green);
  z-index: 1;
}

.timeline-content {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  max-width: 400px;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: rgba(37,211,102,0.4);
  box-shadow: var(--shadow-green);
}

.timeline-date {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.timeline-content h5 { font-size: 1rem; margin-bottom: 8px; }
.timeline-content p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }

/* ============================================================
   TEAM SECTION
   ============================================================ */

.team-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37,211,102,0.4);
}

.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  border: 3px solid rgba(37,211,102,0.3);
  box-shadow: var(--shadow-green);
}

.team-card h5 { font-size: 1.05rem; margin-bottom: 6px; }

.team-role {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.team-social { display: flex; gap: 8px; justify-content: center; }

.team-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.why-item:hover {
  border-color: rgba(37,211,102,0.4);
  box-shadow: var(--shadow-green);
  transform: translateX(6px);
}

.why-icon {
  width: 50px; height: 50px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-item:hover .why-icon {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
}

.why-content h5 { font-size: 1rem; margin-bottom: 6px; }
.why-content p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section { background: var(--bg-body); }

.contact-form-wrapper {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-label {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control, .form-select {
  background: var(--bg-section) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.15) !important;
  background: var(--bg-card) !important;
}

.form-control::placeholder { color: var(--text-muted) !important; }

textarea.form-control { resize: vertical; min-height: 120px; }

.contact-info-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  align-items: flex-start;
}

.contact-info-item:last-of-type { border: none; margin: 0; padding: 0; }

.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h6 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 500;
}

.contact-info-text a:hover { color: var(--primary); }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  display: block;
  filter: grayscale(30%) contrast(1.1);
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */

.newsletter-section {
  background: var(--bg-section);
  border-top: 1px solid var(--border-color);
}

.newsletter-wrapper {
  background: var(--gradient-main);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.newsletter-wrapper > * { position: relative; z-index: 1; }

.newsletter-wrapper h2, .newsletter-wrapper p { color: white; }

.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.newsletter-input-group .form-control {
  background: white !important;
  border: none !important;
  color: #333 !important;
  border-radius: 50px 0 0 50px !important;
  padding: 14px 24px !important;
}

.newsletter-input-group .form-control::placeholder { color: #999 !important; }

.newsletter-input-group .btn {
  border-radius: 0 50px 50px 0 !important;
  background: var(--secondary) !important;
  color: white;
  padding: 14px 28px;
  font-weight: 700;
  white-space: nowrap;
  border: none;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: var(--bg-body);
  text-align: center;
  padding: 100px 0;
}

.cta-wrapper {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(37,211,102,0.08) 0%, transparent 70%);
}

.cta-wrapper > * { position: relative; z-index: 1; }

/* ============================================================
   PAGE HEADER
   ============================================================ */

.page-header {
  background: var(--bg-section);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  margin-top: var(--navbar-height);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37,211,102,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(18,140,126,0.06) 0%, transparent 60%);
}

.page-header > .container { position: relative; z-index: 1; }

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item { font-size: 0.88rem; color: var(--text-muted); }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-secondary); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border-color);
  padding: 70px 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 42px; height: 42px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: var(--shadow-green);
}

.footer-logo-text {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
}

.footer-logo-text span { color: var(--primary); }

/* Footer brand row reset when using image */
.footer-brand { display: block; }

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer h6 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-links a:hover::before { width: 12px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0; margin: 0;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================================
   NAV ICON (used in header.html nav links)
   ============================================================ */

.nav-icon {
  font-size: 0.75rem;
  margin-right: 4px;
  opacity: 0.7;
}

/* ============================================================
   PRICING PER-MONTH EFFECTIVE RATE
   ============================================================ */

.pricing-per-month {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  min-height: 18px;
}

/* ============================================================
   FOOTER EXTENDED CLASSES (used in footer.html)
   ============================================================ */

.footer-heading {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.footer-address {
  font-style: normal;
}

.footer-nl-form {
  margin-top: 8px;
}

.footer-nl-group {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}

.footer-nl-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: var(--text-primary) !important;
  font-size: 0.85rem;
  padding: 10px 14px !important;
  box-shadow: none !important;
}

.footer-nl-input::placeholder { color: var(--text-muted); }

.footer-nl-btn {
  flex-shrink: 0;
  background: var(--gradient-main);
  color: white;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-nl-btn:hover {
  opacity: 0.85;
  transform: translateX(2px);
}

.footer-newsletter { margin-top: 20px; }

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px; height: 46px;
  background: var(--gradient-main);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: var(--shadow-green);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* ============================================================
   RATING STARS
   ============================================================ */

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

.rating-stars { color: var(--accent); letter-spacing: 2px; }

.rating-score {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.rating-count { font-size: 0.82rem; color: var(--text-muted); }

/* Success story cards */
.success-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition);
}

.success-card:hover {
  border-color: rgba(37,211,102,0.4);
  box-shadow: var(--shadow-hover);
  transform: translateX(6px);
}

.success-icon {
  width: 60px; height: 60px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
}

.success-metric {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */

.comparison-table {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table table {
  width: 100%;
  margin: 0;
}

.comparison-table th {
  background: rgba(37,211,102,0.08);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table td {
  padding: 14px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

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

.comparison-table tr:hover td {
  background: rgba(37,211,102,0.03);
}

.check-yes { color: var(--primary); }
.check-no  { color: var(--text-muted); opacity: 0.5; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-glass {
  background: rgba(37,211,102,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.green-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.5s infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 10px;
  }

  .navbar-actions { margin-top: 12px; width: 100%; justify-content: space-between; }

  .hero-section { min-height: auto; padding: 120px 0 60px; }
  .hero-visual { margin-top: 50px; }
  .floating-badge { display: none; }

  .timeline::before { left: 20px; }
  .timeline-item { padding-right: 0; padding-left: 50px; justify-content: flex-start; }
  .timeline-item:nth-child(even) { padding-left: 50px; }
  .timeline-dot { left: 20px; }
  .process-connector { display: none; }

  section { padding: 60px 0; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 767.98px) {
  .hero-stats { gap: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .newsletter-input-group { flex-direction: column; border-radius: var(--radius-md); }
  .newsletter-input-group .form-control { border-radius: var(--radius-md) !important; }
  .newsletter-input-group .btn { border-radius: var(--radius-md) !important; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-wrapper, .newsletter-wrapper { padding: 40px 24px; }
  .contact-form-wrapper { padding: 24px; }
  .contact-info-card { padding: 24px; }
  .dashboard-stat { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 1.9rem; }
}
