/* ============================================================
   RESET & ROOT — Common for all pages
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

:root {
    --gold: #f9d423;
    --gold-dark: #f7971e;
    --gold-light: #ffec8a;
    --bg-dark: #0b0e1a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 215, 0, 0.15);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.4);
    --shadow-glow: 0 20px 60px rgba(0, 0, 0, 0.6);
    --gradient-gold: linear-gradient(135deg, var(--gold), var(--gold-dark));
    --green: #51cf66;
    --green-dark: #2b8a3e;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* ===== PARTICLES ===== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: floatUp linear infinite;
}
@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1.5);
        opacity: 0;
    }
}

/* ============================================================
   NAVBAR — Common
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 40px;
    background: rgba(11, 14, 26, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ===== LOGO WITH IMAGE ===== */
.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-placeholder {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    /* === YELLOW BACKGROUND HATAYA === */
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}
.logo-text small {
    font-size: 0.6rem;
    display: block;
    -webkit-text-fill-color: var(--text-muted);
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 400;
    margin-top: -2px;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}
.nav-links a:hover {
    color: var(--gold);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a.active {
    color: var(--gold);
}
.nav-links a.active::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 12px;
}
.btn-login {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-login:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn-signup {
    background: var(--gradient-gold);
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    color: #0b0e1a;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(247, 151, 30, 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-signup:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(247, 151, 30, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 10px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================
   FOOTER — Common
   ============================================================ */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px 40px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 280px;
    line-height: 1.6;
}

.footer-links-col ul {
    list-style: none;
}
.footer-links-col ul li {
    margin-bottom: 8px;
}
.footer-links-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}
.footer-links-col ul li a:hover {
    color: var(--gold);
}

.footer-newsletter input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(249, 212, 35, 0.05);
}
.footer-newsletter button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(247, 151, 30, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}
.footer-bottom-links a:hover {
    color: var(--gold);
}

.social-links a:hover {
    color: var(--gold) !important;
    transform: translateY(-2px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    padding: 130px 40px 60px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
}

.animated-text {
    display: inline-block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 200%;
}

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

.rewards-highlight {
    display: inline-block;
    animation: pulseReward 2s ease-in-out infinite;
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
}
@keyframes pulseReward {
    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(249, 212, 35, 0.2);
    }
    50% {
        transform: scale(1.04);
        text-shadow: 0 0 40px rgba(249, 212, 35, 0.5), 0 0 80px rgba(249, 212, 35, 0.2);
    }
}

.hero-text .subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin: 18px 0 25px;
    line-height: 1.8;
    max-width: 550px;
}
.hero-text .subtitle i {
    color: var(--gold);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.hero-stats .stat {
    text-align: center;
}
.hero-stats .stat h3 {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
}
.hero-stats .stat p {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--gradient-gold);
    border: none;
    padding: 16px 38px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #0b0e1a;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(247, 151, 30, 0.25);
    text-decoration: none;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 151, 30, 0.4);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    padding: 16px 35px;
    border-radius: 60px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.btn-secondary:hover {
    background: rgba(249, 212, 35, 0.08);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ============================================================
   IMAGE PLACEHOLDER — UPDATED
   ============================================================ */
.image-placeholder {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0 auto;
    overflow: visible;
}

.hero-animated-image {
    width: 500px;
    height: 500px;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
    border: none;
    outline: none;
    background: transparent;
    border-radius: 0;
    filter: drop-shadow(0 0 30px rgba(249, 212, 35, 0.03));
    will-change: transform, opacity;
    image-rendering: auto;
    flex-shrink: 0;
    flex-grow: 0;
}

/* ============================================================
   ZOOM + DISSOLVE ANIMATION
   ============================================================ */
@keyframes zoomDissolve {
    0% {
        transform: scale(1) translateY(0px);
        opacity: 1;
    }
    25% {
        transform: scale(1.03) translateY(-4px);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.06) translateY(-6px);
        opacity: 0.8;
    }
    75% {
        transform: scale(1.03) translateY(-4px);
        opacity: 0.9;
    }
    100% {
        transform: scale(1) translateY(0px);
        opacity: 1;
    }
}

.hero-animated-image {
    animation: zoomDissolve 8s ease-in-out infinite;
}

.image-placeholder:hover .hero-animated-image {
    transform: scale(1.04) translateY(-4px) !important;
    opacity: 1 !important;
    filter: brightness(1.05) saturate(1.05) 
            drop-shadow(0 25px 70px rgba(249, 212, 35, 0.15)) !important;
    animation-play-state: paused;
}

.image-placeholder::before,
.image-placeholder::after {
    display: none !important;
    content: none !important;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px 30px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 50px 45px;
}
.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.about-text h3 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 15px;
}
.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}
.mission-box {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.3s;
}
.mission-box:hover {
    border-color: rgba(249, 212, 35, 0.1);
    background: rgba(249, 212, 35, 0.02);
}
.mission-box h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 5px;
}
.mission-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================================
   ROADMAP SECTION
   ============================================================ */
.roadmap-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px 30px;
}

.section-title {
    text-align: center;
    margin: 70px 0 40px;
    padding: 0 20px;
}
.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
}
.section-title h2 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 10px auto 0;
    line-height: 1.7;
}

