.elementor-25 .elementor-element.elementor-element-cc1203b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}body.elementor-page-25:not(.elementor-motion-effects-element-type-background), body.elementor-page-25 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#161616;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-25 .elementor-element.elementor-element-cc1203b{--content-width:1600px;}}/* Start custom CSS *//* ========================================
   AVIATOR PREDICTOR - ACTIVATION PAGE
   Static CSS for WordPress Elementor
   ======================================== */

/* CSS Variables */
:root {
  --background: 240 10% 4%;
  --foreground: 0 0% 95%;
  --card: 240 10% 6%;
  --card-foreground: 0 0% 95%;
  --popover: 240 10% 6%;
  --popover-foreground: 0 0% 95%;
  --primary: 4 75% 50%;
  --primary-foreground: 0 0% 100%;
  --secondary: 240 10% 12%;
  --secondary-foreground: 0 0% 95%;
  --muted: 240 10% 15%;
  --muted-foreground: 240 5% 60%;
  --accent: 45 100% 48%;
  --accent-foreground: 240 10% 4%;
  --destructive: 0 84% 60%;
  --border: 240 10% 18%;
  --input: 240 10% 18%;
  --ring: 4 75% 50%;
  --radius: 0.75rem;
  
  /* Custom */
  --glow-primary: 0 0 30px hsl(4 75% 50% / 0.5);
  --glow-accent: 0 0 30px hsl(45 100% 48% / 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

/* Utility Classes */
.relative { position: relative; }

.text-gradient-primary {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(0 75% 60%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Icons */
.icon { width: 1.25rem; height: 1.25rem; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-xl { width: 2.5rem; height: 2.5rem; }
.icon-xs { width: 0.75rem; height: 0.75rem; }

svg.icon, svg.icon-sm, svg.icon-lg, svg.icon-xl, svg.icon-xs {
  flex-shrink: 0;
}

/* Glass Card */
.glass-card {
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
}

/* Neon Lines */
.neon-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary)), transparent);
  margin: 1rem auto 0;
  max-width: 300px;
}

.neon-line-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--accent)), transparent);
  margin: 1rem auto 0;
  max-width: 300px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(4 75% 35%));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 0 30px hsl(var(--primary) / 0.4);
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-hero:hover {
  box-shadow: 0 0 50px hsl(var(--primary) / 0.6);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(35 100% 40%));
  color: hsl(var(--accent-foreground));
  box-shadow: 0 0 20px hsl(var(--accent) / 0.3);
}

.btn-gold:hover {
  box-shadow: 0 0 40px hsl(var(--accent) / 0.5);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid;
}

.badge-accent {
  background: hsl(var(--accent) / 0.2);
  color: hsl(var(--accent));
  border-color: hsl(var(--accent) / 0.3);
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-sm {
  padding: 4rem 0;
}

.section-alt {
  position: relative;
}

.section-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, hsl(var(--secondary) / 0.3), transparent);
  pointer-events: none;
}

.section-bg-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, hsl(var(--accent) / 0.05), transparent);
  pointer-events: none;
}

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

.section-title {
  font-size: 1.5rem;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.section-title-md {
  font-size: 1.75rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.section-title-lg {
  font-size: 2rem;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-title-lg {
    font-size: 2.5rem;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(240 10% 8%) 50%, hsl(4 75% 10%) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.hero-glow-1 {
  top: 5rem;
  left: 2rem;
  width: 18rem;
  height: 18rem;
  background: hsl(var(--primary) / 0.2);
}

.hero-glow-2 {
  bottom: 5rem;
  right: 2rem;
  width: 24rem;
  height: 24rem;
  background: hsl(var(--accent) / 0.1);
  filter: blur(120px);
  animation-delay: 0.4s;
}

.hero-glow-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 37rem;
  height: 37rem;
  background: hsl(var(--primary) / 0.05);
  filter: blur(150px);
}

.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: 
    linear-gradient(hsl(var(--primary) / 0.3) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--primary) / 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--accent) / 0.3);
  background: hsl(var(--accent) / 0.05);
  margin-bottom: 2rem;
  color: hsl(var(--accent));
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-subtext {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-icon-item span {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.hero-icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: hsl(var(--secondary) / 0.5);
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, hsl(var(--background)), transparent);
}

/* ========================================
   PRICE SECTION
   ======================================== */
.price-card-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.price-card-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--primary)));
  border-radius: 1.5rem;
  opacity: 0.5;
  filter: blur(15px);
  animation: pulse-glow 2s ease-in-out infinite;
}

