/* 
   WC Fan Hub 2026 Shared Stylesheet
   Designed as a premium, immersive sports-themed website.
   Aesthetics: Deep Navy, Crimson Red, Gold highlights, rounded cards, sleek glassmorphism.
*/

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

:root {
  /* Color Palette */
  --color-bg-dark: #0A0E1A;
  --color-bg-dark-rgb: 10, 14, 26;
  --color-bg-light: #FFFFFF;
  --color-bg-muted: #F8F9FB;
  
  --color-accent-red: #CE2B43;
  --color-accent-red-hover: #E53E56;
  --color-accent-red-rgb: 206, 43, 67;
  
  --color-accent-gold: #F5A623;
  --color-accent-gold-hover: #F7B543;
  
  --color-text-light: #FFFFFF;
  --color-text-dark: #0A0E1A;
  --color-text-muted: #9EACBA;
  
  /* Layout Transitions & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(206, 43, 67, 0.35);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Resets & Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background-color: var(--color-bg-dark);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

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

/* Typography Utilities */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient-red {
  background: linear-gradient(135deg, #FFF 30%, var(--color-accent-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #FFF 30%, var(--color-accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--color-accent-red);
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  position: relative;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--color-accent-red);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-red);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  background-color: var(--color-accent-red);
  color: #FFF !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(206, 43, 67, 0.3);
}

.nav-btn::after {
  display: none !important;
}

.nav-btn:hover {
  background-color: var(--color-accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(206, 43, 67, 0.45);
}

/* Hamburger Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FFF;
  border-radius: 3px;
  position: absolute;
  transition: var(--transition-smooth);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }

.menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: var(--color-accent-red);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background-color: var(--color-accent-red);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 60px;
  background: radial-gradient(circle at 50% 100%, rgba(206, 43, 67, 0.15) 0%, var(--color-bg-dark) 70%),
              linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(10, 14, 26, 0.95) 100%);
  overflow: hidden;
}

/* Canvas overlay for particle effect */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(206, 43, 67, 0.1);
  border: 1px solid rgba(206, 43, 67, 0.3);
  color: #FFF;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.badge span {
  color: var(--color-accent-gold);
}

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