/* Progress Bar */
.roadmap-progress {
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    padding: 0 20px;
}
.progress-track {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: visible;
}
.progress-track .progress-fill {
    height: 100%;
    width: 33%;
    background: var(--gradient-gold);
    border-radius: 10px;
    position: relative;
    transition: width 1.5s ease;
    box-shadow: 0 0 30px rgba(249, 212, 35, 0.2);
}
.progress-track .progress-fill::after {
    content: '⚡';
    position: absolute;
    right: -12px;
    top: -12px;
    font-size: 1.2rem;
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    position: relative;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    text-align: center;
    position: relative;
}
.progress-step .step-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    position: relative;
}
.progress-step .step-dot.active {
    background: var(--gradient-gold);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(249, 212, 35, 0.3);
}
.progress-step .step-dot.completed {
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 0 20px rgba(81, 207, 102, 0.3);
}
.progress-step .step-dot.completed::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0b0e1a;
    font-size: 0.6rem;
    font-weight: 900;
}
.progress-step .step-label {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}
.progress-step .step-label.active {
    color: var(--gold);
}
.progress-step .step-label.completed {
    color: var(--green);
}
.progress-step .step-sub {
    color: var(--text-muted);
    font-size: 0.6rem;
    opacity: 0.6;
}

/* Phase Cards */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.phase-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 35px 28px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}
.phase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(249, 212, 35, 0.03), transparent);
    border-radius: 50%;
    transition: 0.6s;
}
.phase-card:hover::before {
    transform: scale(1.5);
}
.phase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.phase-card .phase-icon {
    font-size: 2.6rem;
    color: var(--gold);
    margin-bottom: 10px;
    display: inline-block;
}
.phase-card .phase-number {
    display: inline-block;
    background: rgba(249, 212, 35, 0.1);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid rgba(249, 212, 35, 0.12);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.phase-card .phase-status {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.phase-card .phase-status.live {
    background: rgba(81, 207, 102, 0.15);
    color: var(--green);
    border: 1px solid rgba(81, 207, 102, 0.2);
}
.phase-card .phase-status.upcoming {
    background: rgba(249, 212, 35, 0.08);
    color: var(--gold);
    border: 1px solid rgba(249, 212, 35, 0.1);
}
.phase-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}
.phase-card .phase-goal {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 14px;
    font-style: italic;
}
.phase-card ul {
    list-style: none;
}
.phase-card ul li {
    color: var(--text-secondary);
    padding: 5px 0;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.phase-card ul li:last-child {
    border-bottom: none;
}
.phase-card ul li i {
    color: var(--gold);
    font-size: 0.75rem;
    width: 18px;
    text-align: center;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    max-width: 1300px;
    margin: 50px auto 0;
    padding: 0 40px 60px;
}
.cta-box {
    background: linear-gradient(135deg, rgba(249, 212, 35, 0.06), rgba(247, 151, 30, 0.02));
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 50px 45px;
    text-align: center;
}
.cta-box h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}
.cta-box h2 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.7;
}
.cta-box .cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        padding: 35px 28px;
    }
    .about-mission {
        grid-template-columns: 1fr;
    }
    .image-placeholder {
        max-width: 380px;
        margin: 0 auto;
    }
    .hero-animated-image {
        width: 380px;
        height: 380px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(11, 14, 26, 0.98);
        padding: 20px;
        border-radius: 20px;
        margin-top: 10px;
        gap: 12px;
        border: 1px solid var(--glass-border);
    }
    .nav-links.open {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .auth-buttons {
        display: none;
    }
    .auth-buttons.open {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
    }
    .auth-buttons.open .btn-login,
    .auth-buttons.open .btn-signup {
        flex: 1;
        text-align: center;
        justify-content: center;
    }

    .logo-placeholder {
        width: 38px;
        height: 38px;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .logo-text small {
        font-size: 0.5rem;
    }

    .hero {
        padding: 110px 20px 40px;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        gap: 20px;
    }
    .hero-stats .stat h3 {
        font-size: 1.5rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .about-section {
        padding: 0 20px;
    }
    .roadmap-section {
        padding: 0 20px;
    }
    .phases-grid {
        grid-template-columns: 1fr;
    }
    .cta-section {
        padding: 0 20px 40px;
    }
    .cta-box {
        padding: 30px 20px;
    }
    .cta-box h2 {
        font-size: 1.8rem;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .image-placeholder {
        max-width: 320px;
    }
    .hero-animated-image {
        width: 320px;
        height: 320px;
    }
    @keyframes zoomDissolve {
        0% { transform: scale(1) translateY(0px); opacity: 1; }
        50% { transform: scale(1.03) translateY(-3px); opacity: 0.85; }
        100% { transform: scale(1) translateY(0px); opacity: 1; }
    }

    .progress-steps {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding-left: 20px;
    }
    .progress-step {
        flex-direction: row;
        gap: 15px;
        width: 100%;
    }
    .progress-step .step-label {
        font-size: 0.8rem;
    }
    .progress-track {
        display: none;
    }
    .roadmap-progress {
        padding: 0;
    }

    .footer {
        padding: 30px 20px 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-placeholder {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    .logo-text {
        font-size: 1rem;
    }
    .logo-text small {
        font-size: 0.45rem;
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }
    .about-grid {
        padding: 25px 18px;
    }
    .phase-card {
        padding: 25px 18px;
    }
    .image-placeholder {
        max-width: 260px;
    }
    .hero-animated-image {
        width: 260px;
        height: 260px;
    }
    @keyframes zoomDissolve {
        0% { transform: scale(1) translateY(0px); opacity: 1; }
        50% { transform: scale(1.02) translateY(-2px); opacity: 0.85; }
        100% { transform: scale(1) translateY(0px); opacity: 1; }
    }
    .cta-box h2 {
        font-size: 1.4rem;
    }
}