/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --bg-obsidian: #050811;
  --bg-dark-section: #080f1e;
  --bg-card: rgba(10, 20, 38, 0.65);
  --bg-card-hover: rgba(16, 30, 58, 0.85);
  --border-glass: rgba(0, 229, 255, 0.15);
  --border-glass-hover: rgba(0, 229, 255, 0.4);
  
  --primary: #00e5ff;
  --primary-rgb: 0, 229, 255;
  --primary-dark: #00b8cc;
  --secondary: #4facfe;
  
  --accent: #ffd700;
  --accent-rgb: 255, 215, 0;
  --danger: #ff3366;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-glow: 0 0 20px rgba(0, 229, 255, 0.25);
  --shadow-glow-strong: 0 0 35px rgba(0, 229, 255, 0.45);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-obsidian);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Utility Containers */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

/* Section Header Styles */
.section {
  padding: 5rem 0;
  position: relative;
}

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

.section-tag {
  display: inline-block;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.section-title strong {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Common Buttons */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--bg-obsidian);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-strong);
  color: var(--bg-obsidian);
}

.btn-main:hover::before {
  opacity: 1;
}

.btn-main:active {
  transform: translateY(-1px);
}

.center-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.security-lock, .security-text {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(10, 25, 47, 0.8) 0%, var(--bg-obsidian) 100%);
}

.hero-inner {
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 650px;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.logo-badge span {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-description strong {
  color: var(--primary);
  font-weight: 600;
}

/* Price badges */
.price-badge-wrapper {
  display: inline-flex;
  flex-direction: column;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid var(--border-glass);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
}

.price-badge-old {
  text-decoration: line-through;
  color: var(--danger);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.price-badge-current {
  font-size: 1.1rem;
  color: var(--text-main);
}

.price-badge-current strong {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 800;
}

/* Specialist Photo */
.hero-photo {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 42%;
  max-width: 580px;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

/* Hero Background Graphics */
.hero-chart {
  position: absolute;
  left: 0;
  top: 15%;
  width: 55%;
  height: 70%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

/* Floating Cards container (3D simulation) */
.hero-cards-container {
  position: absolute;
  right: 15%;
  top: 15%;
  width: 380px;
  height: 450px;
  z-index: 1;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  width: 320px;
  height: 190px;
  border-radius: 16px;
  padding: 1.5rem;
  color: white;
  font-family: var(--font-title);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.5s ease-out;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #e0a96d 0%, #906020 100%);
  border-radius: 6px;
  position: relative;
}

.card-chip::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 10px;
  right: 10px;
  bottom: 5px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
}

.card-logo {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.card-number {
  font-size: 1.1rem;
  letter-spacing: 2.5px;
  margin: 1.5rem 0;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-holder {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.card-brand {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Card Skins */
.card-gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(153, 115, 0, 0.05) 100%);
  transform: rotate(-15deg) translate(0, 40px);
  z-index: 2;
  border-color: rgba(212, 175, 55, 0.3);
}

.card-platinum {
  background: linear-gradient(135deg, rgba(229, 228, 226, 0.25) 0%, rgba(140, 140, 140, 0.05) 100%);
  transform: rotate(-5deg) translate(100px, 160px);
  z-index: 3;
  border-color: rgba(229, 228, 226, 0.3);
}

.card-black {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.1) 100%);
  transform: rotate(8deg) translate(50px, 280px);
  z-index: 4;
  border-color: rgba(0, 229, 255, 0.25);
}

.secure-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.secure-info span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   AUDIENCE SECTION
   ========================================================================== */
.audience-section {
  background-color: var(--bg-dark-section);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.audience-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(0, 229, 255, 0.08);
}

.audience-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.audience-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.audience-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   EXPLANATORY SECTION (RATING VS SCORE)
   ========================================================================== */
.explanation-section {
  background: radial-gradient(circle at 90% 80%, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
}

.explanation-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

@media (min-width: 992px) {
  .explanation-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .exp-graphics, .exp-text {
    width: 47%;
  }
}

.exp-text .section-title {
  text-align: left;
}

.exp-text .section-subtitle {
  margin-left: 0;
  text-align: left;
  margin-bottom: 2rem;
}

.exp-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.point-bullet {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
}

.point-item span:last-child {
  font-size: 1.05rem;
}

/* Rating Gauge Graphic */
.exp-graphics {
  display: flex;
  justify-content: center;
  width: 100%;
}

.rating-visualizer {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 3rem 2rem;
  width: 100%;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

.gauge-container {
  position: relative;
  margin-bottom: 2.5rem;
}

.gauge {
  width: 80%;
  margin: 0 auto;
}

.gauge-value {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.gauge-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.5rem;
}

.vs-box {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.vs-container p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   PROCESS SECTION (HOW IT WORKS)
   ========================================================================== */
.process-section {
  background-color: var(--bg-dark-section);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--secondary) 50%, transparent 100%);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 3.5rem;
  padding-left: 50px;
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    width: 50%;
  }
  .timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
  }
  .timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
    text-align: left;
  }
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-obsidian);
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  z-index: 5;
  box-shadow: var(--shadow-glow);
}

@media (min-width: 768px) {
  .timeline-number {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  border-color: var(--border-glass-hover);
}

.timeline-content h4 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits-section {
  background: radial-gradient(circle at 10% 80%, rgba(0, 229, 255, 0.03) 0%, transparent 70%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 1.5rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.benefit-item:hover {
  border-color: var(--border-glass-hover);
  background: var(--bg-card-hover);
}

.ben-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 1rem;
  font-weight: 500;
}

.security-lock {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PRICING & OFFER SECTION
   ========================================================================== */
.pricing-section {
  background-color: var(--bg-dark-section);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.pricing-card {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.8) 0%, rgba(8, 15, 30, 0.95) 100%);
  border: 2px solid var(--primary);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-glow-strong);
  position: relative;
  backdrop-filter: blur(15px);
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 5rem 4rem;
  }
}

.pricing-card .price-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, #ffaa00 100%);
  color: var(--bg-obsidian);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 0.5rem 1.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.35);
}

