/* ======= BASE VARIABLES ======= */
:root {
  --bg-dark: #0a0f1c; /* Very dark navy */
  --bg-darker: #050810;
  --bg-card: rgba(20, 30, 50, 0.4);
  --border-glass: rgba(255, 255, 255, 0.08);
  
  --primary-orange: #f97316;
  --primary-orange-hover: #ea580c;
  --accent-blue: #3b82f6;
  --accent-yellow: #eab308;
  --accent-green: #22c55e;
  
  --text-white: #ffffff;
  --text-gray: #cbd5e1;
  --text-dark: #0f172a;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-glow-orange: 0 0 20px rgba(249, 115, 22, 0.4);
  --shadow-glow-blue: 0 0 20px rgba(59, 130, 246, 0.4);
  --shadow-glow-yellow: 0 0 20px rgba(234, 179, 8, 0.4);
}

/* ======= RESET & GLOBAL ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-gray);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ======= UTILITIES ======= */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
}

.glass-heavy {
  background: rgba(15, 25, 45, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.highlight-text {
  color: var(--primary-orange);
}

.text-orange {
  color: var(--primary-orange);
}

.shadow-strong {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.rounded-lg {
  border-radius: 16px;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hover-scale {
  transition: transform 0.4s ease;
}

.hover-scale:hover {
  transform: scale(1.02);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-orange) 0%, #ff8a3d 100%);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  padding: 16px 32px;
  border-radius: 50px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ff8a3d 0%, var(--primary-orange) 100%);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.5);
  transform: translateY(-2px);
}

.btn-large {
  font-size: 1.4rem;
  padding: 20px 40px;
  width: 100%;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
  70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.pulse {
  animation: pulse 2.5s infinite;
}

@keyframes pulse-strong {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.8); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(249, 115, 22, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.pulse-strong {
  animation: pulse-strong 2s infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ======= SECTIONS ======= */

/* Top Banner */
.top-banner {
  background-color: var(--primary-orange);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  padding: 60px 0 80px;
  position: relative;
}

.super-headline {
  text-align: center;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.subheadline {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.headline {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.hero-image {
  flex: 1;
  max-width: 50%;
  border-radius: 16px;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.glass-img {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.05);
}

.hero-text-content {
  flex: 1;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-desc strong {
  color: var(--text-white);
}

.highlight-box {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--accent-blue);
  padding: 15px 20px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box strong {
  color: var(--text-white);
}

.strong-end {
  font-size: 1.15rem;
  color: var(--text-white);
  font-weight: 500;
  margin-bottom: 40px;
}

.hero-btn {
  display: block;
  width: fit-content;
}

/* Section Common */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: -30px;
  margin-bottom: 50px;
}

/* Achievements */
.achievements {
  padding: 80px 0;
  background-color: var(--bg-darker);
  position: relative;
}

.achievements::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  padding: 40px 30px;
  text-align: center;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
}

.glow-orange { text-shadow: var(--shadow-glow-orange); }
.glow-blue { text-shadow: var(--shadow-glow-blue); }
.glow-yellow { text-shadow: var(--shadow-glow-yellow); }

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-white);
}

.card p {
  color: var(--text-gray);
  font-size: 1rem;
}

/* Modules */
.modules {
  padding: 100px 0;
}

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.module-item {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  transition: all 0.3s ease;
}

.module-item:hover {
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(30, 40, 60, 0.6);
  transform: translateX(5px);
}

.module-num {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--primary-orange);
  font-size: 1.1rem;
  min-width: 110px;
  letter-spacing: 1px;
}

.module-content {
  flex: 1;
  font-size: 1rem;
}

.module-content strong {
  color: var(--text-white);
  font-size: 1.1rem;
}

.arrow {
  margin: 0 10px;
  font-size: 0.9rem;
}

.cta-container {
  text-align: center;
  margin-top: 60px;
}

/* Projects */
.projects {
  padding: 80px 0;
  background-color: var(--bg-darker);
  text-align: center;
}

.project-showcase {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
  display: inline-block;
  border-radius: 20px;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Bonuses */
.bonuses {
  padding: 100px 0;
}

.glow-text {
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.highlight-box-subtitle {
  background: rgba(249, 115, 22, 0.1);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 60px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.bonus-card {
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.border-top-orange { border-top: 4px solid var(--primary-orange); }
.border-top-yellow { border-top: 4px solid var(--accent-yellow); }
.border-top-blue { border-top: 4px solid var(--accent-blue); }
.border-top-green { border-top: 4px solid var(--accent-green); }

.bonus-img-container {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.bonus-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-img {
  transform: scale(1.08);
}

.bonus-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-white);
  text-transform: uppercase;
}

.bonus-card p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.bonus-value {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.bonus-tag {
  background: linear-gradient(90deg, #10b981, #059669);
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-block;
  text-transform: uppercase;
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="%23050810"/><path d="M0 50l50-50 50 50-50 50z" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>');
  background-attachment: fixed;
}

.pricing-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 50px;
  text-align: center;
  border-top: 5px solid var(--primary-orange);
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.price-list {
  list-style: none;
  text-align: left;
  max-width: 500px;
  margin: 0 auto 30px;
}

.price-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--text-white);
}

.price-list .check {
  color: var(--accent-green);
  font-weight: bold;
  margin-right: 10px;
}

.price-list span:last-child {
  color: rgba(255,255,255,0.4);
}

.price-total {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: bold;
  color: var(--text-white);
  margin-bottom: 40px;
}

.strikethrough-red {
  position: relative;
  display: inline-block;
}

.strikethrough-red::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -5px;
  right: -5px;
  height: 3px;
  background-color: #ef4444;
  transform: rotate(-5deg);
}

.offer-box {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 16px;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.offer-title {
  font-size: 1.2rem;
  color: var(--primary-orange);
  margin-bottom: 15px;
}

.huge-price {
  font-size: 5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.currency {
  font-size: 2rem;
  vertical-align: super;
}

.payment-steps {
  text-align: left;
  background: rgba(0,0,0,0.3);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.steps-title {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 20px;
  text-align: center;
}

.steps-list {
  list-style: none;
}

.steps-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.steps-list strong {
  color: var(--primary-orange);
}

.secure-badges {
  margin-top: 25px;
  font-size: 0.95rem;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.guarantee-text {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ */
.faq {
  padding: 80px 0 120px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  border-radius: 12px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 24px 30px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(255,255,255,0.05);
}

.accordion-header .icon {
  font-size: 1.5rem;
  color: var(--primary-orange);
  transition: transform 0.3s ease;
}

.accordion-header.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-header.active + .accordion-content {
  padding: 0 30px 24px;
}

.accordion-content p {
  color: var(--text-gray);
}

/* Footer */
footer {
  background-color: #030408;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.cookie-notice {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 992px) {
  .headline { font-size: 2.8rem; }
  .hero-content { flex-direction: column; text-align: center; }
  .hero-image { max-width: 80%; }
  .hero-btn { margin: 0 auto; }
  .highlight-box { text-align: left; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .headline { font-size: 2.2rem; }
  .subheadline { font-size: 1.2rem; }
  .hero { padding: 40px 0; }
  .hero-image { max-width: 100%; }
  .cards-grid { grid-template-columns: 1fr; }
  .module-item { flex-direction: column; align-items: flex-start; gap: 10px; }
  .arrow { display: none; }
  .pricing-box { padding: 40px 20px; }
  .huge-price { font-size: 4rem; }
  .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .headline { font-size: 1.8rem; }
  .btn-primary { padding: 14px 24px; font-size: 1rem; }
  .price-list li { flex-direction: column; align-items: flex-start; gap: 5px; }
  .huge-price { font-size: 3rem; }
  .accordion-header { font-size: 1rem; padding: 20px; }
}
