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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

:root {
    --background-dark: #000000;
    --background-gradient: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #d1d1d1;
    --accent-gold: #d4af37;
    --accent-gold-hover: #f0c952;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(to bottom, var(--background-dark) 0%, var(--background-gradient) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 15% 90%, rgba(212, 175, 55, 0.25), transparent),
        radial-gradient(1px 1px at 70% 20%, rgba(212, 175, 55, 0.3), transparent);
    background-size: 200% 200%;
    animation: particles 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    bottom: -200px;
    right: -200px;
    animation: floatCloud2 25s ease-in-out infinite;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-header.visible {
    opacity: 1;
    pointer-events: auto;
}

.sticky-logo {
    height: 50px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes floatCloud1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(100px, 100px); }
}

@keyframes floatCloud2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-100px, -100px); }
}

@keyframes particles {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

section {
    padding: 60px 0;
    position: relative;
}

.hero-section {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 40px;
    position: relative;
    background: linear-gradient(to bottom, var(--background-dark) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.video-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
    opacity: 0;
    animation: fadeInVideo 1s ease-out forwards;
}

@keyframes fadeInVideo {
    to {
        opacity: 1;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: fadeInDown 1s ease-out 0.2s forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.academy-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    margin-top: 10px;
}

.contact-btn {
    display: inline-block;
    min-height: 44px;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: var(--background-dark);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
}

.video-container {
    width: 100%;
    max-width: 1000px;
}

.video-container video,
.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    display: block;
}

.content-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
}

.main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.1;
}

.pillars-grid-wrapper {
    margin-bottom: 60px;
}

.pillars-grid {
    display: grid;
    gap: 40px;
}

.pillars-grid-top {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 40px;
}

.pillars-grid-bottom {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 50px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

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

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    border-radius: 8px;
    color: var(--background-dark);
}

.pillar-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.pillar-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 500;
    text-align: center;
}

.pillar-description {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-question {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--accent-gold);
    font-weight: 500;
}

.contact-section {
    background: linear-gradient(to bottom, rgba(5, 5, 5, 1) 0%, rgba(10, 10, 10, 1) 50%, rgba(15, 15, 15, 0.9) 100%);
    padding: 120px 0;
    position: relative;
}

.form-message {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.form-message.error {
    display: block;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    max-width: 100%;
    word-wrap: break-word;
    padding: 0 15px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 60px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 35px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    min-width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent-gold);
    flex-shrink: 0;
}

.checkbox-text {
    color: var(--text-secondary);
    font-weight: 400;
    text-align: left;
}

.submit-btn {
    width: 100%;
    min-height: 44px;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: var(--background-dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.15s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.45s; }
.fade-in:nth-child(5) { transition-delay: 0.6s; }

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--accent-gold);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-btn-accept {
    padding: 12px 35px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: var(--background-dark);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.cookie-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.cookie-link:hover {
    color: var(--accent-gold-hover);
    border-bottom-color: var(--accent-gold-hover);
}

.legal-footer {
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-secondary);
    padding: 40px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-copyright {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links {
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-links a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-gold-hover);
}

.footer-separator {
    color: var(--text-secondary);
    opacity: 0.5;
}

.testimonials-section {
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.9) 0%, rgba(15, 15, 15, 0.95) 50%, rgba(10, 10, 10, 1) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 40px auto;
    padding: 0 50px;
    box-sizing: border-box;
}

.carousel-container {
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
}

.video-testimonial {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
}

.video-testimonial video {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.testimonial-author {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 15px;
    letter-spacing: 1px;
}

.testimonial-author:hover {
    color: var(--accent-gold-hover);
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.carousel-btn:hover {
    background: var(--accent-gold);
    color: var(--background-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    border: 2px solid var(--accent-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-gold);
    transform: scale(1.3);
}

.includes-section {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 1) 0%, rgba(15, 15, 15, 0.95) 100%);
    position: relative;
}

.includes-list {
    list-style: none;
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.includes-list li {
    font-size: 1.15rem;
    color: var(--text-secondary);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 35px;
    transition: color 0.3s ease;
}

.includes-list li:last-child {
    border-bottom: none;
}

.includes-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.3rem;
}

.includes-list li:hover {
    color: var(--text-primary);
}

.includes-more {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 30px 0;
    font-style: italic;
}

.cta-btn {
    display: block;
    min-height: 44px;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: var(--background-dark);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px auto;
    width: fit-content;
    text-align: center;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
}

.hero-final-section {
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.95) 0%, rgba(212, 175, 55, 0.05) 50%, rgba(10, 10, 10, 1) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-final-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-final-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-final-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-final-motivation {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.8;
    font-style: italic;
}

.hero-final-btn {
    display: inline-block;
    min-height: 44px;
    padding: 22px 60px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: var(--background-dark);
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

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

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

.hero-final-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
}

.exclusivity-section {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 1) 0%, rgba(5, 5, 5, 1) 100%);
    text-align: center;
    position: relative;
}

