/* LupaSoft/CourtPilot Website Styles */

/* CSS Variables */
:root {
  /* Primary - Slate (Dark backgrounds) */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;

  /* Accent - Amber/Orange/Rose Gradient */
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;

  /* Neutrals */
  --white: #ffffff;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-400: #a3a3a3;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;

  /* Utility */
  --green-500: #22c55e;
  --blue-500: #3b82f6;
  --purple-500: #8b5cf6;
}

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

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  color: var(--neutral-700);
  background: var(--white);
}

/* Typography */
h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--amber-500);
  text-decoration: none;
}

a:hover {
  color: var(--amber-600);
}

.text-gradient {
  background: linear-gradient(to right, var(--amber-400), var(--orange-400), var(--rose-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Container */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--slate-700);
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--rose-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--slate-300);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

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

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background: var(--slate-800);
  border-bottom: 1px solid var(--slate-700);
  padding: 1rem;
}

.nav-mobile.active {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--slate-300);
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--white);
  background: var(--slate-700);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 1rem 4rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

@media (min-width: 640px) {
  .hero {
    padding: 10rem 1.5rem 6rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--slate-900), var(--slate-800));
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.hero-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(64px);
}

.hero-glow-left {
  top: 0;
  left: 25%;
  background: rgba(245, 158, 11, 0.2);
}

.hero-glow-right {
  bottom: 0;
  right: 25%;
  background: rgba(249, 115, 22, 0.2);
}

.hero-content {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--slate-300);
  margin-bottom: 2rem;
  max-width: 42rem;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    margin-left: 0;
    margin-right: auto;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

/* Page Hero (smaller for inner pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 1rem 3rem;
}

.page-hero .hero-content {
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--slate-300);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--rose-500) 100%);
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.2);
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  background: var(--white);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
}

.btn-white:hover {
  background: var(--slate-100);
  color: var(--slate-900);
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--rose-500) 100%);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.2);
  border: none;
  cursor: pointer;
}

.btn-gradient:hover {
  box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.3);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--neutral-200);
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.card-dark {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(8px);
  border: 2px solid var(--slate-700);
  border-radius: 1rem;
  padding: 1.5rem;
}

.card-dark:hover {
  border-color: rgba(245, 158, 11, 0.5);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--rose-500) 100%);
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card h3 {
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--neutral-600);
  margin-bottom: 0;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: var(--neutral-50);
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-header h2 {
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.features-header p {
  color: var(--neutral-600);
  max-width: 36rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Section */
.section {
  padding: 4rem 0;
}

.section-light {
  background: var(--white);
}

.section-alt {
  background: var(--neutral-50);
}

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

.section-header h2 {
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--neutral-600);
  max-width: 36rem;
  margin: 0 auto;
}

/* About Content */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text h3 {
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--neutral-600);
}

.about-image {
  background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
  border-radius: 1rem;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.about-image-content {
  text-align: center;
  color: var(--white);
}

.about-image-content .logo-large {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-image-content .logo-large span {
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--rose-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--rose-500) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--white);
}

.team-card h3 {
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--amber-500);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h3 {
  color: var(--neutral-900);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--rose-500) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item-content h4 {
  font-size: 0.875rem;
  color: var(--neutral-600);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-item-content p {
  color: var(--neutral-900);
  margin-bottom: 0;
  font-weight: 500;
}

.contact-item-content a {
  color: var(--amber-500);
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--neutral-200);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  color: var(--neutral-900);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-200);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

.form-message {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  color: var(--green-500);
  border: 1px solid var(--green-500);
}

.form-message.error {
  display: block;
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-500);
  border: 1px solid var(--rose-500);
}

/* Map Placeholder */
.map-placeholder {
  background: var(--slate-800);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  color: var(--slate-300);
  margin-top: 2rem;
}

.map-placeholder h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
  position: relative;
  overflow: hidden;
  padding: 4rem 1rem;
}

.cta .hero-bg,
.cta .hero-grid,
.cta .hero-glow {
  position: absolute;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  color: var(--slate-300);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* Footer */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 3rem 1rem 1.5rem;
}

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

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--slate-400);
  max-width: 20rem;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: var(--slate-400);
}

