:root {
    --primary-color: #ff8c42;
    --secondary-color: #2d3436;
    --accent-color: #00d4ff;
    --dark-bg: #0a0e27;
    --card-bg: #1a1f3a;
    --border-color: #ff8c42;
    --text-light: #e9ecef;
    --text-muted: #adb5bd;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============ NAVBAR ============ */
.navbar {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(45, 52, 54, 0.95) 100%);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 140, 66, 0.5);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.8));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-social {
    display: flex;
    align-items: center;
}

.nav-social-link {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-social-link:hover {
    transform: scale(1.1);
}

.nav-social-icon {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
    transition: filter 0.3s ease;
}

.nav-social-link:hover .nav-social-icon {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(45, 52, 54, 0.80) 50%, rgba(10, 14, 39, 0.85) 100%),
                url('assets/sol-drift-pump-ecosystem.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 140, 66, 0.3);
    white-space: nowrap;
    width: 100%;
    text-align: center;
    overflow: visible;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============ WAITLIST FORM ============ */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    padding: 15px 25px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: rgba(26, 31, 58, 0.8);
    color: var(--text-light);
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
}

.email-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(26, 31, 58, 0.95);
}

.email-input::placeholder {
    color: var(--text-muted);
}

.email-input-large {
    padding: 15px 25px;
    font-size: 1.1rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: rgba(26, 31, 58, 0.8);
    color: var(--text-light);
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

.email-input-large:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(26, 31, 58, 0.95);
}

.email-input-large::placeholder {
    color: var(--text-muted);
}

.form-message {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    text-align: center;
    min-height: 20px;
}

.form-message.success {
    color: #2ecc71;
}

.form-message.error {
    color: #e74c3c;
}

.form-explanation {
    margin: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    line-height: 1.4;
}

.waitlist-form-section {
    margin-top: 1rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7a1f 100%);
    color: #000;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 140, 66, 0.6);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ============ ANIMATIONS ============ */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-40px) translateX(20px);
    }
    75% {
        transform: translateY(-20px) translateX(10px);
    }
}

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

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoom-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fade-in 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation: fade-in 0.8s ease forwards 0.2s;
}

.fade-in-delay-2 {
    animation: fade-in 0.8s ease forwards 0.4s;
}

.fade-in-delay-3 {
    animation: fade-in 0.8s ease forwards 0.6s;
}

.fade-in-up {
    animation: fade-in-up 0.8s ease forwards;
}

.fade-in-up-delay-1 {
    animation: fade-in-up 0.8s ease forwards 0.2s;
}

.fade-in-up-delay-2 {
    animation: fade-in-up 0.8s ease forwards 0.4s;
}

.slide-up {
    animation: slide-up 0.8s ease forwards;
}

.slide-up-delay-1 {
    animation: slide-up 0.8s ease forwards 0.2s;
}

.slide-up-delay-2 {
    animation: slide-up 0.8s ease forwards 0.4s;
}

.zoom-in {
    animation: zoom-in 0.8s ease forwards;
}

.zoom-in-delay-1 {
    animation: zoom-in 0.8s ease forwards 0.2s;
}

.zoom-in-delay-2 {
    animation: zoom-in 0.8s ease forwards 0.4s;
}

/* ============ CONTAINER ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============ SECTION TITLES ============ */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-light);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

/* ============ WHY SECTION ============ */
.why-section {
    padding: 0;
    background: #000;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.why-container {
    display: grid;
    grid-template-columns: 40% 60%;
    width: 100%;
    min-height: 100vh;
}

.why-image {
    background: linear-gradient(135deg, rgba(255, 122, 31, 0.3) 0%, rgba(255, 140, 66, 0.2) 50%, rgba(0, 200, 255, 0.2) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 600"><rect fill="%23ff5722" x="10" y="50" width="80" height="200" opacity="0.3"/><rect fill="%2300d4ff" x="120" y="100" width="60" height="150" opacity="0.4"/><rect fill="%23ff8c42" x="200" y="30" width="90" height="250" opacity="0.3"/><circle fill="%23ffeb3b" cx="100" cy="400" r="50" opacity="0.2"/><path d="M50 300 Q150 250 250 300 T450 300" stroke="%2300d4ff" stroke-width="3" fill="none" opacity="0.5"/></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
}

.why-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.8) 80%, #000 100%);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 140, 66, 0.2) 0%, transparent 50%);
}

