:root {
    --primary: #FF6B00;
    --primary-light: #FF8533;
    --secondary: #212529;
    --accent: #FF9F43;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
    --text-dark: #212529;
    --text-muted: #6C757D;
    --glass: rgba(255, 255, 255, 0.1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background: url('moockup.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 70% 60%, rgba(255, 159, 67, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 0, 0.15) 0%, transparent 15%);
    z-index: 1;
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(33, 37, 41, 0.6) 0%, rgba(33, 37, 41, 0.8) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 100px; /* Move down a bit */
}

/* Logo styles removed */

h1 {
    font-size: 5.5rem; /* Increased from 4rem */
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

p.fade-in-delayed {
    font-size: 1.75rem; /* Increased from 1.25rem */
    font-weight: 300;
    margin-bottom: 3.5rem;
    opacity: 0.9;
}

/* Button Styles */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn i {
    font-size: 1.4rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.6);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.btn-outline:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.cta-scroll span {
    font-size: 1.75rem; /* Increased significantly (+3 units approx) */
    font-weight: 600;
}

.cta-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-scroll:hover {
    transform: translateY(5px);
}

.cta-scroll i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Benefits Section */
.benefits {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

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

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.benefit-card:hover .icon-wrapper {
    background: var(--primary);
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.benefit-card p {
    color: var(--text-muted);
}

/* Registration Steps */
.registration {
    padding: 100px 20px;
    background-color: var(--secondary);
    color: var(--white);
}

.registration .section-title h2 {
    color: var(--white);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% - 10px);
    background: rgba(255, 255, 255, 0.1);
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-light);
}

.step-content p {
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Footer */
footer {
    padding: 60px 20px;
    background: #1e272e;
    color: var(--white);
    text-align: center;
}

.footer-content p {
    margin-bottom: 20px;
    opacity: 0.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.5rem;
}

.social-links i {
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-links i:hover {
    color: var(--primary);
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delayed {
    animation: fadeIn 1.5s ease-out both;
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 0 15px;
    }

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

    .step {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .step:not(:last-child)::after {
        display: none;
    }
}
