/* =========================================
   1. VARIÁVEIS DE CORES
========================================= */
:root {
   --bg-white: #ffffff;
   --bg-light: #fafafa;
   --bg-accent: #111111;

    /* SISClientes Brand Colors - PROFESSIONAL BLUE & INDIGO */
    --brand-dark: #0f172a;
    --brand-primary: #4f46e5;
    --brand-primary-light: #6366f1;
    --brand-primary-dark: #4338ca;

    --whatsapp-green: #25D366;
    --whatsapp-hover: #1da851;
    --text-dark: #0f172a;
    --text-light: #ffffff;
    --text-muted: #64748b;
    --border-color: #e2e8f0;

    --brand-blue: var(--brand-primary);
    --brand-gold: var(--brand-primary);
    --brand-gold-light: var(--brand-primary-light);
    --brand-gold-dark: var(--brand-primary-dark);
}

/* =========================================
   2. CONFIGURAÇÕES GERAIS E RESET
========================================= */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth !important;
}

body {
   font-family: 'Outfit', sans-serif;
   background: var(--bg-white);
   color: var(--text-dark);
   line-height: 1.6;
   overflow-x: hidden;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

/* =========================================
   3. NAVBAR
========================================= */
.navbar {
   position: fixed;
   top: 0;
   width: 100%;
   padding: 20px 5%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   z-index: 1000;
   background: transparent;
   transition: all 0.4s ease;
}

.navbar.scrolled {
   background: rgba(10, 10, 10, 0.95);
   padding: 12px 5%;
   backdrop-filter: blur(10px);
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
   display: flex;
   align-items: center;
   text-decoration: none;
}

.logo-img {
   max-height: 45px;
   transition: 0.3s;
}

.nav-seo-text {
   color: #fff;
   font-size: 0.8rem;
   font-weight: 600;
   margin-left: 10px;
   max-width: 200px;
   transition: color 0.3s ease;
}

.navbar.scrolled .nav-seo-text {
   color: #fff !important;
}

.btn-trial {
   background: var(--brand-primary);
   color: white;
   border: none;
   padding: 12px 26px;
   border-radius: 8px;
   font-weight: 800;
   text-transform: uppercase;
   font-size: 0.85rem;
   cursor: pointer;
   transition: 0.3s;
   box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-trial:hover {
   background: white;
   color: var(--brand-primary);
   transform: translateY(-2px);
}

.hero-benefit-item {
   display: flex;
   align-items: center;
   gap: 15px;
   margin-bottom: 20px;
   color: rgba(255, 255, 255, 0.85);
   font-size: 1rem;
   max-width: 420px;
}

.hero-benefit-icon {
   width: 40px;
   height: 40px;
   background: rgba(59, 130, 246, 0.15);
   border: 1px solid rgba(59, 130, 246, 0.3);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #60a5fa;
   flex-shrink: 0;
   font-size: 0.9rem;
}

.hero-green-badge {
   background: rgba(16, 185, 129, 0.1);
   border: 1px solid rgba(16, 185, 129, 0.2);
   padding: 15px 25px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   gap: 15px;
   margin-top: 40px;
}

.hero-green-icon {
   width: 40px;
   height: 40px;
   background: #10b981;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
}

/* =========================================
   4. HERO SECTION
========================================= */
.hero {
   height: 100vh;
   min-height: 800px;
   position: relative;
   display: flex;
   align-items: center;
}

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, #0f172a 0%, #0f172a 35%, rgba(15, 23, 42, 0) 100%);
}

.hero-content {
   z-index: 10;
   width: 100%;
   max-width: 1400px;
   margin: 0 auto;
   padding: 100px 80px;
   display: flex;
   align-items: center;
   justify-content: flex-start;
}

.hero-main-area {
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.hero-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%) !important;
        min-height: 100vh;
        height: auto;
        padding: 100px 20px 60px !important;
        display: block;
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        padding: 0 !important;
        display: block;
        text-align: center;
    }

    .hero-main-area {
        align-items: center;
        max-width: 100%;
    }

    .hero-subtitle {
        text-align: center;
        margin: 0 auto 20px !important;
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.95);
        max-width: 100%;
        font-weight: 500;
    }

    .hero-image-mobile {
        display: block;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 30px;
        padding: 0 10px;
        perspective: 1000px;
    }

    .hero-image-mobile img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 20px rgba(79, 70, 229, 0.2);
        border: 1px solid rgba(255,255,255,0.1);
        transform: rotateX(5deg) translateY(0);
        transition: transform 0.5s ease;
    }

    .feature-card-modern {
        flex-direction: row;
        text-align: left;
        padding: 8px 0;
        gap: 16px;
        justify-content: center;
    }

    .feature-icon-circle {
        margin: 0 auto;
    }

    .modern-features-grid {
        width: 100%;
        max-width: 450px;
        margin: 0 auto 30px;
        gap: 8px;
    }

    .hero-buttons {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
}

