/* ============================================
   Viper Dark Theme - CSS Design System
   local-viper.com
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Backgrounds */
  --bg-darkest: #111111;
  --bg-darker: #1A1A1A;
  --bg-dark: #1E1E1E;
  --bg-medium: #252525;
  --bg-light: #2D2D2D;
  --bg-lighter: #353535;
  --bg-card: #2A2A2A;

  /* Accent */
  --green: #10B981;
  --green-light: #34D399;
  --green-dark: #059669;
  --green-glow: rgba(16, 185, 129, 0.15);
  --green-border: rgba(16, 185, 129, 0.3);

  /* Text */
  --text-primary: #F9FAFB;
  --text-secondary: #D1D5DB;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;

  /* Semantic */
  --error: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;

  /* Layout */
  --max-width: 1200px;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--green-light);
}

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

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

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

code, pre {
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn-primary:hover {
  background-color: var(--green-light);
  border-color: var(--green-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--text-dim);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 1.125em;
  height: 1.125em;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color var(--transition-base);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.navbar-brand svg {
  width: 2rem;
  height: 2rem;
}

.brand-text {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.navbar-item a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color var(--transition-fast);
}

.navbar-item a:hover,
.navbar-item.active a {
  color: var(--text-primary);
}

.navbar-item.active a {
  color: var(--green);
}

.navbar-cta a {
  padding: 0.5rem 1rem;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-muted);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating Elements */
.hero-floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(40px);
}

.floating-circle-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  top: 10%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.floating-circle-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
  bottom: 10%;
  left: -3%;
  animation: float 10s ease-in-out infinite 1s;
}

.floating-circle-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  animation: float 12s ease-in-out infinite 2s;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  z-index: 10;
}

.scroll-indicator-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: bounce 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-glow);
  border: 1px solid var(--green-border);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title .text-accent {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.hero-screenshot {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  max-width: 100%;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* --- Section Layout --- */
.section {
  padding: 6rem 0;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Features Grid --- */
.features-section {
  padding: 6rem 0;
  background-color: var(--bg-darker);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--green-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-glow);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

/* --- Product Showcase Section --- */
.product-showcase-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-darkest) 100%);
}

.showcase-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.showcase-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 1.5rem;
}

.showcase-tab {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.showcase-tab:hover {
  color: var(--green);
}

.showcase-tab.active {
  color: var(--green);
}

.showcase-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
}

.demo-content {
  position: relative;
}

.demo-panel {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.demo-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  opacity: 1;
  animation: fadeInScale 0.5s ease-out;
  pointer-events: auto;
}

.demo-window {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.demo-titlebar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  background: var(--bg-medium);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-dots {
  display: flex;
  gap: 0.5rem;
}

.demo-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo-dots .dot.red { background-color: #FF5F57; }
.demo-dots .dot.yellow { background-color: #FEBC2E; }
.demo-dots .dot.green { background-color: #28C840; }

.demo-title {
  flex: 1;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-weight: 500;
}

.demo-video-container {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-dark);
}

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

.demo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-medium));
  color: var(--text-dim);
}

