/**
 * TrafficsOne Main Styling
 * Theme: Dark (#050816), Glassmorphism, Blue/Cyan Gradients, Purple Glows
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg-dark: #050816;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-active: rgba(34, 211, 238, 0.5);
  
  --primary-cyan: #22d3ee;
  --primary-blue: #2563eb;
  --primary-purple: #9333ea;
  --accent-green: #34d399;
  
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Canvas & Background Atmosphere Glows */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(120px);
}

.bg-glow-top-left {
  top: -10%;
  left: -10%;
  width: 45vw;
  height: 45vw;
  background: rgba(37, 99, 235, 0.18);
}

.bg-glow-bottom-right {
  bottom: -10%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  background: rgba(147, 51, 234, 0.18);
}

.bg-glow-top-right {
  top: 20%;
  right: 10%;
  width: 35vw;
  height: 35vw;
  background: rgba(34, 211, 238, 0.1);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Gradient Text */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  color: #ffffff;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #22d3ee 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(34, 211, 238, 0.15);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
  color: #050816;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.5);
  background: linear-gradient(135deg, #38ef7d 0%, var(--primary-cyan) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

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

.btn-large {
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
}

/* Disabled state for unavailable plans (10K / 50K) */
.btn-disabled,
.btn-primary.btn-disabled,
button:disabled.btn-disabled {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #94a3b8 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  opacity: 0.65 !important;
  transform: none !important;
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: var(--primary-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulseDot 2s infinite;
}

/* Header & Navbar */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  padding: 12px 0;
  background: rgba(5, 8, 22, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 160px 0 100px 0;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-container {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  position: relative;
}

#globe-canvas {
  width: 100%;
  height: 100%;
}

/* Floating Hero Stat Cards */
.hero-stat-card {
  position: absolute;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: rgba(13, 22, 45, 0.8);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.card-top-left {
  top: 10%;
  left: -5%;
  animation: floatUp 6s ease-in-out infinite;
}

.card-bottom-right {
  bottom: 12%;
  right: -5%;
  animation: floatDown 7s ease-in-out infinite;
}

.card-top-right {
  top: 18%;
  right: -8%;
  animation: floatUp 8s ease-in-out infinite;
}

.stat-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 242, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
  font-size: 1.2rem;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

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

/* Section Title & Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
}

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

/* ========================================================
   CAMPAIGN CONFIGURATOR & PRICE CALCULATOR
   ======================================================== */
.configurator-section {
  padding: 100px 0;
  position: relative;
  transition: box-shadow 0.8s ease;
}

.configurator-section.highlight-glow {
  box-shadow: 0 0 100px rgba(0, 242, 254, 0.3) inset;
}

.configurator-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.configurator-main-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.config-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.config-group-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Slider Controls */
.slider-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(5, 10, 28, 0.5);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

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

.traffic-value-large {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-cyan);
  font-family: var(--font-heading);
}

.traffic-value-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Range Input Custom Styling */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--primary-cyan);
  box-shadow: 0 0 15px var(--primary-cyan);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 25px var(--primary-cyan);
}

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

.preset-btn {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.preset-btn:hover, .preset-btn.active {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

/* Tier Selector Dropdown & Tags */
.tier-dropdown-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(5, 10, 28, 0.8);
  border: 1px solid var(--glass-border);
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-main);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.tier-dropdown-select:focus {
  border-color: var(--primary-cyan);
}

.country-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  background: rgba(5, 10, 28, 0.4);
  border-radius: var(--radius-md);
  border: 1px dashed var(--glass-border);
  max-height: 120px;
  overflow-y: auto;
}

.country-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-main);
}

.flag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-cyan);
}

/* Selectable Cards (Device, Traffic Type, Speed) */
.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.option-card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(5, 10, 28, 0.6);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-normal);
}

.option-card:hover {
  background: rgba(20, 35, 70, 0.6);
  border-color: rgba(0, 242, 254, 0.3);
}

.option-card.active {
  background: rgba(0, 242, 254, 0.12);
  border-color: var(--primary-cyan);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.option-icon {
  font-size: 1.5rem;
}

.option-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

/* Sticky Summary Card */
.summary-card-sticky {
  position: sticky;
  top: 100px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.summary-title {
  font-size: 1.3rem;
  font-weight: 700;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 16px;
}

.summary-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
}

.summary-label {
  color: var(--text-muted);
}

.summary-value {
  font-weight: 600;
  color: #ffffff;
  text-align: right;
}

.summary-price-box {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(127, 0, 255, 0.1) 100%);
  border: 1px solid rgba(0, 242, 254, 0.3);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-display-large {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-cyan);
  font-family: var(--font-heading);
  line-height: 1;
}

