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

:root {
  --primary-light: #4CAF50; /* VoiceSpend medium green */
  --primary-dark: #2E7D32; /* VoiceSpend deep forest green */
  --bg-page: #F7FAF7;
  --bg-card: #FFFFFF;
  --text-primary: #1A2E1A;
  --text-secondary: #5A6B5A;
  --border: rgba(0, 0, 0, 0.07);
  --gradient: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.07), 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.1), 0 16px 40px rgba(0, 0, 0, 0.08);
}

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

/* Subtle background decoration */
.bg-animation {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(76, 175, 80, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(46, 125, 50, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(76, 175, 80, 0.04) 0%,
      transparent 60%
    );
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-20px, -20px) rotate(1deg);
  }
  66% {
    transform: translate(20px, -10px) rotate(-1deg);
  }
}

/* Navigation */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(247, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 15px 0;
  background: rgba(247, 250, 247, 0.98);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.35);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 50px;
  position: relative;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: slideInLeft 1s ease;
}

/* App Store badge (official artwork) */
.app-store-badge {
  display: inline-block;
  line-height: 0;
}

.app-store-badge img {
  height: 48px;
  width: auto;
  display: block;
}

.cta-buttons .app-store-badge {
  margin: 12px 0;
}

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

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 50px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

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

.badge {
  text-decoration: none;
  cursor: pointer;
}
.badge:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

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

.hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 32px;
  background: var(--gradient);
  color: white;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(76, 175, 80, 0.35);
}

.btn-secondary {
  padding: 16px 32px;
  background: transparent;
  color: var(--primary-dark);
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid rgba(76, 175, 80, 0.4);
}