.hero-badge {
   background: rgba(79, 70, 229, 0.15);
   color: #818cf8; /* Light Indigo */
   padding: 8px 16px;
   border-radius: 50px;
   font-weight: 700;
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 25px;
   border: 1px solid var(--brand-gold);
}

.hero-title {
   font-size: clamp(2rem, 5vw, 3.5rem);
   font-weight: 800;
   color: #fff;
   margin-bottom: 20px;
   line-height: 1.1;
   letter-spacing: -1.5px;
   max-width: 700px;
}

.hero-title span.blue {
   background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.hero-subtitle {
   font-size: 1.95rem;
   color: rgba(255, 255, 255, 0.9);
   max-width: 950px;
   margin-bottom: 40px;
   line-height: 1.4;
   font-weight: 500;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle span.blue {
   color: #60a5fa;
   font-weight: 800;
   text-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

.hero-triggers {
   display: flex;
   gap: 20px;
   margin-bottom: 40px;
   flex-wrap: wrap;
   justify-content: center;
}

.hero-triggers span {
   color: white;
   font-size: 0.9rem;
   font-weight: 600;
   display: flex;
   align-items: center;
   gap: 8px;
}

.hero-triggers i {
   color: var(--brand-gold);
}

.cta-main {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: var(--brand-primary);
   color: #ffffff;
   text-decoration: none;
   padding: 20px 40px;
   border-radius: 8px;
   font-weight: 900;
   font-size: 1.1rem;
   transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
   border: none;
   text-transform: uppercase;
}

.cta-main:hover {
   transform: scale(1.05);
   background: var(--brand-gold-light);
   box-shadow: 0 15px 40px rgba(197, 160, 89, 0.5);
   color: var(--brand-dark);
}

/* =========================================
   5. SOCIAL STATS
========================================= */
.social-stats {
   background: var(--brand-dark);
   padding: 60px 0;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 30px;
   flex-wrap: wrap;
}

.stat-item {
   text-align: center;
   flex: 1;
   min-width: 150px;
}

.stat-number {
   display: block;
   font-size: 3rem;
   font-weight: 900;
   color: var(--brand-gold);
   line-height: 1;
}

.stat-stars {
   display: block;
   margin: 5px 0;
   font-size: 0.9rem;
}

.stat-text {
   color: rgba(255, 255, 255, 0.6);
   font-size: 0.9rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.stat-divider {
   width: 1px;
   height: 60px;
   background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
   .stat-divider {
      display: none;
   }

   .stats-grid {
      justify-content: center;
   }
}

/* =========================================
   6. SERVIÇOS PREMIUM
========================================= */
.tours-pricing-section {
   padding: 100px 0 60px 0;
   background: #fff;
}

.section-title {
   font-size: 2.5rem;
   font-weight: 900;
   margin-bottom: 15px;
   color: var(--brand-dark);
   text-align: center;
}

.section-subtitle {
   font-size: 1.1rem;
   color: var(--text-muted);
   max-width: 700px;
   margin: 0 auto 60px auto;
   text-align: center;
}

.pricing-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 30px;
}

.tour-card {
   background: white;
   border: 1px solid var(--border-color);
   border-radius: 12px;
   padding: 40px 30px;
   display: flex;
   flex-direction: column;
   transition: 0.4s;
   position: relative;
}

.tour-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
   border-color: var(--brand-gold);
}

.tour-card.featured {
   background: var(--brand-dark);
   color: white;
   border-color: var(--brand-gold);
   transform: scale(1.05);
}

.tour-card.featured .card-title,
.tour-card.featured .price-value {
   color: white;
}

.tour-card.featured .benefit-list li {
   color: rgba(255, 255, 255, 0.8);
}

.badge-popular {
   position: absolute;
   top: 20px;
   right: 20px;
   background: var(--brand-gold);
   color: var(--brand-dark);
   padding: 5px 12px;
   border-radius: 4px;
   font-size: 0.75rem;
   font-weight: 800;
   text-transform: uppercase;
}

.card-title {
   font-size: 1.5rem;
   font-weight: 900;
   margin-bottom: 10px;
}

.price-box {
   margin-bottom: 25px;
}

.price-value {
   font-size: 2.5rem;
   font-weight: 900;
   color: var(--brand-dark);
}

.price-value::before {
   content: 'R$';
   font-size: 1.2rem;
   vertical-align: top;
   margin-right: 4px;
}

.urgency-trigger {
   color: var(--brand-gold);
   font-weight: 700;
   font-size: 0.9rem;
   margin-bottom: 15px;
}

.social-proof {
   font-size: 0.85rem;
   color: var(--text-muted);
   margin-bottom: 10px;
}

.beneficio-destaque {
   font-size: 0.95rem;
   font-weight: 800;
   color: var(--brand-gold);
   margin-bottom: 20px;
   background: rgba(197, 160, 89, 0.1);
   padding: 8px 12px;
   border-radius: 4px;
   display: inline-block;
}

.featured .social-proof {
   color: rgba(255, 255, 255, 0.5);
}

.benefit-list {
   list-style: none;
   margin-bottom: 30px;
   flex-grow: 1;
}

.benefit-list li {
   margin-bottom: 12px;
   display: flex;
   gap: 10px;
   font-size: 0.95rem;
}

.icon-check {
   color: var(--brand-gold);
}

.btn-whatsapp {
   padding: 16px;
   border-radius: 6px;
   font-weight: 900;
   text-transform: uppercase;
   cursor: pointer;
   transition: 0.3s;
   border: 2px solid var(--brand-gold);
   width: 100%;
}

.btn-outline {
   background: transparent;
   color: var(--brand-gold);
}

.btn-outline:hover {
   background: var(--brand-gold);
   color: var(--brand-dark);
}

.btn-primary {
   background: var(--brand-gold);
   color: var(--brand-dark);
}

.btn-primary:hover {
   background: white;
   color: var(--brand-dark);
   border-color: white;
}

/* =========================================
   7. COMO FUNCIONA
========================================= */
.catalog {
   padding: 40px 0 100px 0;
   background: var(--bg-light);
}

.catalog-overline {
   text-align: center;
   text-transform: uppercase;
   letter-spacing: 2px;
   font-weight: 800;
   color: var(--brand-gold);
   margin-bottom: 10px;
}

.process-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 40px;
   margin-top: 60px;
   position: relative;
}

/* Linha conectora entre passos - visível apenas em desktop */
@media (min-width: 1024px) {
   .process-container::before {
      content: '';
      position: absolute;
      top: 70px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--brand-gold), transparent);
      z-index: 0;
      opacity: 0.3;
   }
}

