:root {
  /* Color Palette */
  --bg-color: #0F172A;
  --bg-color-dark: #0B1120;
  --text-color: #F8FAFC;
  --text-muted: #94A3B8;
  --primary-accent: #EAB308; /* Safety Yellow */
  --primary-accent-hover: #FACC15;
  --secondary-accent: #38BDF8; /* Electric Blue */
  --glass-bg: rgba(30, 41, 59, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Typography */
  --font-main: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 70px 20px;
  height: auto !important;
  min-height: auto !important;
}

.dark-bg {
  background-color: var(--bg-color-dark);
}

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

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #F8FAFC, #94A3B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-accent);
  margin: 20px 0 15px;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto 20px;
}

.highlight-text {
  font-weight: 600;
  color: var(--primary-accent);
  font-size: 1.25rem;
}

/* Glassmorphism utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(234, 179, 8, 0.3); /* Subtle yellow border on hover */
}

/* Hero Section */
.hero {
  position: relative;
  background-color: #061121;
  background-image: linear-gradient(rgba(6, 17, 33, 0.75), rgba(6, 17, 33, 0.95)), url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.41192954098186574.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 850px;
  max-height: 950px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.hero-container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.hero-col-left {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-col-right {
  width: 52%;
  height: 100%;
  display: flex;
}

.hero-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  display: inline-block;
  background-color: #FACC15;
  color: #000;
  font-weight: 800;
  padding: 8px 16px;
  font-size: 1.1rem;
  margin-bottom: 20px;
  align-self: flex-start;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  line-height: 0.9;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.text-white { color: #FFF; }
.text-yellow { color: #FACC15; }

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-text {
  font-size: 1.25rem;
  color: #E2E8F0;
  margin-bottom: 30px;
  max-width: 90%;
}

.hero-benefits-row {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.3;
}

.feature-item i {
  font-size: 2.5rem;
}

.hero-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.btn-green {
  background: linear-gradient(to bottom, #2ecc71, #27ae60);
  border: 1px solid #2ecc71;
  color: #FFF;
  border-radius: 8px;
  padding: 20px 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
  transition: transform 0.2s ease, filter 0.2s ease;
  width: 55%;
}

.btn-green:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

.btn-small-text {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-price {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 40%;
}

.hero-guarantee i {
  font-size: 4rem;
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: #94A3B8;
}

.guarantee-text strong {
  font-size: 1.3rem;
  color: #FFF;
  font-weight: 800;
}

.mobile-only { display: none !important; }

@media (max-width: 1200px) {
  .hero { min-height: auto; max-height: none; padding: 60px 0; }
  .hero-title { font-size: 5rem; }
  .btn-green { padding: 15px 20px; width: 50%; }
  .btn-price { font-size: 3rem; }
  .hero-guarantee { width: 45%; }
}

@media (max-width: 992px) {
  .hero-top-row { flex-direction: column; gap: 40px; }
  .hero-col-left { width: 100%; align-items: center; text-align: center; }
  .hero-badge { align-self: center; }
  .hero-text { max-width: 100%; }
  .hero-col-right { width: 100%; }
  .hero-benefits-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-bottom-row { flex-direction: column; gap: 30px; }
  .btn-green { width: 100%; }
  .hero-guarantee { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
  
  .hero { padding: 20px 0; }
  .hero-container { display: flex; flex-direction: column; }
  
  .hero-top-row { order: 1; gap: 15px; }
  .hero-badge { margin-bottom: 10px; font-size: 0.95rem; }
  .hero-title { font-size: 3.5rem; margin-bottom: 5px; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 10px; }
  .hero-text { font-size: 1.1rem; margin-bottom: 0; }
  
  .hero-col-right { width: 100%; display: flex; justify-content: center; margin-top: 10px; }
  .hero-img-cover { width: 65%; height: auto; object-fit: contain; }
  
  .hero-bottom-row { order: 2; margin-top: 15px; gap: 10px; width: 100%; align-items: center; }
  .mobile-cta-title { font-size: 0.9rem; font-weight: 700; color: #FFF; text-align: center; margin-bottom: -5px; }
  .mobile-price { font-size: 3.5rem; font-weight: 800; color: #FFF; line-height: 1; text-align: center; margin-bottom: 10px; }
  
  .btn-green { width: 94%; padding: 15px; }
  .btn-small-text.mobile-only { font-size: 1.1rem; font-weight: 800; }
  .btn-price-small.mobile-only { font-size: 1.3rem; font-weight: 800; }
  
  .security-line { font-size: 0.75rem; color: #94A3B8; text-align: center; font-weight: 600; margin-top: 5px; }
  
  .hero-benefits-row { order: 3; margin-top: 15px; padding: 15px 0 0 0; gap: 15px; border-bottom: none; }
  .feature-item { font-size: 0.75rem; gap: 5px; flex-direction: column; text-align: center; }
  .feature-item i { font-size: 1.6rem; }
}

.benefits-list {
  text-align: left;
  max-width: 500px;
  margin: 0 auto 40px;
}

.benefits-list.align-left {
  margin: 0;
}

.benefits-list li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefits-list i {
  color: var(--primary-accent);
  font-size: 1.5rem;
}

/* Pricing Card (Hero & Bottom) */
.pricing-card, .final-offer-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(145deg, rgba(30,41,59,0.8), rgba(15,23,42,0.9));
}

.pulse-border {
  animation: borderPulse 3s infinite;
}

@keyframes borderPulse {
  0% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(234, 179, 8, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0); }
}

.price-action {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price, .huge-price {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 24px;
  line-height: 1;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #EAB308, #FACC15);
  color: #0F172A;
  font-weight: 800;
  font-size: 1.25rem;
  padding: 18px 32px;
  border-radius: 8px;
  width: 100%;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(234, 179, 8, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(234, 179, 8, 0.6);
  background: linear-gradient(90deg, #FACC15, #FDE047);
}

.cta-large {
  font-size: 1.5rem;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-price {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
  margin-top: 5px;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.security-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.security-badges i {
  color: #22C55E; /* Green for security */
}

/* Section 2: Opportunity Redesign */
.opportunity-redesign { 
  position: relative; 
  overflow: hidden; 
  padding: 80px 0; 
  background-color: #030B1C !important; 
  background-image: none !important;
}
.relative-z { position: relative; z-index: 2; }

.opp-top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 50px; }
.opp-main-title-wrapper { border-left: 6px solid var(--primary-accent); padding-left: 20px; margin-bottom: 25px; }
.opp-main-title { font-family: "Bebas Neue", sans-serif; font-size: 3.5rem; color: #FFF; line-height: 1.1; letter-spacing: 0.5px; }
.opp-main-desc { font-size: 1.1rem; color: #CBD5E1; margin-bottom: 30px; }

.opp-features-list { display: flex; flex-direction: column; gap: 20px; }
.opp-features-list li { display: flex; align-items: flex-start; gap: 15px; font-size: 1rem; color: #E2E8F0; }
.opp-icon-wrapper { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.opp-icon-wrapper i { font-size: 1.2rem; color: #FFF; }
.opp-icon-yellow { background: var(--primary-accent); border: none; }
.opp-icon-yellow i { color: #111827; }
.opp-highlight-item { background: rgba(255, 255, 255, 0.03); padding: 15px; border-radius: 8px; border-left: 3px solid var(--primary-accent); }
.font-bold { font-weight: 700; }

.opp-right-visual { display: flex; justify-content: center; align-items: center; }
.opp-building-img { max-width: 100%; height: auto; }

.opp-bottom-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.opp-step-card { position: relative; display: flex; align-items: center; gap: 15px; background: #0F172A; border: 1px solid var(--primary-accent); border-radius: 8px; padding: 20px; }
.opp-step-number { position: absolute; top: -15px; left: 15px; background: var(--primary-accent); color: #111827; font-weight: 800; font-size: 1rem; padding: 2px 10px; border-radius: 4px; }
.opp-step-hexagon { width: 60px; height: 60px; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); background: transparent; border: 2px solid var(--primary-accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.opp-step-hexagon i { font-size: 1.8rem; color: var(--primary-accent); }
.opp-step-text h4 { font-family: "Bebas Neue", sans-serif; font-size: 1.5rem; color: #FFF; margin-bottom: 5px; line-height: 1.1; }
.opp-step-text p { font-size: 0.85rem; color: #CBD5E1; line-height: 1.4; }

.opp-banner { display: flex; align-items: center; justify-content: center; gap: 15px; background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.1), transparent); border-top: 1px solid rgba(234, 179, 8, 0.3); border-bottom: 1px solid rgba(234, 179, 8, 0.3); padding: 20px 0; margin-top: 20px; text-align: center; }
.opp-banner i { font-size: 2.5rem; color: var(--primary-accent); }
.opp-banner h3 { font-family: "Bebas Neue", sans-serif; font-size: 3rem; font-style: italic; color: var(--primary-accent); margin: 0; letter-spacing: 1px; }

/* Section 3: Courses */
.courses-redesign {
  padding: 60px 0;
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.04688236546672386.png') !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
}
.courses-redesign-header { margin-bottom: 50px; }
.courses-badge { display: inline-block; background-color: var(--primary-accent); color: #111827; font-weight: 800; padding: 6px 16px; font-size: 1.2rem; margin-bottom: 5px; border-radius: 4px; }
.courses-title { font-family: "Bebas Neue", sans-serif; font-size: 4rem; color: #FFF; margin: 0; line-height: 1.1; letter-spacing: 1px; }
.courses-subtitle { font-size: 1.15rem; color: #E2E8F0; max-width: 700px; margin: 10px auto 0; font-weight: 400; }
.text-yellow { color: var(--primary-accent); }

.courses-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }

.courses-card { 
  background-color: #0F172A; 
  border: 1px solid #1E293B; 
  border-radius: 12px; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
}
.courses-card-img-wrapper { position: relative; height: 180px; }
.courses-card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.courses-card-icon {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background-color: var(--primary-accent);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.courses-card-icon i { font-size: 2rem; color: #111827; }

.courses-card-content { padding: 40px 20px 25px; display: flex; flex-direction: column; flex-grow: 1; text-align: left; }
.courses-card-content h3 { font-family: "Bebas Neue", sans-serif; font-size: 2rem; color: #FFF; margin-bottom: 10px; line-height: 1.1; letter-spacing: 0.5px; }
.courses-card-desc { font-size: 0.95rem; color: #CBD5E1; margin-bottom: 20px; line-height: 1.5; }

.courses-card-list { display: flex; flex-direction: column; gap: 10px; }
.courses-card-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; color: #E2E8F0; line-height: 1.4; }
.courses-card-list i { font-size: 1.2rem; margin-top: 2px; }

.courses-benefits-bar {
  display: flex;
  justify-content: space-between;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 30px;
}
.courses-benefit-item { display: flex; align-items: center; gap: 15px; }
.courses-benefit-item i { font-size: 2.5rem; }
.courses-benefit-text { text-align: left; }
.courses-benefit-text h4 { font-size: 1rem; color: #FFF; font-weight: 700; margin-bottom: 2px; }
.courses-benefit-text p { font-size: 0.85rem; color: #CBD5E1; line-height: 1.3; }

/* Section 4: Evolution */
.evolution-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.evolution-text { text-align: left; }
.clients-list li { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; margin-bottom: 12px; }
.clients-list i { color: var(--primary-accent); font-size: 1.5rem; }
.flex-center-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; min-height: 300px; }

/* Section 5: Deliverables Redesign */
.deliverables-redesign { position: relative; padding: 80px 0; background-color: #030a14; overflow: hidden; }
.deliv-bg-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 50px 50px; z-index: 1; }
.deliv-header { margin-bottom: 50px; }
.deliv-main-title { font-family: "Bebas Neue", sans-serif; font-size: 4rem; color: #FFF; line-height: 1; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px; }
.deliv-subtitle-wrapper { display: flex; align-items: center; justify-content: center; gap: 20px; }
.deliv-subtitle { font-size: 1.1rem; color: #CBD5E1; margin: 0; }
.deliv-line { height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--primary-accent), transparent); }

.deliv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 40px 0; }
.deliv-card-tech {
  position: relative;
  background: rgba(6, 17, 33, 0.8);
  border: 1px solid rgba(234, 179, 8, 0.2);
  padding: 40px 30px 30px;
  text-align: center;
  border-radius: 4px;
  clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px), 0 15px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.deliv-card-tech:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 179, 8, 0.5);
}

.deliv-tech-border { position: absolute; width: 10px; height: 10px; border: 2px solid var(--primary-accent); z-index: 5; }
.tb-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.tb-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.tb-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.tb-br { bottom: 0; right: 0; border-left: none; border-top: none; }

.deliv-icon-wrapper { display: flex; justify-content: center; margin-bottom: 25px; }
.deliv-hex-outer {
  width: 90px; height: 90px;
  background: var(--primary-accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  padding: 2px;
}
.deliv-hex-inner {
  width: 100%; height: 100%;
  background: #061121;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
}
.deliv-hex-inner i { font-size: 2.5rem; color: var(--primary-accent); }

.deliv-card-tech h3 { font-family: "Bebas Neue", sans-serif; font-size: 1.8rem; color: #FFF; margin-bottom: 10px; line-height: 1.1; letter-spacing: 0.5px; }
.deliv-card-tech p { font-size: 0.95rem; color: #94A3B8; margin: 0; line-height: 1.5; }

/* Info Section (6 & 7) */
.info-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.target-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.target-list i { font-size: 1.25rem; color: var(--primary-accent); }

/* Section 8: Pricing Redesign */
.pricing-redesign { position: relative; padding: 80px 0; background-color: #030a14; overflow: hidden; }
.pricing-main-title { font-family: "Bebas Neue", sans-serif; font-size: 3.5rem; color: #FFF; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.pricing-glow-line-wrapper { position: relative; margin: 0 auto 50px; text-align: center; display: flex; justify-content: center; align-items: center; }
.pricing-glow-line { height: 2px; width: 60%; max-width: 600px; background: linear-gradient(90deg, transparent, var(--primary-accent), transparent); box-shadow: 0 0 15px var(--primary-accent); position: relative; }
.pricing-glow-line::before, .pricing-glow-line::after { content: ''; position: absolute; width: 40px; height: 10px; border: 2px solid var(--primary-accent); top: -6px; }
.pricing-glow-line::before { left: 0; transform: skewX(45deg); border-right: none; border-bottom: none; }
.pricing-glow-line::after { right: 0; transform: skewX(-45deg); border-left: none; border-bottom: none; }

.pricing-split-redesign { display: flex; align-items: stretch; justify-content: center; gap: 30px; max-width: 1100px; margin: 0 auto; }
.pricing-left-col { flex: 1; display: flex; align-items: stretch; }
.pricing-right-col { flex: 1.2; display: flex; flex-direction: column; gap: 15px; }

.tech-panel { position: relative; background: rgba(6, 17, 33, 0.9); padding: 30px; border-radius: 4px; clip-path: polygon(15px 0, calc(100% - 15px) 0, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px), 0 15px); }
.tech-border-blue, .tech-border-yellow { position: absolute; width: 12px; height: 12px; z-index: 5; }
.tech-border-blue { border: 2px solid rgba(59, 130, 246, 0.8); }
.tech-border-yellow { border: 2px solid var(--primary-accent); }
.tech-panel.glowing { border: 1px solid rgba(234, 179, 8, 0.4); box-shadow: 0 0 30px rgba(234, 179, 8, 0.1); }
.pricing-left-panel { border: 1px solid rgba(59, 130, 246, 0.3); width: 100%; display: flex; flex-direction: column; }

.panel-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.panel-header i { font-size: 2rem; }
.panel-header h3 { font-size: 1.8rem; letter-spacing: 1px; }
.font-bebas { font-family: "Bebas Neue", sans-serif; }

.price-items-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 25px; flex-grow: 1; }
.price-item { display: flex; align-items: center; gap: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; }
.icon-hex-small { width: 40px; height: 40px; background: rgba(234, 179, 8, 0.1); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); display: flex; align-items: center; justify-content: center; border: 1px solid var(--primary-accent); flex-shrink: 0; }
.icon-hex-small i { color: var(--primary-accent); font-size: 1.2rem; }
.item-name { flex-grow: 1; font-size: 0.95rem; color: #CBD5E1; }
.item-value { font-size: 1.4rem; color: #FFF; letter-spacing: 0.5px; }

.price-total-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 10px; }
.total-label { font-size: 1.5rem; color: #FFF; letter-spacing: 1px; }
.total-crossed { font-size: 2rem; color: #94A3B8; position: relative; display: inline-block; letter-spacing: 1px; }
.red-cross { position: absolute; top: 50%; left: -5%; width: 110%; height: 3px; background-color: #ef4444; transform: translateY(-50%) rotate(-5deg); box-shadow: 0 0 5px #ef4444; }

.pricing-arrow { display: flex; align-items: center; justify-content: center; font-size: 3rem; }

.offer-badge-wrapper-outside { text-align: center; margin-bottom: -20px; position: relative; z-index: 20; }
.offer-badge { display: inline-block; background: var(--primary-accent); color: #111827; font-size: 1.5rem; padding: 5px 25px; border-radius: 50px; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4); border: 2px solid #FFF; }
.offer-price { text-align: center; color: #FFF; display: flex; align-items: baseline; justify-content: center; line-height: 1; margin-bottom: 5px; }
.offer-price .currency { font-size: 3rem; margin-right: 5px; }
.offer-price .amount { font-size: 8rem; color: var(--primary-accent); text-shadow: 0 0 20px rgba(234, 179, 8, 0.5); }
.offer-price .cents { font-size: 4rem; color: var(--primary-accent); text-shadow: 0 0 20px rgba(234, 179, 8, 0.5); }
.offer-terms { display: flex; align-items: center; justify-content: center; gap: 15px; font-size: 1.5rem; color: #FFF; letter-spacing: 1px; margin-bottom: 25px; }
.term-line { height: 1px; width: 40px; background: rgba(255,255,255,0.3); }

.btn-buy-green { display: flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(180deg, #22c55e, #166534); border: 2px solid #4ade80; color: #FFF; font-size: 1.8rem; padding: 15px; border-radius: 8px; text-decoration: none; box-shadow: 0 0 20px rgba(34, 197, 94, 0.4); letter-spacing: 1px; transition: all 0.3s; }
.btn-buy-green:hover { transform: scale(1.02); box-shadow: 0 0 30px rgba(34, 197, 94, 0.6); }

.guarantee-tech-box { padding: 15px 20px; display: flex; align-items: center; gap: 20px; border: 1px solid rgba(59, 130, 246, 0.3); margin-top: 5px; }
.guarantee-icon-wrap { background: rgba(234, 179, 8, 0.1); width: 60px; height: 60px; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border-top: 1px solid var(--primary-accent); border-bottom: 1px solid var(--primary-accent); }
.guarantee-icon-wrap i { font-size: 2rem; color: var(--primary-accent); }
.guarantee-text h4 { font-family: "Bebas Neue", sans-serif; font-size: 1.5rem; color: #FFF; margin: 0 0 5px; letter-spacing: 1px; }
.guarantee-text p { font-size: 0.85rem; color: #CBD5E1; margin: 0; line-height: 1.3; }
/* Section 9: Testimonials Redesign */
.testimonials-redesign { position: relative; padding: 80px 0; background-color: #030a14; overflow: hidden; }
.testimonial-img-wrapper { max-width: 900px; margin: 0 auto; padding: 10px; text-align: center; }
.testimonial-img { max-width: 100%; height: auto; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }

/* Section 10: FAQ */
.faq-list { max-width: 800px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 16px; }
.faq-item { padding: 0; overflow: hidden; cursor: pointer; transition: background 0.3s ease; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; font-size: 1.1rem; font-weight: 600; }
.faq-question:hover { background: rgba(255, 255, 255, 0.05); }
.faq-question i { transition: transform 0.3s ease; }
.faq-answer { padding: 0 24px; max-height: 0; opacity: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-item.active .faq-answer { padding: 0 24px 24px; max-height: 300px; opacity: 1; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Section 11: Final Call */
.steps-final { margin: 40px 0; font-size: 1.25rem; font-weight: 600; display: flex; flex-direction: column; gap: 12px; }
.cta-large { font-size: 1.5rem; padding: 24px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cta-price { font-size: 1rem; font-weight: 600; opacity: 0.8; margin-top: 5px; }

/* Responsive Adjustments */
@media (max-width: 992px) {
  .opportunity-grid, .courses-cards-grid, .course-list-grid, .deliverables-grid, .deliv-grid { grid-template-columns: repeat(2, 1fr); }
  .evolution-container, .pricing-split-container, .info-container, .opp-top-grid, .pricing-split-redesign { flex-direction: column; grid-template-columns: 1fr; }
  .pricing-arrow { transform: rotate(90deg); margin: 20px 0; }
  .evolution-text { text-align: center; }
  .clients-list { display: flex; flex-direction: column; align-items: center; }
  .guarantee-box { flex-direction: column; text-align: center; }
  .courses-benefits-bar { flex-direction: column; gap: 20px; }
  .courses-title { font-size: 3rem; }
  .opp-bottom-cards { grid-template-columns: 1fr; }
  .deliv-main-title { font-size: 3.5rem; }
  .pricing-main-title { font-size: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 45px 16px !important; }
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 1.15rem; }
  .section-text, p { font-size: 1rem; }
  
  .opportunity-grid, .courses-cards-grid, .course-list-grid, .deliv-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
  .deliv-subtitle-wrapper { flex-direction: column; gap: 10px; }
  .deliv-line { display: none; }
  
  .courses-title { font-size: 2.5rem; }
  
  .opp-main-title { font-size: 2.5rem; }
  .opp-banner h3 { font-size: 1.8rem; }
  .opp-banner i { font-size: 1.8rem; }
  .opp-banner { flex-direction: column; text-align: center; gap: 10px; }
  
  .offer-price .amount { font-size: 5.5rem; }
  .offer-price .cents { font-size: 3rem; }
  .offer-price .currency { font-size: 2rem; }
  .btn-buy-green { font-size: 1.5rem; padding: 12px; }
  .pricing-main-title { font-size: 2.5rem; }
}  
  .faq-question { font-size: 1rem; padding: 15px; }
  .faq-item { gap: 16px; }
  
  .huge-price, .price { font-size: 3rem; }
  .cta-large { font-size: 1.2rem; padding: 20px; }
}

/* --- HERO ANIMATIONS --- */
@media (prefers-reduced-motion: no-preference) {
  /* 1. Yellow tag */
  .hero-badge { animation: fadeSlideDown 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
  
  /* 2. "MEGAPACK" Title */
  .hero-title span.text-white { display: inline-block; animation: slideRightFade 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both; }

  /* 3. "3 OFÍCIOS" Title */
  .hero-title span.text-yellow { display: inline-block; animation: slideRightFade 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.28s both; }

  /* 4. Subtitle and Description */
  .hero-subtitle { animation: fadeSlideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both; }
  .hero-text { animation: fadeSlideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both; }

  /* 5. Mockups */
  .hero-col-right { animation: enterMockup 0.9s cubic-bezier(0.21, 0.83, 0.26, 1) 0.2s both; }
  
  /* 6. Benefits (Staggered) */
  .feature-item:nth-child(1) { animation: fadeSlideUp 0.6s ease-out 0.6s both; }
  .feature-item:nth-child(2) { animation: fadeSlideUp 0.6s ease-out 0.7s both; }
  .feature-item:nth-child(3) { animation: fadeSlideUp 0.6s ease-out 0.8s both; }
  .feature-item:nth-child(4) { animation: fadeSlideUp 0.6s ease-out 0.9s both; }

  /* 7. Button */
  .btn-green { animation: buttonEnter 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.1s both; position: relative; overflow: hidden; }

  /* 8-10. Mockup (Single image float) */
  .hero-img-cover { animation: floatDevice 6s ease-in-out infinite alternate; }

  /* 11. Background glow pulse */
  .hero { animation: bgPulse 8s ease-in-out infinite alternate; }

  /* 12. Green Button Shine */
  .btn-green::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg); animation: shineSweep 5s infinite;
  }

  /* 13. Icons pulse on entry */
  .feature-item i { animation: iconPulse 0.5s ease-out 1s both; display: inline-block; }
  
  /* Keyframes */
  @keyframes fadeSlideDown { 0% { opacity: 0; transform: translateY(-18px); } 100% { opacity: 1; transform: translateY(0); } }
  @keyframes slideRightFade { 0% { opacity: 0; transform: translateX(-40px); } 100% { opacity: 1; transform: translateX(0); } }
  @keyframes fadeSlideUp { 0% { opacity: 0; transform: translateY(18px); } 100% { opacity: 1; transform: translateY(0); } }
  @keyframes enterMockup { 0% { opacity: 0; transform: translateX(70px) scale(0.96); } 100% { opacity: 1; transform: translateX(0) scale(1); } }
  @keyframes buttonEnter { 0% { opacity: 0; transform: scale(0.97); } 100% { opacity: 1; transform: scale(1); } }
  @keyframes floatDevice { 0% { transform: translateY(0); } 100% { transform: translateY(-3px); } }
  @keyframes bgPulse { 0% { background-position: 0% 0%; } 100% { background-position: 0% 5px; } }
  @keyframes shineSweep { 0% { left: -100%; } 15% { left: 200%; } 100% { left: 200%; } }
  @keyframes iconPulse { 0% { transform: scale(0.8); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }
}

/* Mobile Animation Adjustments */
@media (max-width: 768px) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-title span.text-white, .hero-title span.text-yellow, .hero-col-right { animation-name: fadeSlideUp; }
    .hero-img-cover { animation-duration: 6s; }
  }
}