.price-title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.price-title strong {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.price-features {
  text-align: left;
  list-style: none;
  max-width: 480px;
  margin: 0 auto 3.5rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-features li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.1rem;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-glass), transparent);
  margin-bottom: 3rem;
}

.price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.old-price {
  text-decoration: line-through;
  color: var(--danger);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.price-text {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.main-price {
  font-family: var(--font-title);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  margin: 0.5rem 0;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.installments {
  font-size: 1.15rem;
  color: var(--text-main);
  font-weight: 600;
}

.select-package-btn {
  width: 100%;
}

.secure-badge {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  background: radial-gradient(circle at 90% 10%, rgba(0, 229, 255, 0.02) 0%, transparent 70%);
}

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

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

.faq-item:hover {
  border-color: var(--border-glass-hover);
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary);
  transition: transform 0.3s ease;
}

/* horizontal line */
.faq-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

/* vertical line */
.faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(135deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-content p {
  padding: 0 2rem 1.75rem 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   FINAL CALL TO ACTION
   ========================================================================== */
.final-cta-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--bg-obsidian) 0%, var(--bg-dark-section) 100%);
  border-top: 1px solid var(--border-glass);
  text-align: center;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-heading {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

.cta-heading br {
  display: none;
}

@media (min-width: 768px) {
  .cta-heading br {
    display: block;
  }
}

.cta-heading span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-description {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.security-text {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #03050a;
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 4rem 0 2rem 0;
  font-size: 0.85rem;
  color: #4b5563;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-info h3 {
  font-family: var(--font-title);
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.footer-info p {
  max-width: 320px;
  line-height: 1.5;
}

.footer-legal-info p {
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.footer-legal-info p strong {
  color: var(--text-muted);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.6;
  text-align: justify;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS ADJUSTMENTS
   ========================================================================== */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .logo-badge {
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .price-badge-wrapper {
    margin-bottom: 2rem;
  }

  .hero-photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: 80%;
    margin: 2.5rem auto 0 auto;
    max-width: 380px;
    display: block;
    transform: none;
    order: 2;
  }

  .hero-cards-container {
    display: none; /* Hide cards on mobile/tablets for performance and spacing */
  }

  .hero-chart {
    width: 100%;
    top: 5%;
    opacity: 0.08;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }
  .btn-main {
    width: 100%;
    padding: 1.1rem 1.5rem;
  }
  .pricing-card {
    padding: 3rem 1.25rem;
  }
  .main-price {
    font-size: 3.5rem;
  }
  .faq-trigger {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  .faq-content p {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
