/* ===========================
   GoldenCode — Main Stylesheet
   RTL Arabic · Light Gold Theme (Default)
   =========================== */

/* ===== LIGHT THEME (DEFAULT) ===== */
/* 3D CANVAS */
/* CUSTOM CURSOR */
.custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor.active {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid var(--gold);
}

body {
    cursor: none;
}

#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #1a1a1d 0%, #050505 100%);
}

:root {
  --gold: #FFD700;
  /* Luminous Gold */
  --gold-light: #FFFACD;
  --gold-dark: #B8860B;
  --obsidian: #050505;
  --bg-primary: #0A0A0B;
  --bg-secondary: #0F0F12;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-primary: #F8F9FA;
  --text-secondary: #A0A0AB;
  --text-muted: #66666E;
  --border: rgba(255, 215, 0, 0.1);
  --border-hover: rgba(255, 215, 0, 0.3);
  --radius: 24px;
  --shadow-gold: 0 0 50px rgba(255, 215, 0, 0.15);
  --font: 'Cairo', 'Tajawal', sans-serif;
  --navbar-bg: rgba(10, 10, 11, 0.7);
  --navbar-scrolled: rgba(5, 5, 5, 0.95);
  --heading-color: #FFFFFF;
}

/* ===== DARK THEME ===== */
[data-theme="dark"] {
  --gold: #F5C518;
  --gold-light: #FFD96A;
  --gold-dark: #C9A000;
  --bg-primary: #0A0A0B;
  --bg-secondary: #111114;
  --bg-card: #161619;
  --bg-card-hover: #1C1C21;
  --text-primary: #F0F0F5;
  --text-secondary: #9999AA;
  --text-muted: #606070;
  --border: rgba(245, 197, 24, 0.12);
  --border-hover: rgba(245, 197, 24, 0.35);
  --shadow-gold: 0 0 40px rgba(245, 197, 24, 0.15);
  --navbar-bg: rgba(10, 10, 11, 0.85);
  --navbar-scrolled: rgba(10, 10, 11, 0.97);
  --heading-color: #FFFFFF;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.7);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
  transition: background 0.3s, color 0.3s;
}

/* ===================== UTILITIES ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold {
  color: var(--gold);
}

.gold-gradient {
  background: linear-gradient(135deg, #FFD700 0%, #FFFACD 50%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse-gold {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(245, 197, 24, 0.3);
  }

  50% {
    box-shadow: 0 0 50px rgba(245, 197, 24, 0.6);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(8px);
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease both;
}

.animate-fade-in-delay-1 {
  animation: fadeInUp 0.8s ease 0.2s both;
}

.animate-fade-in-delay-2 {
  animation: fadeInUp 0.8s ease 0.4s both;
}

.animate-fade-in-delay-3 {
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navbar-bg);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

#navbar.scrolled {
  background: var(--navbar-scrolled);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.logo-icon {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 400;
  font-family: monospace;
}

.logo-text {
  color: var(--heading-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(245, 197, 24, 0.08);
}

.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(245, 197, 24, 0.08);
}

.mobile-menu.open {
  display: flex;
}

/* ===================== HERO ===================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  perspective: 1000px;
}

#hero * {
  transform-style: preserve-3d;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform-style: preserve-3d;
}

.floating-element {
  position: absolute;
  font-size: 3rem;
  opacity: 0.1;
  pointer-events: none;
  filter: blur(2px);
  color: var(--gold);
}

.float-1 { top: 20%; left: 15%; animation: float 12s infinite ease-in-out; transform: translateZ(100px); }
.float-2 { top: 60%; right: 10%; animation: float 15s infinite ease-in-out reverse; transform: translateZ(-50px); }
.float-3 { bottom: 15%; left: 25%; animation: float 10s infinite ease-in-out 2s; transform: translateZ(150px); }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg) translateZ(inherit); }
  50% { transform: translateY(-30px) rotate(10deg) translateZ(inherit); }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.6), transparent);
  top: -200px;
  right: -200px;
  animation: float 8s ease-in-out infinite;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.4), transparent);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-dark);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.scroll-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  animation: scrollBounce 1.5s ease infinite;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

.btn-primary {
  background: linear-gradient(135deg, #FFD700, #B8860B);
  color: #000000;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: rgba(245, 197, 24, 0.1);
}

.featured-outline {
  border-color: var(--gold) !important;
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: var(--text-primary);
}

.btn-outline-light:hover {
  background: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

[data-theme="dark"] .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ===================== THEME TOGGLE ===================== */
.theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  box-shadow: var(--card-shadow);
}