.why-content {
    background: #000;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title-alt {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-align: left;
}

.why-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-card {
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.2);
}

.why-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
}

.card-icon svg {
    width: 25px;
    height: 25px;
}

.card-text {
    flex: 1;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.why-card p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.card-highlight {
    color: var(--text-light);
    font-style: normal;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

/* ============ FEATURES SECTION ============ */
.features-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(45, 52, 54, 0.6) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 140, 66, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #000;
}

.feature-icon svg {
    width: 45px;
    height: 45px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2) 0%, rgba(255, 140, 66, 0.1) 100%);
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
}

.guarantee-icon svg {
    width: 35px;
    height: 35px;
}

.guarantee-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.guarantee-box p {
    color: var(--text-muted);
}

/* ============ PROGRESSION SECTION ============ */
.progression-section {
    padding: 80px 0;
    background: #000;
    border-top: 2px solid var(--border-color);
}

.progression-content {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
}

.progression-diagram-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-svg {
    width: 600px;
    height: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 20px rgba(255, 140, 66, 0.3));
}

.circle-center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    box-shadow: 0 0 30px rgba(255, 140, 66, 0.5);
    z-index: 2;
}

.progression-center-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.progression-labels {
    position: relative;
    width: 100%;
    height: 600px;
}

.label-item {
    position: absolute;
    max-width: 280px;
    color: var(--text-light);
}

.label-item h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.label-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.label-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    padding-right: 20px;
}

.label-right-top {
    right: 0;
    top: 20%;
    text-align: left;
    padding-left: 20px;
}

.label-right-bottom {
    right: 0;
    bottom: 15%;
    text-align: left;
    padding-left: 20px;
}

.progression-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.prog-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--border-color);
}

.prog-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.3);
}

.prog-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 2rem 1rem 1rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.prog-image:hover .img-overlay {
    transform: translateY(-5px);
}

.overlay-text {
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.img-placeholder {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.img-character {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.3) 0%, rgba(255, 87, 34, 0.3) 100%),
                radial-gradient(circle at 50% 80%, rgba(255, 140, 66, 0.5) 0%, transparent 70%);
}

.img-dashboard {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2) 0%, rgba(244, 67, 54, 0.3) 100%),
                radial-gradient(circle at 50% 50%, rgba(255, 140, 66, 0.4) 0%, transparent 70%);
}

.img-tournament {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.3) 0%, rgba(233, 30, 99, 0.3) 100%),
                radial-gradient(circle at 50% 50%, rgba(156, 39, 176, 0.4) 0%, transparent 70%);
}

.placeholder-text {
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.progression-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 2rem;
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7a1f 100%);
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: left;
    color: #000;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.cta-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(26, 31, 58, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.registration-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.image-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(45, 52, 54, 0.8) 100%);
    border: 3px solid rgba(26, 31, 58, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.register-box {
    background: radial-gradient(circle, rgba(255, 140, 66, 0.3) 0%, transparent 70%);
    padding: 2rem;
    border: 2px solid rgba(255, 140, 66, 0.5);
    border-radius: 15px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.cta-text h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1rem;
}

.cta-text p {
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.benefits-box {
    background: rgba(26, 31, 58, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #000;
}

.benefits-box h4 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefits-box p {
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #2d3436;
    color: var(--primary-color);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.btn-primary:hover {
    background-color: #1a1f3a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-secondary:hover {
    background-color: #000;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============ FOOTER ============ */
.footer {
    background: #0a0e27;
    border-top: 2px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-muted);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

.social-icon {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 30px rgba(255, 140, 66, 0.4));
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 40px rgba(255, 140, 66, 0.3);
    border-radius: 20px;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 1)) drop-shadow(0 0 40px rgba(255, 140, 66, 0.6));
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.9), 0 0 60px rgba(255, 140, 66, 0.5);
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        max-width: 900px;
    }
    
    .why-container {
        grid-template-columns: 100%;
    }
    
    .why-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        max-width: 700px;
    }
    
    .why-image {
        display: none;
    }
    
    .why-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
}
