/* HackersAcademy Brand Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace:wght@400&display=swap');

/* CSS Custom Properties - HackersAcademy Brand Colors */
:root {
    --primary: #00c389;
    --secondary: #0085ff;
    --dark: #020203;
    --white: #fff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography System - HackersAcademy Brand */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bruno Ace', monospace;
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p, span, div, li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

/* Enhanced alignment for all sections */
section {
    padding: 80px 0;
}

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

/* Header Styles */
.header {
    background: var(--dark);
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 195, 137, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

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

.partnership-tagline {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.header-logo-img {
    height: 50px;
    width: auto;
}

.header-logo p {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

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

.header-logo p {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.partnership-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(0, 195, 137, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 148, 0.3);
}

.official-partner {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blackhat-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.countdown-text {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 195, 137, 0.1);
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 148, 0.3);
}

.time-unit .number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.time-unit .label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: 
        radial-gradient(ellipse at center, rgba(0, 195, 137, 0.06) 0%, transparent 70%),
        var(--dark);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 40px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    text-shadow: 0 0 20px rgba(0, 195, 137, 0.3);
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #00a86b);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0, 195, 137, 0.4);
}

.hero-title .highlight-security {
    color: var(--primary);
    position: relative;
    text-shadow: 0 0 20px rgba(0, 195, 137, 0.3);
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
    text-transform: uppercase;
}

.hero-video {
    margin: 60px 0;
    display: flex;
    justify-content: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}



.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 195, 137, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, var(--dark) 100%);
    position: relative;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #00a86b);
    border-radius: 2px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.course-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 195, 137, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #00a86b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 195, 137, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 195, 137, 0.15),
        0 0 0 1px rgba(0, 195, 137, 0.1);
    background: rgba(26, 26, 26, 0.95);
}

.course-card h3 {
    font-family: 'Bruno Ace', monospace;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
}

/* CTA Hero Section */
.cta-section-hero {
    padding: 60px 0;
    background: var(--dark);
    text-align: center;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #00a86b);
    border-radius: 2px;
}

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

.course-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(0, 195, 137, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #00a86b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 195, 137, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 195, 137, 0.15),
        0 0 0 1px rgba(0, 195, 137, 0.1);
    background: rgba(26, 26, 26, 0.95);
}

.course-card h3 {
    font-family: 'Bruno Ace', monospace;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 0;
}

.cta-section {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #00a86b 100%);
    color: #000;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 195, 137, 0.4);
}

.cta-button i {
    font-size: 1.2rem;
}

/* Social Media Icons - Single Section Only */
.social-channels {
    margin-top: 40px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 195, 137, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 20px;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #111111 100%);
}

.social-proof h2 {
    font-family: 'Bruno Ace', monospace;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--white);
    font-weight: 400;
}

.logos-slider {
    overflow: hidden;
    position: relative;
    height: 100px;
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.company-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    opacity: 0.6;
    filter: grayscale(100%) brightness(1.2) contrast(1.2);
    transition: all 0.3s ease;
    object-fit: contain;
}

.company-logo:hover {
    opacity: 0.9;
    filter: grayscale(30%) brightness(1) contrast(1);
    transform: scale(1.05);
}

.company-logo-text {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 0 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.company-logo-text:hover {
    color: var(--primary);
    border-color: rgba(0, 255, 148, 0.3);
    background: rgba(0, 195, 137, 0.1);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.comparison-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.comparison-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #cccccc;
    line-height: 1.7;
}

.comparison-headline {
    font-family: 'Bruno Ace', monospace;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
    font-weight: 400;
    line-height: 1.2;
}

.comparison-headline strong {
    color: var(--primary);
}

.comparison-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    text-align: center;
}

