/* ===================================
   HookPilot Landing Page Styles
   =================================== */

:root {
  /* Colors - Warm Sunset/Ember Theme */
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #fb923c;
  --accent: #fbbf24;
  --accent-green: #10b981;
  
  /* Dark theme colors */
  --bg-dark: #0c0a09;
  --bg-darker: #0a0908;
  --bg-card: #1c1917;
  --bg-card-hover: #292524;
  
  /* Text */
  --text-primary: #fafaf9;
  --text-secondary: #a8a29e;
  --text-muted: #78716c;
  
  /* Gradients - Sunset/Fire */
  --gradient-primary: linear-gradient(135deg, #f97316 0%, #ef4444 50%, #ec4899 100%);
  --gradient-accent: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  --gradient-bg: linear-gradient(180deg, #0c0a09 0%, #1c1917 100%);
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 100px 0;
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(249, 115, 22, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

code {
  background: rgba(249, 115, 22, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'SF Mono', Monaco, 'Courier New', monospace;
  font-size: 0.9em;
  color: var(--primary-light);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 10, 9, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.nav-logo img {
  width: 36px;
  height: 36px;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: #f97316;
  top: -200px;
  left: -100px;
  animation: float 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #ef4444;
  top: 50%;
  right: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #fbbf24;
  bottom: -100px;
  left: 30%;
  animation: float 18s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -30px); }
  50% { transform: translate(-20px, 20px); }
  75% { transform: translate(20px, 30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px auto;
  display: block;
  filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.5));
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-icon {
  font-size: 1.1em;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-image {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  perspective: 1000px;
}

.app-screenshot {
  max-width: 100%;
  width: 1000px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.app-screenshot:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(249, 115, 22, 0.25);
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ===================================
   Features Section
   =================================== */
.features {
  padding: var(--section-padding);
  background: var(--bg-darker);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card.featured {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
  border-color: rgba(249, 115, 22, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.feature-list li::before {
  content: "✓";
  color: var(--accent-green);
  font-weight: 600;
}

/* ===================================
   Screenshots Section
   =================================== */
.screenshots {
  padding: var(--section-padding);
}

.screenshots-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.screenshot-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.screenshot-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.3);
}

.screenshot-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
}

.screenshot-caption {
  padding: 20px;
}

.screenshot-caption h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.screenshot-caption p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===================================
   Lightbox
   =================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#lightbox-caption {
  color: var(--text-secondary);
  margin-top: 16px;
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--text-primary);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2001;
}

.lightbox-nav:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 2rem;
  }
}

/* ===================================
   Download Section
   =================================== */
.download {
  padding: var(--section-padding);
  background: var(--bg-darker);
}

.download-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px 24px;
  margin-bottom: 60px;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px 32px 48px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.size-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.device-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { 
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
  }
  50% { 
    box-shadow: 0 4px 25px rgba(249, 115, 22, 0.6);
  }
}

.download-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.platform-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.download-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.platform-detail {
  color: var(--primary-light);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
}

.platform-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
  min-height: 44px;
}

.btn-download {
  width: 100%;
  justify-content: center;
  background: var(--gradient-primary);
  color: white;
  margin-bottom: 16px;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: white;
}

.btn-trial {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--primary-light);
  border: 1px solid var(--primary-light);
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.btn-trial:hover {
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-trial.active {
  background: rgba(249, 115, 22, 0.2);
  border-color: var(--accent);
}

/* Trial Form */
.trial-form-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  margin: 0;
}

.trial-form-container.open {
  max-height: 500px;
  margin: 12px 0;
}

.trial-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trial-form input[type="email"],
.trial-form input[type="text"][name="fullname"] {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.trial-form input[type="email"]:focus,
.trial-form input[type="text"][name="fullname"]:focus {
  border-color: var(--primary-light);
}

.trial-form input[type="email"]::placeholder,
.trial-form input[type="text"][name="fullname"]::placeholder {
  color: var(--text-muted);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: left;
}

.consent-label input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--primary);
}

.consent-label a {
  color: var(--primary-light);
  text-decoration: underline;
}

.btn-send {
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.trial-success {
  text-align: center;
  padding: 12px;
  color: var(--accent-green);
}

.trial-success .success-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 6px;
}

.trial-success p {
  font-size: 0.85rem;
  margin: 0;
}

.trial-error {
  text-align: center;
  padding: 8px;
  color: #ef4444;
  font-size: 0.8rem;
}

.trial-error p {
  margin: 0;
}

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

.purchase-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.info-card {
  background: rgba(249, 115, 22, 0.05);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.info-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* ===================================
   Trust Section
   =================================== */
.trust {
  padding: 60px 24px;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-weight: 500;
}

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

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 24px 40px;
}

.footer-main {
  text-align: center;
  margin-bottom: 48px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Legal Accordions */
.legal-accordions {
  max-width: 800px;
  margin: 0 auto 48px;
}

.accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.accordion-item.active .accordion-content {
  max-height: 5000px;
  transition: max-height 0.7s ease-in;
}

.legal-content {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal-content h4 {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.legal-content h5 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content h6 {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 12px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 6px;
  position: relative;
}

.legal-content a {
  color: var(--primary-light);
}

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

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

.footer-note {
  font-size: 0.8rem !important;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero {
    padding: 120px 20px 60px;
  }
  
  .hero-logo {
    width: 80px;
    height: 80px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .hero-image {
    margin-top: 40px;
  }
  
  .app-screenshot {
    transform: none;
    border-radius: var(--radius-md);
  }
  
  .features-grid,
  .download-cards,
  .screenshots-gallery {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .accordion-header {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .legal-content {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .feature-card {
    padding: 24px;
  }
  
  .download-card {
    padding: 30px 24px;
  }
}

/* ===================================
   Custom Scrollbar
   =================================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-card-hover);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