@media (min-width: 769px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-container {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Download Pill Buttons */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFF;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition-bounce);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.download-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.download-btn .btn-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.download-btn .btn-label {
  font-size: 0.75rem;
  opacity: 0.6;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.download-btn .btn-title {
  font-size: 1.05rem;
  font-weight: 700;
}

.download-btn:hover {
  background: var(--color-accent-red);
  border-color: var(--color-accent-red-hover);
  transform: scale(1.05) translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* QR Code Section */
.scan-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.scan-title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.qr-container {
  display: flex;
  gap: 24px;
}

.qr-card {
  background: #FFF;
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
  width: 140px;
}

.qr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
}

.qr-card svg.qr-store-icon {
  width: 28px;
  height: 28px;
  fill: var(--color-text-dark);
}

.qr-placeholder {
  width: 108px;
  height: 108px;
  background: #EEE;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-label {
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 0.85rem;
}

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

/* Countdown Timer Section */
.countdown-section {
  background-color: #05070D;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 0;
  text-align: center;
}

.countdown-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-gold);
  margin-bottom: 24px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 600px;
  margin: 0 auto;
  gap: 16px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.countdown-item:hover {
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.countdown-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFF;
  line-height: 1;
  margin-bottom: 6px;
}

@media (min-width: 769px) {
  .countdown-num {
    font-size: 3.5rem;
  }
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

/* Content Sections (General) */
.section {
  padding: 100px 0;
}

.bg-white {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.bg-white .section-header h2 {
  color: var(--color-text-dark);
}

.bg-white .section-header p {
  color: #5A6E85;
}

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

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

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

.feature-card {
  background: var(--color-bg-light);
  border: 1px solid #EAEFF5;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(206, 43, 67, 0.15);
}

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

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.95rem;
  color: #5A6E85;
  line-height: 1.6;
}

/* App Screenshots Mockup Section */
.screenshots-section {
  background: radial-gradient(circle at top, rgba(206, 43, 67, 0.08) 0%, var(--color-bg-dark) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.screenshot-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
}

/* Phone Mockup */
.phone-frame {
  width: 280px;
  height: 560px;
  border: 12px solid #1E2330;
  border-radius: 40px;
  background: #000;
  position: relative;
  box-shadow: var(--shadow-lg), 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

/* Camera Notch */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #1E2330;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

/* Levitation Animations */
.phone-frame.p1 {
  animation: float1 6s ease-in-out infinite;
}

.phone-frame.p2 {
  animation: float2 6s ease-in-out infinite 1.5s;
}

.phone-frame.p3 {
  animation: float3 6s ease-in-out infinite 3s;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Mockup Content Styling */
.mockup-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px 24px 20px;
  position: relative;
}

/* Mockup Gradients */
.p1 .mockup-content {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, rgba(206, 43, 67, 0.8) 100%);
}

.p2 .mockup-content {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, rgba(245, 166, 35, 0.7) 100%);
}

.p3 .mockup-content {
  background: linear-gradient(135deg, rgba(206, 43, 67, 0.8) 0%, rgba(245, 166, 35, 0.7) 100%);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.85;
}

.mockup-title-wrap {
  margin-top: 40px;
}

.mockup-screen-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.mockup-screen-desc {
  font-size: 0.85rem;
  opacity: 0.75;
}

.mockup-preview-ui {
  flex-grow: 1;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  justify-content: center;
}

.mockup-row {
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 0.7rem;
  font-weight: 600;
  gap: 8px;
}

.mockup-row.highlighted {
  border: 1px solid rgba(245, 166, 35, 0.5);
  background: rgba(245, 166, 35, 0.15);
}

.mockup-footer {
  font-size: 0.75rem;
  text-align: center;
  opacity: 0.5;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Download Section (Bottom CTA) */
.download-section {
  text-align: center;
  background: radial-gradient(circle at center, rgba(206, 43, 67, 0.15) 0%, var(--color-bg-dark) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.disclaimer-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 500px;
  margin: 40px auto 0 auto;
}

/* Legal View Pages Layout */
.legal-page {
  padding-top: 140px;
  padding-bottom: 100px;
  background: #FFF;
  color: var(--color-text-dark);
}

.legal-header {
  max-width: 800px;
  margin: 0 auto 40px auto;
  border-bottom: 2px solid #EFF2F6;
  padding-bottom: 24px;
}

.legal-header h1 {
  font-size: 2.75rem;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.legal-subtitle {
  font-size: 1.05rem;
  color: #5A6E85;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-size: 1.4rem;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-section h2 span.section-number {
  color: var(--color-accent-red);
}

.legal-section p {
  font-size: 1.05rem;
  color: #3C4B5E;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
  color: #3C4B5E;
}

.legal-section li {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

/* Footer Section */
.footer {
  background-color: #05070C;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px 0;
  color: var(--color-text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col h4 {
  color: #FFF;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.footer-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo span {
  color: var(--color-accent-red);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.footer-links a {
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-accent-red);
  transform: translateX(4px);
}

.footer-contact {
  font-size: 0.95rem;
  color: #FFF;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

/* Mobile Nav Drawer Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0A0E1A;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    padding: 100px 40px;
    align-items: flex-start;
    gap: 24px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    width: 100%;
  }
  
  .nav-btn {
    text-align: center;
    width: 100%;
    margin-top: 12px;
  }
}

/* Language Selector */
.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFF;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-selector:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.lang-selector svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Pricing Grid & Tables (Marketing Page) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

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

.pricing-card {
  background: #FFF;
  border: 1px solid #EAEFF5;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.pricing-card.premium {
  border: 2px solid var(--color-accent-red);
  box-shadow: 0 10px 30px rgba(206, 43, 67, 0.15);
}

.pricing-card.premium:hover {
  box-shadow: 0 20px 40px rgba(206, 43, 67, 0.25);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--color-accent-red);
  color: #FFF;
  padding: 6px 30px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.95rem;
  color: #5A6E85;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-accent-red);
  font-weight: 700;
}

.pricing-card.premium .pricing-features li::before {
  color: var(--color-accent-gold);
}

.pricing-btn {
  display: block;
  text-align: center;
  background: var(--color-bg-dark);
  color: #FFF;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.pricing-card.premium .pricing-btn {
  background: var(--color-accent-red);
}

.pricing-card.premium .pricing-btn:hover {
  background: var(--color-accent-red-hover);
  box-shadow: 0 4px 15px rgba(206, 43, 67, 0.3);
}

.pricing-btn:hover {
  background: #1E2330;
  transform: translateY(-2px);
}

/* Comparison Table */
.comparison-table-wrapper {
  margin-top: 60px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: #FFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  color: var(--color-text-dark);
}

.comparison-table th, .comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #EFF2F6;
}

.comparison-table th {
  background: var(--color-bg-dark);
  color: #FFF;
  font-weight: 700;
}

.comparison-table tr:hover td {
  background: #F8F9FB;
}

.comparison-table td .check-icon {
  color: var(--color-accent-red);
  font-weight: 700;
}

.comparison-table td .cross-icon {
  color: var(--color-text-muted);
  opacity: 0.5;
}

/* Form Styles (Support & Data Deletion Pages) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.form-card {
  background: #FFF;
  border: 1px solid #EAEFF5;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  color: var(--color-text-dark);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D2Dbe2;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background: #F8F9FB;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent-red);
  background: #FFF;
  box-shadow: 0 0 0 4px rgba(206, 43, 67, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #5A6E85;
  margin-bottom: 24px;
}

.form-checkbox input {
  margin-top: 4px;
}

.form-btn {
  width: 100%;
  background: var(--color-accent-red);
  color: #FFF;
  border: none;
  padding: 14px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(206, 43, 67, 0.2);
}

.form-btn:hover {
  background: var(--color-accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(206, 43, 67, 0.35);
}

.form-success-message {
  display: none;
  background: #EBFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* FAQ Accordion */
.faq-details {
  background: #FFF;
  border: 1px solid #EAEFF5;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.faq-details[open] {
  border-color: rgba(206, 43, 67, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text-dark);
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-accent-red);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.faq-details[open] .faq-summary::after {
  content: '−';
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: #5A6E85;
  line-height: 1.6;
  font-size: 0.95rem;
}