.btn-secondary:hover {
  background: rgba(76, 175, 80, 0.06);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

/* Demo Button */
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 48px;
  padding: 0 12px 0 2px;
  background: var(--text-primary);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-demo .btn-icon {
  width: 35px;
  height: 35px;
  fill: #fff;
  display: block;
}

.btn-demo:hover,
.btn-demo:focus-visible {
  transform: translateY(-3px);
  opacity: 0.85;
  outline: none;
}

.cta-buttons {
  align-items: center;
}

/* --- DEMO VIDEO MODAL --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 0;
}

.modal-dialog {
  position: relative;
  margin: 2vh auto;
  padding: 0;
  border-radius: 16px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 96vh;
  z-index: 1;
}

.video-wrap {
  position: relative;
  height: min(90vh, 900px);
  aspect-ratio: 9 / 16;
  width: auto;
  min-width: 360px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .video-wrap {
    height: 82vh;
    min-width: 0;
  }
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  top: -10px;
  right: 6px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: #000;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.modal-open {
  overflow: hidden;
}

/* Device Mockups */
.hero-visual {
  position: relative;
  animation: slideInRight 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.devices-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.device-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.device-slide:nth-child(1) {
  transform: rotateY(0deg) translateZ(250px);
}

.device-slide:nth-child(2) {
  transform: rotateY(90deg) translateZ(250px);
}

.device-slide:nth-child(3) {
  transform: rotateY(180deg) translateZ(250px);
}

.device-slide:nth-child(4) {
  transform: rotateY(270deg) translateZ(250px);
}

.device-mockup {
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.phone-portrait {
  height: 420px;
  aspect-ratio: 9 / 19.5;
}

.phone-landscape {
  width: 420px;
  aspect-ratio: 19.5 / 9;
}

.watch {
  width: 190px;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.15),
    rgba(46, 125, 50, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-secondary);
  font-size: 16px;
  text-align: center;
  padding: 20px;
  gap: 10px;
}

.device-screen .device-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: rgba(76, 175, 80, 0.4);
}

/* Device Labels */
.device-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.device-slide.active .device-label {
  opacity: 1;
}

/* Touch hint */
.swipe-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

/* Features Section */
.features {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(76, 175, 80, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Cancel any custom marker or bullets injected into OL items */
ol.feature-description li::before {
  content: none !important;
}

/* Keep normal bullets for ULs in articles */
.pricing-card ul.feature-description {
  list-style: disc outside;
  margin: 0;
  padding-left: 1.5rem;
}
.pricing-card ul.feature-description li {
  margin: 0 0 10px 0;
}

/* Ordered lists in article blocks */
.pricing-card ol.feature-description {
  list-style: decimal outside;
  margin: 0;
  padding-left: 1rem;
  font-variant-numeric: tabular-nums;
}

.pricing-card ol.feature-description li {
  margin: 0 0 12px 0;
  padding-left: 0rem;
  text-indent: 0;
}

/* Article Images */
.article-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

.article-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Article CTA */
body.legal .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* Sports Section */
.sports {
  padding: 100px 20px;
  background: rgba(76, 175, 80, 0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sports-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.sport-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.sport-item:hover {
  background: rgba(76, 175, 80, 0.05);
  border-color: rgba(76, 175, 80, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.sport-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.sport-icon-img {
  height: 40px;
  margin-bottom: 12px;
  margin-top: 12px;
}

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

.sport-item.featured {
  background: rgba(76, 175, 80, 0.04);
  border-color: rgba(76, 175, 80, 0.2);
}

/* Pricing Section */
.pricing {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Pricing cards grid: 3-up on desktop, 2-up on tablets, 1-up on mobile */
.pricing .features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .pricing .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .pricing .features-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(76, 175, 80, 0.2);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.pricing-card:hover {
  border-color: rgba(76, 175, 80, 0.4);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

.price-tag {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
}

.price-period {
  color: var(--text-secondary);
  font-size: 20px;
  margin-bottom: 0px;
}

.trial-badge {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-radius: 50px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
}

.pricing-features li {
  padding: 12px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

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

.pricing-features li::before {
  content: "✓";
  color: var(--primary-light);
  font-weight: bold;
}

.price-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  opacity: 0.85;
}

.price-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}
.price-chip-list li {
  background: rgba(76, 175, 80, 0.06);
  border: 1px solid rgba(76, 175, 80, 0.15);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 14px;
  color: var(--text-primary);
}

.price-note-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 12px;
  font-size: 14px;
}
.price-note-table th,
.price-note-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.price-note-table thead th {
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}
.price-note-table tbody tr:last-child td {
  border-bottom: none;
}

/* FAQ Section */
.faq {
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-container {
  margin-top: 50px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.faq-item:hover {
  border-color: rgba(76, 175, 80, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
  border-color: rgba(76, 175, 80, 0.35);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding-right: 20px;
  color: var(--text-primary);
}

.faq-icon {
  font-size: 24px;
  color: var(--primary-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 30px 25px 30px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Footer */
footer {
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-image {
  width: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.footer-text {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 16px;
    padding: 12px 20px;
    background: rgba(247, 250, 247, 0.99);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .nav-links.open a {
    padding: 10px 0;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    margin-top: 40px;
    min-height: 400px;
  }

  .devices-carousel {
    height: 400px;
  }

  .device-slide:nth-child(1),
  .device-slide:nth-child(2),
  .device-slide:nth-child(3),
  .device-slide:nth-child(4),
  .device-slide:nth-child(5),
  .device-slide:nth-child(6) {
    transform: none;
  }

  .carousel-track {
    position: relative;
  }

  .device-slide {
    position: relative;
    display: none;
  }

  .device-slide.active {
    display: flex;
  }

  .phone-portrait {
    height: 400px;
  }

  .phone-landscape {
    width: 340px;
  }

  .watch {
    width: 180px;
  }

  .swipe-hint {
    bottom: 80px;
  }

  .cta-buttons {
    justify-content: center;
  }

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

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

  .pricing-card {
    padding: 30px 20px;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  animation: fadeIn 0.5s ease;
}

/* --- Legal pages --- */
.legal {
  padding-top: 140px;
}

.legal .feature-title,
.legal .feature-description {
  text-align: left;
}

.legal .pricing-card a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-links a:hover {
  filter: brightness(0.85);
}

.legal-links a:focus-visible {
  outline: 2px dashed var(--primary-light);
  outline-offset: 2px;
}

/* Legal page: align bullets */
.legal .pricing-card ul {
  list-style: disc inside;
  padding-left: 0;
  margin: 0 0 1rem 0;
}
.legal .pricing-card li {
  margin: 0.4rem 0;
  color: var(--text-secondary);
}

/* Legal page (hanging bullets) */
.legal.hanging .pricing-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
}
.legal.hanging .pricing-card li {
  position: relative;
  padding-left: 1.25rem;
  margin: 0.4rem 0;
}
.legal.hanging .pricing-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 1.1em;
  line-height: 1;
  color: var(--text-secondary);
}