.why-label {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.why-headline {
    font-family: 'Bruno Ace', monospace;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.why-text {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.highlight-green {
    color: var(--primary);
    font-weight: 600;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.comparison-card h3 {
    font-family: 'Bruno Ace', monospace;
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
}

.other-courses {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.other-courses h3 {
    color: var(--white);
}

.other-courses h3 i {
    color: var(--white);
    opacity: 0.7;
}

.our-training {
    background: rgba(0, 195, 137, 0.05);
    border: 1px solid rgba(0, 195, 137, 0.2);
}

.our-training h3 {
    color: var(--primary);
}

.our-training h3 i {
    color: var(--primary);
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.other-courses li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3rem;
}

.our-training li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Gold Root Access Section */
.gold-root-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    text-align: center;
}

.gold-root-header {
    margin-bottom: 60px;
}

.gold-root-header h2 {
    font-family: 'Bruno Ace', monospace;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 400;
}

.gold-description {
    font-size: 1.4rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.gold-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.what-you-get-section {
    background: rgba(0, 195, 137, 0.05);
    border: 2px solid rgba(0, 195, 137, 0.2);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.what-you-get-section h3 {
    font-family: 'Bruno Ace', monospace;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.4;
}

.benefits-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #cccccc;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3rem;
}

.bonus-section {
    background: rgba(0, 195, 137, 0.05);
    border: 2px solid rgba(0, 195, 137, 0.2);
    border-radius: 16px;
    padding: 40px;
}

.bonus-section h4 {
    font-family: 'Bruno Ace', monospace;
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 400;
}

.bonus-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.bonus-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #cccccc;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.bonus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3rem;
}



.inner-circle {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}



.gold-root-info h2 {
    font-family: 'Bruno Ace', monospace;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 400;
}

.gold-root-info h2 i {
    color: #ffd700;
}

.gold-root-info p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #cccccc;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--white);
}

.benefits-list i {
    color: #ffd700;
    font-size: 1.2rem;
}



.enrollment-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333;
}

.enrollment-form h3 {
    font-family: 'Bruno Ace', monospace;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary);
    font-weight: 400;
}

.jotform-container {
    width: 100%;
    min-height: 400px;
}

/* Gold Root Access Column Layout */
.gold-root-info-column h2 {
    font-family: 'Bruno Ace', monospace;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 400;
}

.gold-root-info-column p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.7;
}

.benefits-list-column {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list-column li {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--white);
    padding-left: 20px;
    position: relative;
}

.benefits-list-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3rem;
}



/* JotForm Custom Styling */
.jotform-container iframe,
.jotform-container .form-all {
    background: transparent !important;
}

/* Override JotForm styles to match our theme */
.jotform-container .form-all * {
    font-family: 'Graphik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.jotform-container .form-input input,
.jotform-container .form-input select,
.jotform-container .form-input textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid #444 !important;
    border-radius: 6px !important;
    color: #ffffff !important;
    padding: 15px !important;
    font-size: 1rem !important;
}

.jotform-container .form-input input:focus,
.jotform-container .form-input select:focus,
.jotform-container .form-input textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 2px rgba(0, 255, 148, 0.2) !important;
    outline: none !important;
}

.jotform-container .form-label {
    color: #cccccc !important;
    font-weight: 500 !important;
}

.jotform-container .form-submit-button {
    background: linear-gradient(135deg, var(--primary) 0%, #00a86b 100%) !important;
    color: var(--dark) !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 6px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

.jotform-container .form-submit-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 255, 148, 0.3) !important;
}

/* Special Offer Section */
.special-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.offer-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card h2 {
    font-family: 'Bruno Ace', monospace;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 400;
}

.offer-card h2 i {
    color: var(--primary);
}

.offer-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.offer-text h3 {
    font-family: 'Bruno Ace', monospace;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 400;
}

.offer-text p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
}

.seats-visual {
    display: flex;
    align-items: center;
    gap: 10px;
}

.seat {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.seat.paid {
    background: var(--primary);
    color: #000;
}

.seat.free {
    background: var(--secondary);
    color: var(--white);
}

.plus {
    font-size: 2rem;
    color: var(--white);
    margin: 0 10px;
}

/* Instructor Section */
.instructor-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #111111 0%, var(--dark) 100%);
    position: relative;
}

.section-heading {
    font-family: 'Bruno Ace', monospace;
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.instructor-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.5);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(0, 195, 137, 0.1);
    backdrop-filter: blur(10px);
}

.instructor-image {
    text-align: center;
    position: relative;
}

/* Removed rotating green background effect */

.instructor-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 6px solid var(--dark);
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.instructor-info h2 {
    font-family: 'Bruno Ace', monospace;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 400;
}

.instructor-title {
    font-family: 'Graphik', sans-serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 40px;
    font-weight: 500;
}

.credentials {
    list-style: none;
    text-align: left;
}

.credentials li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 18px;
    font-size: 1.15rem;
    color: #cccccc;
    line-height: 1.6;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.credentials i {
    color: var(--primary);
    font-size: 1.3rem;
    min-width: 24px;
    margin-top: 2px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #111111 100%);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 195, 137, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.urgency-message {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.urgency-message h2 {
    font-family: 'Bruno Ace', monospace;
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 40px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-message p {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.urgency-message strong {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

.countdown-timer-final {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.social-channels {
    text-align: center;
    position: relative;
    z-index: 2;
}

.social-channels h3 {
    font-family: 'Bruno Ace', monospace;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 400;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.social-link:hover {
    color: var(--primary);
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 195, 137, 0.2);
}

.social-link i {
    font-size: 2rem;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00a86b 100%);
    color: var(--dark);
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 195, 137, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 195, 137, 0.4);
}

.cta-button.whatsapp {
    background: linear-gradient(135deg, var(--secondary) 0%, #0066cc 100%);
    color: var(--white);
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 133, 255, 0.3);
}

.cta-button.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 133, 255, 0.4);
}