.process-step {
   text-align: center;
   padding: 40px 25px;
   background: #fff;
   border: 1px solid var(--border-color);
   border-radius: 12px;
   transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   position: relative;
   z-index: 1;
}

.process-step:hover {
   transform: translateY(-10px);
   border-color: var(--brand-gold);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.step-icon {
   width: 80px;
   height: 80px;
   background: var(--brand-dark);
   color: var(--brand-gold);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   margin: 0 auto 25px auto;
   position: relative;
   transition: 0.4s;
   border: 2px solid transparent;
}

.process-step:hover .step-icon {
   background: var(--brand-gold);
   color: var(--brand-dark);
   transform: rotate(10deg) scale(1.1);
}

.step-number {
   position: absolute;
   top: -5px;
   right: -5px;
   background: var(--brand-gold);
   color: var(--brand-dark);
   width: 28px;
   height: 28px;
   border-radius: 50%;
   font-size: 0.85rem;
   font-weight: 900;
   display: flex;
   align-items: center;
   justify-content: center;
   border: 2px solid #fff;
}

.step-title {
   font-weight: 900;
   margin-bottom: 15px;
   font-size: 1.2rem;
   color: var(--brand-dark);
}

.step-description {
   font-size: 0.95rem;
   color: var(--text-muted);
   line-height: 1.5;
}

/* =========================================
   8. TESTIMONIALS
========================================= */
.testimonials {
   padding: 100px 0 60px 0;
}

.testimonials-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.testimonial-card {
   background: #fff;
   border: 1px solid var(--border-color);
   padding: 40px;
   border-radius: 12px;
}

.testimonial-text {
   font-style: italic;
   margin-bottom: 25px;
}

.testimonial-author {
   display: flex;
   align-items: center;
   gap: 15px;
}

.author-img {
   width: 50px;
   height: 50px;
   border-radius: 50%;
}

/* =========================================
   9. FAQ
========================================= */
.faq-section {
   padding: 100px 0;
   background: #fff;
}

.faq-container {
   max-width: 800px;
   margin: 0 auto;
}

.faq-item {
   border-bottom: 1px solid var(--border-color);
}

.faq-question {
   width: 100%;
   padding: 25px 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: none;
   border: none;
   font-size: 1.15rem;
   font-weight: 800;
   cursor: pointer;
   color: var(--brand-dark);
   text-align: left;
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: 0.4s ease-out;
}

.faq-answer>div {
   padding-bottom: 25px;
   color: var(--text-muted);
}

/* =========================================
   10. FINAL CTA
========================================= */
.final-cta {
   padding: 120px 0;
   background: var(--brand-dark);
   color: white;
   position: relative;
   overflow: hidden;
}

.final-cta::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=1600&fit=crop') center/cover;
   opacity: 0.1;
}