.placeholder-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.demo-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.demo-title-text {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.demo-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.demo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.feature-icon {
  flex-shrink: 0;
  color: var(--green);
}

/* --- Code Demo Section --- */
.code-demo-section {
  padding: 6rem 0;
  background-color: var(--bg-darkest);
}

.terminal-window {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: var(--bg-medium);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red { background-color: #FF5F57; }
.terminal-dot.yellow { background-color: #FEBC2E; }
.terminal-dot.green { background-color: #28C840; }

.terminal-title {
  flex: 1;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-weight: 500;
}

.terminal-body {
  background: var(--bg-dark);
  padding: 1.5rem;
  overflow-x: auto;
}

.terminal-body pre {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
}

.terminal-body code {
  color: var(--text-secondary);
}

.terminal-body .comment {
  color: var(--text-dim);
}

.terminal-body .command {
  color: var(--green);
}

.terminal-body .prompt {
  color: var(--green);
  user-select: none;
}

.terminal-body .output {
  color: var(--text-muted);
}

.terminal-body .highlight {
  color: var(--green-light);
  font-weight: 600;
}

/* --- Comparison Slider --- */
.comparison-section {
  padding: 6rem 0;
  background-color: var(--bg-darkest);
}

.comparison-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  cursor: ew-resize;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.comparison-images {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.comparison-before,
.comparison-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.comparison-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comparison-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-medium));
  font-size: 2rem;
  color: var(--text-dim);
  font-weight: 700;
}

.comparison-label {
  position: absolute;
  top: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

.before-label {
  left: 1.5rem;
}

.after-label {
  right: 1.5rem;
}

.comparison-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 100%;
  transform: translateX(-50%);
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 20;
  transition: box-shadow 200ms ease;
}

.comparison-handle:hover {
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
}

.handle-icon {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.handle-icon svg {
  width: 24px;
  height: 24px;
}

/* --- CTA Section --- */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-darkest) 100%);
}

.cta-card {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-note {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* --- Pricing Page --- */
.pricing-page {
  padding: 8rem 0 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.pricing-page .section-header {
  margin-bottom: 3rem;
}

.pricing-tier-free {
  max-width: 500px;
  margin: 0 auto 4rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.tier-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.tier-price {
  margin-bottom: 2rem;
}

.tier-price .price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
}

.tier-price .price-note {
  font-size: 1rem;
  color: var(--text-dim);
  margin-left: 0.25rem;
}

.tier-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.tier-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tier-features li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-color: var(--green);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
}

.addons-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.addon-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.addon-card:hover {
  border-color: var(--green-border);
  transform: translateY(-2px);
}

.addon-featured {
  border-color: var(--green-border);
  position: relative;
  background: linear-gradient(135deg, var(--bg-card), rgba(16, 185, 129, 0.05));
}

.addon-featured::before {
  content: 'Best Value';
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
}

.addon-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-glow);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.addon-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.addon-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.5rem;
}

.addon-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.addon-price .price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.addon-price .price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.addon-price .price-period {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-left: 0.25rem;
}

/* --- Features Page --- */
.page-features {
  padding-top: 4rem;
}

.features-page {
  padding: 8rem 0 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.features-detail-grid {
  display: grid;
  gap: 4rem;
  margin-top: 3rem;
}

.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-detail:nth-child(even) {
  direction: rtl;
}

.feature-detail:nth-child(even) > * {
  direction: ltr;
}

.feature-detail-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-detail-content p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-detail-visual {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* --- Legal Pages --- */
.page-legal .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
}

.page-legal h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-legal h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--green);
}

.page-legal h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-legal p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.page-legal ul, .page-legal ol {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page-legal li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.page-legal a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--green-border);
  text-underline-offset: 3px;
}

.page-legal a:hover {
  text-decoration-color: var(--green);
}

/* --- Checkout Page --- */
.checkout-result {
  text-align: center;
  padding: 10rem 1.5rem 5rem;
  max-width: 600px;
  margin: 0 auto;
}

.checkout-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.checkout-result h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.checkout-result p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-darkest) 100%);
}

.testimonials-carousel {
  position: relative;
  margin-top: 3rem;
}

.testimonials-track {
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: all var(--transition-base);
  position: absolute;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.testimonial-card.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.testimonial-quote {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.quote-icon {
  color: var(--green);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.testimonial-quote::after {
  content: '';
}

.testimonial-quote {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-border);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: #FEBC2E;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--green-glow);
  border-color: var(--green-border);
  color: var(--green);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot:hover {
  background: var(--text-muted);
}

.dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.9375rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* --- Contact Section --- */
.contact-section {
  padding: 6rem 0;
  background-color: var(--bg-darker);
}

.contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  background: var(--bg-medium);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--bg-dark);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* --- Social Links --- */
.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-medium);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-link:hover {
  background: var(--green-glow);
  border-color: var(--green-border);
  color: var(--green);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --- Benefits Grid --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.benefit-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
}

.benefit-item:hover {
  border-color: var(--green-border);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.benefit-text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  margin: 3rem 0;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table thead {
  background: var(--bg-medium);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 700;
  color: var(--text-primary);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th:last-child {
  border-right: none;
}

.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

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

.comparison-table .feature-name {
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-table .feature-category {
  background: var(--bg-darker);
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.comparison-table .check {
  color: var(--green);
  font-weight: 700;
}

.comparison-table .cross {
  color: var(--text-dim);
}

/* --- FAQ Section --- */
.faq-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-darkest) 100%);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all var(--transition-fast);
  background: var(--bg-card);
}

.faq-question:hover {
  background: var(--bg-medium);
}

.faq-question .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-base);
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

/* --- CTAssured Badges --- */
.trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

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

.trust-badge-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.trust-badge-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --- Pricing Cards (Enhanced) --- */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--green-border);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(16, 185, 129, 0.15);
}