.exclusivity-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 30px auto;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.faq-section {
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.9) 0%, var(--background-gradient) 100%);
    position: relative;
}

.faq-list {
    max-width: 900px;
    margin: 40px auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 35px 40px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateX(5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .pillars-grid {
        gap: 30px;
    }

    .pillars-grid-top {
        grid-template-columns: 1fr;
    }

    section {
        padding: 50px 0;
    }

    .hero-content {
        gap: 35px;
    }

    .hero-logo {
        width: 200px;
    }

    .academy-name {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }

    .hero-tagline {
        font-size: clamp(1.3rem, 2.5vw, 2rem);
    }

    .contact-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }

    .testimonials-carousel {
        padding: 0 40px;
        max-width: 500px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-slide {
        padding: 25px 15px;
    }

    .hero-final-section {
        padding: 100px 0;
    }

    .hero-final-btn {
        padding: 20px 50px;
        font-size: 1.2rem;
    }

    .includes-list {
        padding: 30px;
    }

    .includes-list li {
        font-size: 1.05rem;
    }

    .cta-btn {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .exclusivity-text {
        font-size: 1.1rem;
        padding: 30px;
    }

    .faq-item {
        padding: 30px;
    }

    .faq-question {
        font-size: 1.2rem;
    }

    .faq-answer {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        padding: 0 10px;
    }

    .hero-section {
        padding: 40px 0 30px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-logo {
        width: 180px;
    }

    .academy-name {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .hero-tagline {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .contact-btn {
        padding: 14px 35px;
        font-size: 1rem;
    }

    .video-container {
        border-radius: 12px;
    }

    .pillars-grid-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pillars-grid-bottom {
        max-width: 100%;
    }

    .pillar-card {
        padding: 40px 30px;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .content-section {
        padding: 40px 0;
    }

    .contact-section {
        padding: 40px 0;
    }

    .cookie-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        text-align: center;
    }

    .cookie-text {
        font-size: 0.9rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .cookie-btn-accept {
        width: 100%;
    }

    .footer-links {
        gap: 10px;
        font-size: 0.8rem;
    }

    .legal-footer {
        padding: 30px 0;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .section-title {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
        padding: 0 5px;
        word-wrap: break-word;
        hyphens: auto;
    }

    .testimonials-title {
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content {
        gap: 25px;
    }

    .hero-logo {
        width: 150px;
    }

    .academy-name {
        font-size: 1.4rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .contact-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .pillar-card {
        padding: 30px 20px;
    }

    .hubspot-form-wrapper {
        padding: 30px 15px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .testimonials-carousel {
        padding: 0 10px;
        margin: 30px auto;
        max-width: 100%;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-btn-prev {
        left: -5px;
    }

    .carousel-btn-next {
        right: -5px;
    }

    .testimonial-slide {
        padding: 20px 10px;
    }

    .testimonial-author {
        font-size: 1rem;
    }

    .video-testimonial {
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    }

    .hero-final-section {
        padding: 80px 0;
    }

    .hero-final-btn {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .includes-list {
        padding: 25px 20px;
    }

    .includes-list li {
        font-size: 1rem;
        padding: 12px 0;
        padding-left: 30px;
    }

    .includes-more {
        font-size: 1.1rem;
    }

    .cta-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }

    .exclusivity-text {
        font-size: 1.05rem;
        padding: 25px 20px;
    }

    .faq-item {
        padding: 25px 20px;
    }

    .faq-question {
        font-size: 1.15rem;
    }

    .faq-answer {
        font-size: 1rem;
    }

    .cookie-content {
        padding: 15px;
    }

    .cookie-text {
        font-size: 0.85rem;
    }

    .cookie-btn-accept {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-separator {
        display: none;
    }
}