.final-cta .container {
   position: relative;
   z-index: 10;
}

.final-cta-title {
   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 900;
   margin-bottom: 20px;
}

.final-cta-text {
   font-size: 1.25rem;
   color: rgba(255, 255, 255, 0.8);
   margin-bottom: 40px;
}

.btn-large {
   font-size: 1.3rem;
   padding: 25px 50px;
}

.vagas-counter {
   margin-top: 25px;
   font-weight: 700;
   color: var(--brand-gold);
   text-transform: uppercase;
   letter-spacing: 1px;
}

/* =========================================
   11. FOOTER
========================================= */
.footer {
   padding: 80px 0 40px 0;
   background: #000;
   color: white;
   text-align: center;
}

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

/* =========================================
   12. WHATSAPP FIXO
========================================= */
.wa-fixed-btn {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 65px;
   height: 65px;
   background: var(--whatsapp-green);
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
   z-index: 9999;
   transition: 0.3s;
   text-decoration: none;
}

.wa-fixed-btn:hover {
   transform: scale(1.1) rotate(10deg);
   background: var(--whatsapp-hover);
}

/* =========================================
   13. ANIMAÇÕES
========================================= */
.reveal {
   opacity: 0;
   transform: translateY(30px);
   transition: 1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.reveal.active {
   opacity: 1;
   transform: translateY(0);
}

.pulse {
   animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
   0% {
      transform: scale(1);
   }

   50% {
      transform: scale(1.05);
   }

   100% {
      transform: scale(1);
   }
}

/* Imagens de fundo especificas */
.bg-corte {
   background-image: url('https://images.unsplash.com/photo-1621605815841-2ae47ff55673?w=800&fit=crop');
}

.bg-combo {
   background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=800&fit=crop');
}

.bg-barba {
   background-image: url('https://images.unsplash.com/photo-1593702275687-f8b402bf1fb5?w=800&fit=crop');
}

/* =========================================
   14. NOTIFICAÇÕES DE PROVA SOCIAL
========================================= */
.social-notify {
   position: fixed;
   bottom: 30px;
   left: 30px;
   background: white;
   padding: 15px 20px;
   border-radius: 12px;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
   display: flex;
   align-items: center;
   gap: 15px;
   z-index: 9998;
   transform: translateX(-150%);
   transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   border-left: 4px solid var(--brand-gold);
}

.social-notify.active {
   transform: translateX(0);
}

.notify-icon {
   color: var(--brand-gold);
   font-size: 1.5rem;
}

.notify-content {
   font-size: 0.85rem;
   color: var(--text-dark);
   line-height: 1.3;
}

.notify-content strong {
   display: block;
   font-size: 0.9rem;
}

.notify-content span {
   color: var(--text-muted);
}

@media (max-width: 768px) {
   .social-notify {
      left: 10px;
      bottom: 110px;
      width: calc(100% - 20px);
   }

   .hero-overlay {
      background: linear-gradient(180deg, #0f172a 0%, #0f172a 60%, rgba(15, 23, 42, 0) 100%);
   }

   .hero-content {
      padding: 120px 20px 0 20px;
      justify-content: center;
      text-align: center;
   }

   .hero-main-area {
      align-items: center;
   }

   .hero-subtitle {
      margin-left: auto;
      margin-right: auto;
   }

   .hero-benefits-list {
      display: flex;
      flex-direction: column;
      align-items: center;
   }

   .hero-benefit-item {
      text-align: center;
      flex-direction: column;
      gap: 10px;
   }

   .hero-green-badge {
      flex-direction: column;
      text-align: center;
   }
}
/* =========================================
   13. MODERN FEATURES (PREMIUM SAAS STYLE)
========================================= */
.modern-features-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-card-modern {
    background: transparent;
    border: none;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    text-align: left;
}

.feature-icon-circle {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-circle i {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-content-modern {
    flex: 1;
}

.feature-title-modern {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-desc-modern {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.87rem;
    line-height: 1.4;
}

.btn-premium-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    width: auto;
    min-width: 220px;
}

.btn-premium-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* =========================================
   14. RESPONSIVE VIDEO WRAPPER
========================================= */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .video-container-wrapper {
        margin-bottom: 30px !important;
        padding: 0 10px;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
}

/* =========================================
   15. HIGH-CONVERSION VIDEO SECTION
========================================= */
.video-presentation-section {
    padding: 80px 0;
    background: #ffffff; /* White background as in the print */
    color: #1e293b;
    text-align: center;
}

.video-headline {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1e293b;
}

.video-headline .highlight {
    color: #0d9488;      /* Teal color from the print */
    display: block;
    font-weight: 800;
}

.video-subheadline {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-main-container {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.shadow-premium {
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.video-cta-container {
    margin-top: 40px;
}

.btn-success-elite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #16a34a; /* Green from print */
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
    transition: all 0.3s ease;
}

.btn-success-elite:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.4);
    background: #15803d;
    color: #fff;
}

.trust-indicators {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

.trust-indicators i {
    margin-right: 5px;
    color: #16a34a;
}

@media (max-width: 768px) {
    .video-presentation-section {
        padding: 60px 20px;
    }
    
    .video-headline {
        font-size: 1.8rem;
    }
    
    .btn-success-elite {
        width: 100%;
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================================
   16. UTILITIES & GLOBAL CENTERING
========================================= */
.text-center {
    text-align: center !important;
}

.video-presentation-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-headline, 
.video-subheadline {
    text-align: center;
}

.video-main-container {
    width: 100%;
}

.video-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.trust-indicators {
    justify-content: center;
}

/* =========================================
   17. STATS SECTION
========================================= */
.stats-section {
    padding: 80px 0;
    background: #0D162A; /* Dark navy as requested */
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* =========================================
   18. FAQ SECTION
========================================= */
.faq-section {
    padding: 60px 20px 100px 20px;
    background: #0D162A; /* Match stats section */
    margin: 0;
    max-width: 100%;
}

.faq-container-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 20px 25px 25px;
    max-height: 200px;
}

.faq-toggle-icon {
    transition: transform 0.3s;
}

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

/* =========================================
   19. AUTH ENHANCEMENTS
========================================= */
.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #64748b;
    z-index: 10;
    padding: 5px;
}

.password-toggle:hover {
    color: #818cf8;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    opacity: 0.6;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
}

.security-badge i {
    font-size: 14px;
    color: #10b981;
}

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

.feature-icon-circle {
    animation: float 4s infinite ease-in-out;
}

.feature-card-modern:nth-child(2n) .feature-icon-circle {
    animation-delay: 1s;
}

.feature-card-modern:nth-child(3n) .feature-icon-circle {
    animation-delay: 2s;
}