.price-card {
  position: relative;
  padding: 2.5rem;
  text-align: center;
  border: 2px solid hsl(var(--primary) / 0.5);
}

.price-icon-box {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--accent) / 0.2));
  border: 1px solid hsl(var(--primary) / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
}

.price-display {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 4rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .price-amount {
    font-size: 5rem;
  }
}

.price-currency {
  font-size: 1.5rem;
  color: hsl(var(--muted-foreground));
  margin-left: 0.5rem;
}

.price-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.price-note {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.lifetime-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.3);
  color: hsl(var(--accent));
  font-weight: 600;
}

/* ========================================
   WHY ACTIVATION SECTION
   ======================================== */
.reason-cards {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.reason-card {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.reason-card:hover {
  border-color: hsl(var(--primary) / 0.5);
  transform: translateY(-8px);
}

.reason-icon-box {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(var(--accent) / 0.2), hsl(var(--primary) / 0.2));
  border: 1px solid hsl(var(--accent) / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
  transition: transform 0.3s ease;
}

.reason-card:hover .reason-icon-box {
  transform: scale(1.1);
}

.reason-card h3 {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.reason-card p {
  color: hsl(var(--muted-foreground));
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  display: none;
}

@media (min-width: 768px) {
  .timeline-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--primary)));
  }
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-left: 6rem;
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    justify-content: flex-start;
  }
  
  .timeline-item-reverse {
    flex-direction: row-reverse;
  }
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: hsl(var(--card));
  border: 2px solid hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-primary);
  z-index: 10;
}

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

.timeline-number span {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.timeline-content {
  flex: 1;
  padding: 1.5rem;
  transition: border-color 0.3s ease;
}

@media (min-width: 768px) {
  .timeline-content {
    width: calc(50% - 4rem);
    flex: none;
  }
  
  .timeline-item:not(.timeline-item-reverse) .timeline-content {
    margin-right: auto;
    padding-right: 2rem;
  }
  
  .timeline-item-reverse .timeline-content {
    margin-left: auto;
    padding-left: 2rem;
  }
}

.timeline-content:hover {
  border-color: hsl(var(--accent) / 0.5);
}

.timeline-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.timeline-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--accent) / 0.2);
  border: 1px solid hsl(var(--accent) / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
  flex-shrink: 0;
}

.timeline-header h3 {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.timeline-header p {
  color: hsl(var(--muted-foreground));
}

.timeline-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--accent));
}

/* ========================================
   PAYMENT SECTION
   ======================================== */
.payment-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

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

.payment-card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--accent)), hsl(var(--primary)));
  border-radius: 1.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
  opacity: 0.75;
}

.payment-card {
  position: relative;
  background: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid hsl(var(--primary) / 0.5);
}

@media (min-width: 768px) {
  .payment-card {
    padding: 2.5rem;
  }
}

.payment-header {
  text-align: center;
  margin-bottom: 2rem;
}

.payment-icon-box {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.3), hsl(var(--accent) / 0.3));
  border: 1px solid hsl(var(--primary) / 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
}

