/* ========================================
   COLORISTA EXPERTO - PREMIUM STYLES
   ======================================== */

/* CSS Variables - Brand Colors */
:root {
    /* Primary Palette */
    --pitch-black: #0f0a0a;
    --silver: #c0babc;
    --rosy-copper: #cd533b;
    --turquoise: #81f4e1;
    --canary-yellow: #faf33e;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #cd533b, #81f4e1);
    --gradient-secondary: linear-gradient(135deg, #81f4e1, #faf33e);
    --gradient-accent: linear-gradient(135deg, #faf33e, #cd533b);
    --gradient-full: linear-gradient(90deg, #cd533b, #81f4e1, #faf33e);
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 24px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--pitch-black);
    color: var(--silver);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    color: var(--silver);
    line-height: 1.2;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 186, 188, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(15, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.logo-svg {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--silver);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--turquoise);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-btn-nav {
    padding: 10px 24px;
    background: var(--rosy-copper);
    color: var(--pitch-black);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    border: 2px solid var(--rosy-copper);
}

.cta-btn-nav:hover {
    background: transparent;
    color: var(--rosy-copper);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--silver);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--rosy-copper), transparent);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--turquoise), transparent);
    bottom: -10%;
    right: -10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--canary-yellow), transparent);
    top: 40%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(129, 244, 225, 0.1);
    border: 1px solid rgba(129, 244, 225, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--turquoise);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--turquoise);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #fff;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.gradient-text {
    background: var(--gradient-full);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
    color: var(--silver);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

.cta-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-btn:hover svg {
    transform: translateX(5px);
}

.cta-primary {
    background: var(--rosy-copper);
    color: #fff;
    box-shadow: 0 10px 40px rgba(205, 83, 59, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(205, 83, 59, 0.5);
}

.cta-secondary {
    background: transparent;
    color: var(--turquoise);
    border: 2px solid var(--turquoise);
}

.cta-secondary:hover {
    background: var(--turquoise);
    color: var(--pitch-black);
    transform: translateY(-3px);
}

.cta-large {
    padding: 22px 50px;
    font-size: 19px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--silver);
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--pitch-black);
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease 1s both;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(129, 244, 225, 0.05);
    border: 1px solid rgba(129, 244, 225, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--silver);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--silver);
    font-size: 13px;
    font-weight: 500;
    opacity: 0.6;
    animation: fadeIn 1s ease 1.5s both;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--silver);
    border-bottom: 2px solid var(--silver);
    transform: rotate(45deg);
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.6;
    }
}

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

/* ========================================
   COLOR SHOWCASE SECTION
   ======================================== */

.color-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(205, 83, 59, 0.05), rgba(129, 244, 225, 0.05));
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.showcase-text {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.showcase-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #fff;
    line-height: 1.2;
}

.showcase-text > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--silver);
    margin-bottom: 32px;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    color: var(--silver);
    padding: 12px 0;
}

.showcase-features svg {
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .color-showcase {
        padding: 60px 0;
    }
    
    .showcase-text h2 {
        font-size: 32px;
    }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(192, 186, 188, 0.1);
    border: 1px solid rgba(192, 186, 188, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--silver);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.section-description {
    font-size: 19px;
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.highlight-copper {
    color: var(--rosy-copper);
}

.highlight-turquoise {
    color: var(--turquoise);
}

.highlight-yellow {
    color: var(--canary-yellow);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits {
    padding: var(--section-padding);
    position: relative;
}

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

.benefit-card {
    padding: 40px 32px;
    background: rgba(192, 186, 188, 0.03);
    border: 1px solid rgba(192, 186, 188, 0.1);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--turquoise);
    background: rgba(129, 244, 225, 0.05);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(192, 186, 188, 0.8);
}

/* ========================================
   PROBLEM-SOLUTION SECTION
   ======================================== */

.problem-solution {
    padding: var(--section-padding);
    background: rgba(192, 186, 188, 0.02);
}

.ps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
}

.ps-problem,
.ps-solution {
    padding: 48px 40px;
    border-radius: 24px;
    position: relative;
}

.ps-problem {
    background: rgba(205, 83, 59, 0.05);
    border: 2px solid rgba(205, 83, 59, 0.2);
}

.ps-solution {
    background: rgba(129, 244, 225, 0.05);
    border: 2px solid rgba(129, 244, 225, 0.2);
}

.ps-label {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.label-problem {
    background: rgba(205, 83, 59, 0.2);
    color: var(--rosy-copper);
}

.label-solution {
    background: rgba(129, 244, 225, 0.2);
    color: var(--turquoise);
}

.ps-problem h3,
.ps-solution h3 {
    font-size: 28px;
    margin-bottom: 28px;
    color: #fff;
}

.ps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ps-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.6;
}

.ps-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.ps-solution .cta-btn {
    margin-top: 32px;
}

/* ========================================
   PROGRAM SECTION
   ======================================== */

.program {
    padding: var(--section-padding);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.program-card {
    padding: 40px;
    background: rgba(192, 186, 188, 0.03);
    border: 1px solid rgba(192, 186, 188, 0.1);
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-full);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-8px);
    border-color: var(--rosy-copper);
    background: rgba(205, 83, 59, 0.05);
}

.program-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.program-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #fff;
}

.program-card > p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(192, 186, 188, 0.8);
    margin-bottom: 24px;
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.program-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--silver);
}

.program-list li::before {
    content: '→';
    color: var(--turquoise);
    font-weight: 700;
    font-size: 18px;
}

.program-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(205, 83, 59, 0.1), rgba(129, 244, 225, 0.1));
    border: 2px solid rgba(129, 244, 225, 0.3);
    border-radius: 24px;
}

