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

/* --- CUSTOM PROPERTIES (DESIGN SYSTEM) --- */
:root {
  --bg-main: #070913;
  --bg-card: rgba(13, 17, 33, 0.7);
  --bg-card-hover: rgba(20, 26, 48, 0.85);
  --border-card: rgba(255, 255, 255, 0.06);
  --border-card-active: rgba(99, 102, 241, 0.4);
  
  --color-primary: #6366f1;       /* Indigo / Violet */
  --color-primary-rgb: 99, 102, 241;
  --color-secondary: #06b6d4;     /* Cyan / Cyber Teal */
  --color-secondary-rgb: 6, 182, 212;
  --color-accent: #10b981;        /* Emerald / Green Success */
  --color-accent-rgb: 16, 185, 129;
  
  --text-main: #f8fafc;           /* Crisp Slate 50 */
  --text-muted: #94a3b8;          /* Cool Slate 400 */
  --text-dark: #475569;           /* Deep Slate 600 */
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glow-shadow: 0 0 40px rgba(99, 102, 241, 0.15);
}

/* --- RESET & BASIC STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* --- AMBIENT NEON GLOW EFFECTS --- */
body::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -2;
  pointer-events: none;
  filter: blur(120px);
  animation: floatGlow 15s infinite alternate ease-in-out;
}

body::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -2;
  pointer-events: none;
  filter: blur(120px);
  animation: floatGlow 18s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 30px) scale(1.1); }
}

/* Stunning Cyber Grid Overlay */
.grid-overlay {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1) 30%, rgba(0,0,0,0.1) 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1) 30%, rgba(0,0,0,0.1) 80%);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  color: var(--text-muted);
  line-height: 1.6;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 70%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-text-violet {
  text-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.glow-text-cyan {
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

/* --- CONTAINER & SPACING --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* --- GLASSMORPHIC CARDS --- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 1.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.08);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #4f46e5 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

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

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #0891b2 100%);
  color: #070913;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
}

/* --- BADGES --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- HEADER / NAVBAR --- */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-main);
  text-decoration: none;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.75rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stunning 3D Book Mockup */
.book-mockup-wrapper {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-container {
  width: 320px;
  height: 440px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-22deg) rotateX(10deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  animation: bookFloat 6s infinite ease-in-out;
}

@keyframes bookFloat {
  0% { transform: rotateY(-22deg) rotateX(10deg) translateY(0); }
  50% { transform: rotateY(-18deg) rotateX(12deg) translateY(-15px); }
  100% { transform: rotateY(-22deg) rotateX(10deg) translateY(0); }
}

.book-container:hover {
  transform: rotateY(-10deg) rotateX(5deg) scale(1.02);
}

.book-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d1121 0%, #151b33 100%);
  border-radius: 4px 16px 16px 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    -10px 20px 40px rgba(0, 0, 0, 0.5),
    0px 0px 50px rgba(99, 102, 241, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  transform: translateZ(25px);
  z-index: 5;
  overflow: hidden;
}

.book-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
  z-index: -1;
}

/* Spine effect */
.book-cover::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent);
}