.payment-header h2 {
  font-size: 1.5rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.payment-price {
  font-size: 2rem;
  font-weight: 700;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.form-group input,
.form-group select {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  padding-left: 3rem;
  font-size: 1rem;
  font-family: inherit;
  color: hsl(var(--foreground));
  background: hsl(var(--secondary) / 0.5);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

.form-group input::placeholder {
  color: hsl(var(--muted-foreground));
}

.select-wrapper select {
  padding-left: 1rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.form-hint {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.crypto-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.crypto-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(var(--secondary) / 0.5);
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--accent));
  transition: border-color 0.2s ease;
}

.crypto-logo:hover {
  border-color: hsl(var(--accent) / 0.5);
}

.payment-note {
  font-size: 0.75rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
}

/* Button Loading State */
.btn-loading {
  display: none;
}

.btn.loading .btn-text,
.btn.loading .icon:not(.spin) {
  display: none;
}

.btn.loading .btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.feature-card {
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: hsl(var(--accent) / 0.5);
  transform: translateY(-4px);
}

.feature-card > div {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--accent) / 0.2), hsl(var(--accent) / 0.05));
  border: 1px solid hsl(var(--accent) / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.1);
}

.feature-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background: hsl(var(--secondary) / 0.5);
  border: 1px solid hsl(var(--border));
  transition: border-color 0.2s ease;
}

.trust-badge:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.trust-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.2);
  border: 1px solid hsl(var(--primary) / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
}

.trust-badge h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.trust-badge p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.trust-note {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-icon-box {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  background: hsl(var(--secondary) / 0.5);
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
}

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

.faq-item {
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: hsl(var(--primary) / 0.5);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: hsl(var(--foreground));
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: hsl(var(--accent));
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--muted-foreground));
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
  max-height: 500px;
}

.faq-content p {
  padding: 0 1.5rem 1.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* ========================================
   SUPPORT SECTION
   ======================================== */
.support-card-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.support-card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, hsl(var(--accent) / 0.3), hsl(var(--primary) / 0.3));
  border-radius: 1.5rem;
  filter: blur(15px);
  opacity: 0.5;
}

.support-card {
  position: relative;
  padding: 2rem 2.5rem;
  text-align: center;
}

.support-icon-box {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(var(--accent) / 0.2), hsl(var(--primary) / 0.2));
  border: 1px solid hsl(var(--accent) / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
}

.support-card h2 {
  font-size: 1.5rem;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .support-card h2 {
    font-size: 1.75rem;
  }
}

.support-text {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsl(var(--secondary) / 0.5);
  border: 1px solid hsl(var(--border));
  margin-bottom: 2rem;
  color: hsl(var(--accent));
  font-size: 0.875rem;
}

.response-badge span:last-child {
  color: hsl(var(--muted-foreground));
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--background)), hsl(var(--background)));
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: float 6s ease-in-out infinite;
}

.cta-glow-1 {
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: hsl(var(--primary) / 0.2);
}

.cta-glow-2 {
  bottom: 0;
  right: 25%;
  width: 18rem;
  height: 18rem;
  background: hsl(var(--accent) / 0.1);
  filter: blur(100px);
  animation-delay: 0.4s;
}

.cta-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: 
    linear-gradient(hsl(var(--primary) / 0.5) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--primary) / 0.5) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-icon-box {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.3), hsl(var(--accent) / 0.3));
  border: 1px solid hsl(var(--primary) / 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
  animation: pulse-glow 2s ease-in-out infinite;
}

.cta-title {
  font-size: 2rem;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  flex-wrap: wrap;
}

.cta-indicators > span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.indicator-green {
  background: #22c55e;
}

.indicator-gold {
  background: hsl(var(--accent));
}

.indicator-red {
  background: hsl(var(--primary));
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 2rem 0;
  border-top: 1px solid hsl(var(--border));
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 350px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.error {
  border-color: hsl(var(--destructive) / 0.5);
}

.toast-title {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.toast-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px hsl(var(--primary) / 0.4);
  }
  50% {
    box-shadow: 0 0 40px hsl(var(--primary) / 0.6);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.6s ease-out forwards;
  opacity: 0;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-400 {
  animation-delay: 400ms;
}

.delay-600 {
  animation-delay: 600ms;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .hero-icons {
    gap: 1rem;
  }
  
  .hero-icon-box {
    width: 3rem;
    height: 3rem;
  }
  
  .hero-icon-box svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .btn-hero {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .cta-indicators {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-badge {
    width: 100%;
    max-width: 300px;
  }
}/* End custom CSS */