.program-cta-content h3 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #fff;
}

.program-cta-content p {
    font-size: 17px;
    color: var(--silver);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    padding: var(--section-padding);
    background: rgba(192, 186, 188, 0.02);
}

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

.testimonial-card {
    padding: 36px;
    background: rgba(192, 186, 188, 0.03);
    border: 1px solid rgba(192, 186, 188, 0.1);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--canary-yellow);
    background: rgba(250, 243, 62, 0.05);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating span {
    color: var(--canary-yellow);
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--silver);
    margin-bottom: 28px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid var(--turquoise);
}

.testimonial-author h4 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 14px;
    color: rgba(192, 186, 188, 0.6);
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    padding: var(--section-padding);
}

.pricing-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-subtitle {
    font-size: 19px;
    color: var(--silver);
    margin-top: 16px;
}

.pricing-card {
    background: rgba(192, 186, 188, 0.03);
    border: 2px solid rgba(129, 244, 225, 0.3);
    border-radius: 24px;
    overflow: hidden;
}

.pricing-badge {
    background: linear-gradient(135deg, var(--rosy-copper), var(--canary-yellow));
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    color: var(--pitch-black);
    font-size: 16px;
}

.pricing-main {
    padding: 48px;
}

.pricing-value {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(192, 186, 188, 0.1);
}

.pricing-value h3 {
    font-size: 20px;
    color: var(--turquoise);
    margin-bottom: 20px;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.price-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--silver);
    margin-top: 12px;
}

.price-amount {
    font-size: 80px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    line-height: 1;
}

.price-note {
    font-size: 16px;
    color: rgba(192, 186, 188, 0.7);
}

.pricing-includes {
    margin-bottom: 40px;
}

.pricing-includes h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 24px;
}

.pricing-includes ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-includes li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.6;
}

.pricing-includes svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-bonuses {
    padding: 32px;
    background: rgba(250, 243, 62, 0.05);
    border: 1px solid rgba(250, 243, 62, 0.2);
    border-radius: 16px;
    margin-bottom: 40px;
}

.pricing-bonuses h4 {
    font-size: 22px;
    color: var(--canary-yellow);
    margin-bottom: 24px;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(250, 243, 62, 0.1);
}

.bonus-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bonus-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.bonus-item h5 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 6px;
}

.bonus-item p {
    font-size: 14px;
    color: rgba(192, 186, 188, 0.7);
}

.pricing-card .cta-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 32px;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: rgba(129, 244, 225, 0.05);
    border-radius: 16px;
}

.pricing-guarantee svg {
    flex-shrink: 0;
}

.pricing-guarantee h4 {
    font-size: 20px;
    color: var(--turquoise);
    margin-bottom: 8px;
}

.pricing-guarantee p {
    font-size: 15px;
    color: rgba(192, 186, 188, 0.8);
}

.pricing-urgency {
    text-align: center;
    margin-top: 32px;
    padding: 24px;
    background: rgba(205, 83, 59, 0.1);
    border: 1px solid rgba(205, 83, 59, 0.3);
    border-radius: 12px;
}

.pricing-urgency p {
    font-size: 16px;
    color: var(--rosy-copper);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    padding: var(--section-padding);
    background: rgba(192, 186, 188, 0.02);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(192, 186, 188, 0.03);
    border: 1px solid rgba(192, 186, 188, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--turquoise);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 28px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--silver);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(205, 83, 59, 0.15), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(129, 244, 225, 0.15), transparent 50%);
    z-index: 0;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 24px;
    color: #fff;
}

.gradient-text-alt {
    background: linear-gradient(135deg, var(--turquoise), var(--canary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta > p {
    font-size: 20px;
    color: var(--silver);
    margin-bottom: 48px;
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
}

.stat h3 {
    font-size: 48px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat p {
    font-size: 15px;
    color: rgba(192, 186, 188, 0.7);
}

.final-cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(192, 186, 188, 0.6);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: 80px 0 40px;
    background: rgba(192, 186, 188, 0.02);
    border-top: 1px solid rgba(192, 186, 188, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    color: rgba(192, 186, 188, 0.7);
    line-height: 1.6;
    margin-top: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 15px;
    color: rgba(192, 186, 188, 0.7);
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--turquoise);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 186, 188, 0.1);
    border-radius: 50%;
    color: var(--silver);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--rosy-copper);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(192, 186, 188, 0.1);
    font-size: 14px;
    color: rgba(192, 186, 188, 0.6);
}

.footer-legal {
    display: flex;
    gap: 16px;
}

.footer-legal a:hover {
    color: var(--turquoise);
}

/* ========================================
   ANIMATIONS
   ======================================== */

.card-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.card-animate:nth-child(1) {
    animation-delay: 0.1s;
}

.card-animate:nth-child(2) {
    animation-delay: 0.2s;
}

.card-animate:nth-child(3) {
    animation-delay: 0.3s;
}

.card-animate:nth-child(4) {
    animation-delay: 0.4s;
}

.card-animate:nth-child(5) {
    animation-delay: 0.5s;
}

.card-animate:nth-child(6) {
    animation-delay: 0.6s;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .final-cta-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        background: rgba(15, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 48px 24px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(192, 186, 188, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .cta-btn-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        min-height: 90vh;
        padding: 120px 0 60px;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .ps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .final-cta-stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .program-cta {
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .hero-cta-group {
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-social-proof {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-main {
        padding: 32px 24px;
    }
    
    .price-amount {
        font-size: 60px;
    }
    
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }
}