.book-cover .logo-strip {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.book-cover .main-title {
  font-size: 2.25rem;
  line-height: 1.1;
  color: #ffffff;
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-weight: 800;
}

.book-cover .sub-title {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.book-cover .footer-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.book-cover .author {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.book-spine {
  position: absolute;
  width: 50px;
  height: 100%;
  background: #090c17;
  left: -25px;
  top: 0;
  transform: rotateY(-90deg) translateZ(0);
  border-radius: 4px 0 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.book-pages {
  position: absolute;
  width: 310px;
  height: 430px;
  background: #f1f5f9;
  right: -5px;
  top: 5px;
  transform: translateZ(0);
  z-index: 1;
  border-radius: 0 12px 12px 0;
  box-shadow: 
    0px 10px 20px rgba(0, 0, 0, 0.3),
    inset -5px 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

/* --- TRUST SIGNALS (TICKER) --- */
.trust-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(255, 255, 255, 0.01);
}

.trust-title {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  font-weight: 600;
}

.trust-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  opacity: 0.65;
  transition: var(--transition-smooth);
}

.trust-logos:hover {
  opacity: 0.95;
}

.trust-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-logo span {
  color: var(--color-primary);
}

/* --- BENEFITS / FEATURES --- */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card .icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

.benefit-card:hover .icon-wrapper {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
  transform: scale(1.05);
  transition: var(--transition-smooth);
}

.benefit-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* --- THE VALUE PROPOSITION (MID SECTION) --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.split-image-panel {
  position: relative;
  display: flex;
  justify-content: center;
}

.preview-screen {
  width: 100%;
  max-width: 480px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.preview-header {
  background: #111524;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dots {
  display: flex;
  gap: 0.35rem;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.preview-tab {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-left: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-body {
  background: #090d16;
  padding: 2rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  color: #a5b4fc;
  height: 280px;
  overflow-y: auto;
}

.console-line {
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.console-line span.cyan { color: var(--color-secondary); }
.console-line span.green { color: var(--color-accent); }
.console-line span.white { color: #ffffff; }

/* --- INTERACTIVE TESTIMONIALS CAROUSEL --- */
.testimonials-section {
  background: rgba(255, 255, 255, 0.005);
}

.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  position: relative;
}

.testimonial-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  margin: 0 auto 1.5rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
}

.quote-icon {
  font-size: 3rem;
  color: rgba(99, 102, 241, 0.15);
  position: absolute;
  top: 1.5rem;
  left: 2.5rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.25rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--color-secondary);
  font-weight: 600;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--border-card);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-primary);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

/* --- THE CLOSING CTA (PRICING SYSTEM) --- */
.pricing-section {
  background: relative;
}

.pricing-card-wrapper {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

/* Glowing Accent behind card */
.pricing-card-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
  border-radius: 1.6rem;
  z-index: -1;
  opacity: 0.75;
  filter: blur(8px);
  transition: var(--transition-smooth);
}

.pricing-card-wrapper:hover::before {
  filter: blur(16px);
  opacity: 0.95;
}

.pricing-card {
  background: #0a0d1d;
  border-radius: 1.5rem;
  padding: 3.5rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.pricing-header {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.pricing-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.price-block {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.price-strike {
  font-size: 1.5rem;
  color: var(--text-dark);
  text-decoration: line-through;
  font-weight: 500;
}

.price-main {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.price-currency {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-features li svg {
  color: var(--color-accent);
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.pricing-footer {
  text-align: center;
}

.secure-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dark);
  margin-top: 1.25rem;
}

/* --- INTERACTIVE FAQ (ACCORDION) --- */
.faq-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-wrapper {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Active State for FAQ */
.faq-item.active {
  border-color: var(--border-card-active);
  background: var(--bg-card-hover);
}

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

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

/* --- FOOTER --- */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 4rem 0 3rem;
  background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 280px;
  font-size: 0.9rem;
}

.footer-links h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-dark);
}

/* --- SUCCESS PAGE SPECIFIC DESIGN --- */
.success-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.success-card {
  max-width: 580px;
  width: 100%;
  text-align: center;
  padding: 4rem 3rem;
}

.success-icon-badge {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 2.5rem;
  margin: 0 auto 2rem;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.success-card h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.success-card p {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.success-details {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.detail-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.detail-label {
  color: var(--text-dark);
  font-weight: 500;
}

.detail-val {
  color: var(--text-main);
  font-weight: 600;
}

/* Loading Spinner */
.spinner {
  border: 3px solid rgba(99, 102, 241, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: var(--color-primary);
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
    padding-top: 6rem;
  }
  
  .hero-content p {
    margin: 0 auto 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .split-section {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 6rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
  }
  
  .pricing-card {
    padding: 2.5rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