.theme-toggle:hover {
  border-color: var(--gold);
  background: var(--bg-secondary);
  transform: translateY(-2px) rotate(10deg);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* ===================== SECTION HEADER ===================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.2);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

/* ===================== PRODUCTS ===================== */
#products {
  padding: 100px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.product-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius);
  padding: 40px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
  position: relative;
  overflow: visible;
  transform-style: preserve-3d;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.product-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.2);
}

.product-card > * {
  transform: translateZ(50px);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card.featured {
  border-color: rgba(245, 197, 24, 0.4);
  background: linear-gradient(160deg, rgba(245, 197, 24, 0.06), var(--bg-card));
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.product-icon {
  font-size: 2.5rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.15);
  transform: translateZ(80px);
}

.product-badge {
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.25);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.featured-badge {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.product-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.product-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.product-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.price-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.price-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
}

.price-value span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ===================== WHY US ===================== */
#why {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================== PRICING ===================== */
#pricing {
  padding: 100px 0;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
}

.tab-btn:hover {
  border-color: var(--border-hover);
  color: var(--gold);
}

.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.pricing-content {
  display: none;
}

.pricing-content.active {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: var(--card-shadow);
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.featured-pricing {
  border-color: rgba(245, 197, 24, 0.5) !important;
  background: linear-gradient(160deg, rgba(245, 197, 24, 0.07), var(--bg-card));
  transform: scale(1.02);
}

.featured-pricing:hover {
  transform: scale(1.02) translateY(-5px) !important;
}

.pricing-tier {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 50px;
  display: inline-block;
}

.pricing-amount {
  margin-bottom: 8px;
}

.price-big {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--heading-color);
  line-height: 1;
}

.price-currency {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.monthly-sub {
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.15);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 16px 0 24px;
  display: inline-block;
}

.pricing-features {
  list-style: none;
  text-align: right;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pricing-cta {
  display: block;
  background: var(--bg-secondary);
  border: 1px solid var(--border-hover);
  color: var(--gold);
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font);
}

.pricing-cta:hover {
  background: rgba(245, 197, 24, 0.1);
}

.gold-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #000 !important;
  border: none !important;
}

.gold-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.4);
}

.free-trial-banner {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), rgba(245, 197, 24, 0.05));
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 1rem;
  text-align: center;
}

.free-trial-banner span:first-child {
  font-size: 1.8rem;
}

/* ===================== PROCESS ===================== */
#process {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  max-width: 200px;
  transition: all 0.3s;
}

.step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.step-content p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.step-connector {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ===================== CONTACT ===================== */
#contact {
  padding: 100px 0;
}

.contact-card {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), rgba(245, 197, 24, 0.02));
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 24px;
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.12), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}

.contact-card p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  position: relative;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  position: relative;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 250px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg);
  }

  .step {
    max-width: 100%;
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-card {
    padding: 40px 20px;
  }

  .free-trial-banner {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .featured-pricing {
    transform: scale(1);
  }

  .featured-pricing:hover {
    transform: translateY(-5px) !important;
  }
}

/* ===================== VISION ===================== */
#vision {
  padding: 100px 0;
  background: var(--bg-primary);
  text-align: center;
}

.vision-card {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 50px 30px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
}

.vision-quote {
  position: absolute;
  top: -15px;
  right: 30px;
  font-size: 7rem;
  font-family: serif;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}

.vision-card p {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.4;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.vision-author {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.vision-author::before,
.vision-author::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--border-hover);
}