.cta-buttons-hero {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button-green {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #00a86b 100%);
    color: #000;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 195, 137, 0.3);
}

.cta-button-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 195, 137, 0.5);
}

.cta-button-green i {
    font-size: 1.3rem;
}

/* Social Channels Section */
.social-channels {
    margin-top: 60px;
    text-align: center;
}

.social-channels h3 {
    font-family: 'Bruno Ace', monospace;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 400;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 195, 137, 0.3);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 100px;
}

.social-link:hover {
    background: rgba(0, 195, 137, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.8rem;
    color: var(--primary);
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 25px;
    }
    
    .gold-root-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .instructor-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .offer-details {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 24px 0;
    }
    
    .header-logo-img {
        height: 40px;
    }
    
    .partnership-tagline {
        font-size: 14px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 24px;
        padding: 0 8px;
    }

    .hero .container {
        padding: 0 20px;
    }

    .hero-video {
        margin: 40px 0;
    }

    .hero-video .video-container {
        margin: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.65;
        padding: 0 8px;
    }
    


    .courses-section {
        padding: 60px 0;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .course-card {
        padding: 25px 20px;
        text-align: center;
        border-radius: 12px;
    }
    
    .course-card h3 {
        font-size: 1.05rem;
        line-height: 1.4;
        margin: 0;
    }
    
    .cta-section {
        margin-top: 48px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 0 16px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 18px 32px;
        font-size: 1.05rem;
        text-align: center;
    }
    
    .cta-section {
        margin-top: 48px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .social-proof {
        padding: 60px 0;
    }
    
    .social-proof h2 {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }
    
    .comparison-section {
        padding: 80px 0;
    }
    
    .comparison-headline {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .why-headline {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .why-text {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
        padding: 0 16px;
    }
    
    .comparison-card {
        padding: 32px 24px;
        border-radius: 16px;
        text-align: left;
    }
    
    .comparison-card h3 {
        font-size: 1.4rem;
        margin-bottom: 24px;
        text-align: center;
    }
    
    .comparison-card ul {
        padding-left: 0;
    }
    
    .comparison-card li {
        padding-left: 32px;
        margin-bottom: 20px;
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .comparison-card li::before {
        left: 8px;
        font-size: 1.4rem;
    }
    
    .gold-root-section {
        padding: 60px 0;
    }
    
    .gold-root-header h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .gold-description {
        font-size: 1.1rem;
        padding: 0 15px;
        line-height: 1.5;
    }

    .gold-content {
        gap: 30px;
        padding: 0 15px;
    }

    .what-you-get-section {
        padding: 25px 20px;
    }

    .what-you-get-section h3 {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .bonus-section {
        padding: 25px 20px;
    }

    .bonus-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .section-heading {
        font-size: 2rem;
        margin-bottom: 48px;
        padding: 0 16px;
    }
    
    .instructor-section {
        padding: 80px 0;
    }
    
    .instructor-card {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .instructor-photo {
        width: 200px;
        height: 200px;
        border-width: 4px;
    }
    
    .instructor-info h2 {
        font-size: 2.25rem;
    }
    
    .credentials li {
        font-size: 1rem;
        padding: 10px 0;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
    }
    
    .final-cta {
        padding: 80px 0;
    }
    
    .urgency-message h2 {
        font-size: 2.25rem;
        margin-bottom: 32px;
    }
    
    .urgency-message p {
        font-size: 1.125rem;
        margin-bottom: 20px;
    }
    
    .countdown-timer-final {
        gap: 12px;
        margin: 32px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-unit {
        padding: 12px 16px;
        min-width: 70px;
    }
    
    .time-unit .number {
        font-size: 1.5rem;
    }
    
    .time-unit .label {
        font-size: 0.75rem;
    }
    
    .cta-buttons {
        margin-bottom: 40px;
    }
    
    .social-links {
        gap: 16px;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
    }
    
    .social-icon i {
        font-size: 18px;
    }
    
    .footer {
        padding: 32px 0 16px;
    }
    
    .footer-logo-img {
        height: 32px;
    }
    
    .partnership-tagline {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .comparison-headline {
        font-size: 1.5rem;
        padding: 0 10px;
        line-height: 1.1;
    }

    .why-headline {
        font-size: 1.5rem;
        padding: 0 10px;
        line-height: 1.1;
    }

    .gold-root-header h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .courses-section,
    .comparison-section,
    .gold-root-section,
    .instructor-section,
    .final-cta {
        padding: 60px 0;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .enrollment-form {
        padding: 30px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Glowing effect for important elements */
.glow {
    box-shadow: 0 0 20px rgba(0, 255, 148, 0.3);
}

.glow:hover {
    box-shadow: 0 0 30px rgba(0, 255, 148, 0.5);
}