.footer-legal a:hover {
  color: var(--white);
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  body {
    background: var(--neutral-900);
    color: var(--neutral-100);
  }

  .card {
    background: rgba(38, 38, 38, 0.5);
    border-color: rgba(64, 64, 64, 0.5);
  }

  .card:hover {
    border-color: rgba(245, 158, 11, 0.3);
  }

  .card h3 {
    color: var(--white);
  }

  .card p {
    color: var(--neutral-400);
  }

  .features,
  .section-alt {
    background: var(--neutral-900);
  }

  .section-light {
    background: var(--neutral-800);
  }

  .features-header h2,
  .section-header h2 {
    color: var(--white);
  }

  .features-header p,
  .section-header p {
    color: var(--neutral-400);
  }

  .about-text h3,
  .contact-info h3,
  .contact-form h3 {
    color: var(--white);
  }

  .about-text p {
    color: var(--neutral-400);
  }

  .contact-form {
    background: rgba(38, 38, 38, 0.5);
    border-color: rgba(64, 64, 64, 0.5);
  }

  .form-group label {
    color: var(--neutral-300);
  }

  .form-group input,
  .form-group textarea {
    background: var(--neutral-800);
    border-color: var(--neutral-700);
    color: var(--white);
  }

  .contact-item-content h4 {
    color: var(--neutral-400);
  }

  .contact-item-content p {
    color: var(--white);
  }

  .team-card h3 {
    color: var(--white);
  }

  .team-card p {
    color: var(--neutral-400);
  }
}

/* Product Showcase */
.product-showcase {
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--neutral-200);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .product-card {
    grid-template-columns: 200px 1fr;
    padding: 2.5rem;
  }
}

.product-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-logo img {
  max-width: 180px;
  height: auto;
}

.product-content h3 {
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.product-content p {
  color: var(--neutral-600);
}

.product-features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.product-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-700);
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--rose-500) 100%);
}

/* Coming Soon Grid */
.coming-soon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .coming-soon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .coming-soon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-coming-soon {
  position: relative;
  text-align: center;
}

.card-coming-soon .card-icon {
  margin: 0 auto 1rem;
}

.coming-soon-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--amber-600);
  background: rgba(245, 158, 11, 0.1);
  border-radius: 9999px;
}

.coming-soon-text {
  color: var(--slate-400);
  font-style: italic;
  font-size: 0.875rem;
}

/* Contact Product Card */
.contact-product-card {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--neutral-50);
  border-radius: 1rem;
  text-align: center;
}

.contact-product-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.contact-product-card p {
  color: var(--neutral-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Enhanced Product Card */
.product-card-large {
  display: block;
  text-align: center;
}

.product-card-large .product-logo {
  margin-bottom: 2rem;
}

.product-card-large .product-logo img {
  max-width: 220px;
}

.product-card-large .product-content {
  max-width: 700px;
  margin: 0 auto;
}

.product-tagline {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

/* Product Pricing Boxes */
.product-pricing {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.price-box {
  background: var(--neutral-50);
  border: 2px solid var(--neutral-200);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 150px;
}

.price-box-featured {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(244, 63, 94, 0.1) 100%);
  border-color: var(--amber-500);
}

.price-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neutral-500);
  margin-bottom: 0.5rem;
}

.price-amount {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.price-box-featured .price-amount {
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--rose-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-desc {
  display: block;
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-top: 0.25rem;
}

/* Product CTA */
.product-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
}

.product-disclaimer {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  font-style: italic;
  margin-bottom: 0;
}

/* Features CTA */
.features-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Product Features List - centered */
.product-card-large .product-features {
  text-align: left;
  display: inline-block;
  margin: 1.5rem auto;
}

/* Dark Mode - Product Showcase */
@media (prefers-color-scheme: dark) {
  .product-card {
    background: rgba(38, 38, 38, 0.5);
    border-color: rgba(64, 64, 64, 0.5);
  }

  .product-content h3 {
    color: var(--white);
  }

  .product-content p {
    color: var(--neutral-400);
  }

  .product-tagline {
    color: var(--neutral-200);
  }

  .product-features li {
    color: var(--neutral-300);
  }

  .price-box {
    background: rgba(38, 38, 38, 0.5);
    border-color: var(--neutral-700);
  }

  .price-box-featured {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(244, 63, 94, 0.15) 100%);
    border-color: var(--amber-500);
  }

  .price-label {
    color: var(--neutral-400);
  }

  .price-amount {
    color: var(--white);
  }

  .price-desc {
    color: var(--neutral-400);
  }

  .product-disclaimer {
    color: var(--neutral-500);
  }

  .contact-product-card {
    background: rgba(38, 38, 38, 0.5);
  }

  .contact-product-card p {
    color: var(--neutral-400);
  }
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--neutral-900);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-200);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 1.125rem;
  color: var(--neutral-800);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--neutral-600);
  margin-bottom: 1rem;
}