.pricing-card.featured {
  border: 2px solid var(--green);
  background: linear-gradient(135deg, var(--bg-card), rgba(16, 185, 129, 0.05));
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: 0;
  right: 20px;
  transform: translateY(-50%);
  padding: 0.375rem 1rem;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 999px;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.25rem;
}

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

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--green-glow);
  color: var(--green);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* --- Animations --- */

/* Animated Gradients */
@keyframes animateGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-gradient {
  background-size: 200% 200%;
  animation: animateGradient 15s ease infinite;
}

/* Gradient Text Shimmer */
@keyframes gradientShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.gradient-text-shimmer {
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--green)) 0% center / 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShimmer 8s linear infinite;
}

/* Glow Effects */
.glow-effect {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.glow-effect:hover {
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.7);
  transition: box-shadow 200ms ease;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.float {
  animation: float 6s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Fade In Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  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(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-down {
  animation: fadeInDown 0.6s ease-out forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 0.6s ease-out forwards;
}

.fade-in-scale {
  animation: fadeInScale 0.6s ease-out forwards;
}

/* Stagger animations */
.stagger-item {
  opacity: 0;
}

.stagger-item.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Mesh Gradient Background */
@keyframes meshGradient {
  0%, 100% {
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%;
  }
  25% {
    background-position: 50% 50%, 100% 0%, 0% 100%, 100% 100%;
  }
  50% {
    background-position: 50% 50%, 100% 100%, 0% 0%, 100% 100%;
  }
  75% {
    background-position: 0% 0%, 100% 50%, 0% 100%, 50% 50%;
  }
}

.mesh-gradient {
  background:
    radial-gradient(at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(at 80% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(at 50% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-darker) 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
  animation: meshGradient 15s ease infinite;
}

/* Shimmer Loading Effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-light) 0%,
    var(--bg-medium) 50%,
    var(--bg-light) 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Border Animation */
@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animated-border {
  position: relative;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--green));
  background-size: 200% 200%;
  animation: borderFlow 3s ease infinite;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.bounce {
  animation: bounce 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

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

.scale-in {
  animation: scaleIn 0.5s ease-out;
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  z-index: 2000;
  transform-origin: left;
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .feature-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-detail:nth-child(even) {
    direction: ltr;
  }

  .demo-panel.active {
    grid-template-columns: 1fr;
  }

  .showcase-tabs {
    flex-wrap: wrap;
  }

  .carousel-nav {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem;
    gap: 0;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding: 7rem 0 3rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.0625rem;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

  .pricing-tier-free {
    padding: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .comparison-table {
    font-size: 0.875rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.75rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .social-links {
    gap: 0.75rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  /* Product Showcase Mobile */
  .demo-panel.active {
    grid-template-columns: 1fr;
  }

  .demo-window {
    max-width: 100%;
  }

  .demo-info {
    padding: 0;
  }

  .demo-title-text {
    font-size: 1.5rem;
  }

  .demo-description {
    font-size: 1rem;
  }

  /* Comparison Slider Mobile */
  .comparison-slider {
    max-width: 100%;
  }

  .comparison-handle {
    width: 50px;
  }

  .handle-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Testimonials Mobile */
  .testimonial-card {
    padding: 2rem;
  }

  .carousel-nav {
    gap: 1rem;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    padding: 0.875rem 1.5rem;
  }
}