.cpm-badge {
  font-size: 0.8rem;
  color: var(--accent-green);
  font-weight: 600;
}

/* ========================================================
   FLOATING SUPPORT CHAT WIDGET
   ======================================================== */
.support-chat-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.chat-toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.chat-toggle-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0, 242, 254, 0.6);
}

.chat-toggle-btn svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.chat-unread-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff007f;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px #ff007f;
}

/* Support Chat Window */
.support-chat-window {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 380px;
  height: 520px;
  background: rgba(10, 18, 38, 0.95);
  border: 1px solid var(--glass-border-active);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-header {
  padding: 16px 20px;
  background: rgba(5, 10, 28, 0.9);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agent-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.agent-title-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.agent-status {
  font-size: 0.75rem;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.chat-close-btn:hover {
  color: #ffffff;
}

/* Messages Area */
.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  display: flex;
  gap: 10px;
  max-width: 85%;
}

.chat-message.user-message {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-message.agent-message {
  align-self: flex-start;
}

.message-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.45;
  position: relative;
  word-break: break-word;
}

.user-message .message-bubble {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
  color: #ffffff;
  border-bottom-right-radius: 2px;
}

.agent-message .message-bubble {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: #e2e8f0;
  border-bottom-left-radius: 2px;
}

.message-time {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  text-align: right;
}

/* Markdown Code Blocks inside Chat */
.chat-code-block {
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--primary-cyan);
  color: var(--primary-cyan);
  padding: 4px 8px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.82rem;
  cursor: pointer;
  margin: 2px 0;
  transition: background var(--transition-fast);
}

.chat-code-block:hover {
  background: rgba(0, 242, 254, 0.2);
}

/* Typing Indicator & Headset Icon */
.agent-headset-svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-cyan);
}

.agent-avatar .agent-headset-svg {
  width: 22px;
  height: 22px;
}

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

.typing-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
}

.typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-cyan);
  animation: typingBounce 1.2s infinite ease-in-out;
  display: inline-block;
}

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

/* Chat Input Bar */
.chat-input-area {
  padding: 12px;
  background: rgba(5, 10, 28, 0.95);
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-toolbar {
  display: flex;
  gap: 6px;
}

.tb-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
}

.tb-btn:hover {
  color: var(--primary-cyan);
  border-color: var(--primary-cyan);
}

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

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
}

.chat-input:focus {
  border-color: var(--primary-cyan);
}

.chat-send-btn {
  background: var(--primary-cyan);
  border: none;
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #050816;
  font-weight: 700;
}

/* ========================================================
   FEATURES SECTION
   ======================================================== */
.features-section {
  padding: 100px 0;
}

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

.feature-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(127, 0, 255, 0.1) 100%);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-cyan);
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================================
   PROCESS SECTION
   ======================================================== */
.process-section {
  padding: 100px 0;
  background: rgba(5, 10, 28, 0.4);
}

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

.process-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-cyan);
  opacity: 0.8;
}

.process-title {
  font-size: 1.15rem;
  font-weight: 700;
}

/* ========================================================
   PRICING SECTION
   ======================================================== */
.pricing-section {
  padding: 100px 0;
}

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

.pricing-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.25);
  transform: translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 100%);
  color: #050816;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
}

.plan-visitors {
  color: var(--primary-cyan);
  font-weight: 600;
  font-size: 0.95rem;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plan-feature-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-green);
}

/* ========================================================
   TESTIMONIALS SECTION
   ======================================================== */
.testimonials-section {
  padding: 100px 0;
}

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

.testimonial-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rating-stars {
  color: #ffb703;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-cyan);
}

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

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

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

/* ========================================================
   FAQ ACCORDION
   ======================================================== */
.faq-section {
  padding: 100px 0;
}

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

.faq-accordion-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-accordion-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
}

.faq-accordion-icon {
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
}

.faq-accordion-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.faq-accordion-item.active .faq-accordion-content {
  padding: 0 24px 20px 24px;
  max-height: 200px;
}

.faq-accordion-item.active .faq-accordion-icon {
  transform: rotate(45deg);
  color: var(--primary-cyan);
}

/* ========================================================
   FOOTER
   ======================================================== */
.main-footer {
  padding: 80px 0 40px 0;
  border-top: 1px solid var(--glass-border);
  background: rgba(3, 5, 15, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-column-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary-cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