.legal-content ul {
  color: var(--neutral-600);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--amber-500);
}

.legal-content a:hover {
  color: var(--amber-600);
  text-decoration: underline;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--neutral-400);
  font-style: italic;
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 0.5rem;
}

/* Cookie Table */
.cookie-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cookie-table th,
.cookie-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--neutral-200);
}

.cookie-table th {
  background: var(--neutral-100);
  font-weight: 600;
  color: var(--neutral-800);
}

.cookie-table td {
  color: var(--neutral-600);
}

.cookie-table tr:nth-child(even) {
  background: var(--neutral-50);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--slate-900);
  border-top: 1px solid var(--slate-700);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cookie-banner-text p {
  color: var(--slate-300);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.cookie-banner-text a {
  color: var(--amber-400);
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--rose-500) 100%);
  color: var(--white);
}

.cookie-btn-accept:hover {
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  transform: translateY(-1px);
}

.cookie-btn-reject {
  background: var(--slate-700);
  color: var(--white);
}

.cookie-btn-reject:hover {
  background: var(--slate-600);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--slate-300);
  border: 1px solid var(--slate-600);
}

.cookie-btn-settings:hover {
  background: var(--slate-800);
  color: var(--white);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 1rem;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--neutral-200);
}

.cookie-modal-header h3 {
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
}

.cookie-modal-header p {
  color: var(--neutral-600);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.cookie-modal-body {
  padding: 1.5rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--neutral-200);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option-info h4 {
  color: var(--neutral-900);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.cookie-option-info p {
  color: var(--neutral-600);
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--neutral-300);
  border-radius: 26px;
  transition: 0.2s;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.2s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--rose-500) 100%);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--neutral-200);
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cookie-modal-footer .cookie-btn {
  min-width: 100px;
}

/* Dark Mode - Legal Pages */
@media (prefers-color-scheme: dark) {
  .legal-content h2 {
    color: var(--white);
    border-color: var(--neutral-700);
  }

  .legal-content h3 {
    color: var(--neutral-200);
  }

  .legal-content p,
  .legal-content ul,
  .legal-content li {
    color: var(--neutral-400);
  }

  .cookie-table th {
    background: var(--neutral-800);
    color: var(--neutral-200);
  }

  .cookie-table td {
    color: var(--neutral-400);
    border-color: var(--neutral-700);
  }

  .cookie-table th {
    border-color: var(--neutral-700);
  }

  .cookie-table tr:nth-child(even) {
    background: var(--neutral-800);
  }

  .cookie-modal-content {
    background: var(--neutral-800);
  }

  .cookie-modal-header {
    border-color: var(--neutral-700);
  }

  .cookie-modal-header h3 {
    color: var(--white);
  }

  .cookie-modal-header p {
    color: var(--neutral-400);
  }

  .cookie-option {
    border-color: var(--neutral-700);
  }

  .cookie-option-info h4 {
    color: var(--white);
  }

  .cookie-option-info p {
    color: var(--neutral-400);
  }

  .cookie-modal-footer {
    border-color: var(--neutral-700);
  }
}
