/* FONTUL INTER - variabil */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/fonts/Inter-VariableFont_opsz,wght.woff2') format('woff2-variations');
}

/* FONTUL MANROPE - variabil */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url('/fonts/Manrope-VariableFont_wght.woff2') format('woff2-variations');
}

/* FONTUL ORBITRON - variabil */
@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('/fonts/Orbitron-VariableFont_wght.woff2') format('woff2-variations');
}

/* Font fallback pentru întregul site */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

/* Font Awesome fallback */
.fa, .fas, .far, .fal, .fab {
    font-family: 'Font Awesome 5 Free', system-ui, sans-serif;
}

/* Core CSS fixes */
html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

@supports (-webkit-touch-callout: none) {
    html {
        scroll-behavior: auto;
    }
}

:root {
    --bg: #0a0e17;
    --accent: #00d58b;
    --accent-light: #33ffb8;
    --accent-gradient-start: #12b2a5;
    --accent-gradient-end: #04dd8a;
    --dark-bg: #12232f;
    --darker-bg: #191f25;
    --text: #e0f7ff;
    --muted: #88ccff;
    --light-text: #ddf7ff;
    --white: #ffffff;
    --black: #000000;
    --glow: 0 0 20px rgba(0, 213, 139, 0.4);
    --card-bg: rgba(18, 35, 47, 0.7);
    --transition: all 0.4s ease;
}

.logo {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
    font-size: 28px;
    opacity: 0;
    animation: showLogo 0.1s ease 0.3s forwards;
}

@keyframes showLogo {
    to { opacity: 1; }
}

h1 span {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 800;
    letter-spacing: 1px;
}

.cta h2 {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 800;
    letter-spacing: 1px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.6;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

/* Fix pentru iconițele Font Awesome să nu apară ca text */
.fontawesome-i2svg-active .fa,
.fontawesome-i2svg-active .fas,
.fontawesome-i2svg-active .far,
.fontawesome-i2svg-active .fal,
.fontawesome-i2svg-active .fab {
    font-family: 'Font Awesome 5 Free' !important;
}

/* Ascunde iconițele până când Font Awesome se încarcă */
.fa, .fas, .far, .fal, .fab {
    font-family: 'Font Awesome 5 Free', system-ui, sans-serif;
    font-weight: 900;
}

/* Când fonturile sunt încărcate, afișează iconițele */
body.fonts-loaded .fa,
body.fonts-loaded .fas,
body.fonts-loaded .far,
body.fonts-loaded .fal,
body.fonts-loaded .fab {
    opacity: 1;
    visibility: visible;
}

/* Fix pentru iOS Safari viewport */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Animații reduse pentru utilizatorii cu preferințe */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Animații normale */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Canvas Animation - OPTIMIZAT PENTRU MOBIL */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

/* Dezactivează canvas pe mobil pentru performanță */
@media (max-width: 768px) {
    canvas {
        display: none !important;
    }
    
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, 
            rgba(10, 14, 23, 0.95) 0%, 
            rgba(0, 213, 139, 0.08) 100%);
        z-index: -1;
        pointer-events: none;
    }
}

/* Pentru tablete și dispozitive mai mari */
@media (min-width: 769px) and (max-width: 1024px) {
    canvas {
        opacity: 0.5;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 30px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background: rgba(18, 35, 47, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 213, 139, 0.1);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    color: var(--white); 
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
}

.logo img {
    width: 44px;
    animation: logoFloat 4s infinite ease-in-out;
    max-width: 100%;
    height: auto;
    display: block;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('/img/ico_bg_image_21.webp') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 120px 20px 40px;
}

.mobile-device .hero {
    background-attachment: scroll;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(18, 35, 47, 0.6);
    z-index: -1;
}

.hero-content {
    animation: slideUp 1.8s ease-out forwards;
    opacity: 0;
    width: 100%;
    max-width: 1200px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
}

.hero-left {
    text-align: left;
}

@media (max-width: 992px) {
    .hero-left {
        text-align: center;
    }
}

h1 {
    font-size: clamp(42px, 10vw, 56px);
    margin-bottom: 20px;
    position: relative;
}

h1 span {
    color: var(--accent);
    display: inline-block;
    animation: pulse 3s infinite;
}

.subtitle {
    font-size: 20px;
    max-width: 500px;
    margin: 24px 0 36px;
    color: var(--light-text);
    animation: fadeIn 1.5s ease-out 0.5s forwards;
    opacity: 0;
}

@media (max-width: 992px) {
    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 60px;
    background: linear-gradient(to right, var(--accent-gradient-start), var(--accent-gradient-end));
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    font-size: 17px;
    text-decoration: none;
    box-shadow: var(--glow);
    transition: var(--transition);
    min-width: 280px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-out 0.8s forwards;
    opacity: 0;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 14px 30px;
        font-size: 16px;
        min-width: 260px;
    }
}

@media (max-width: 480px) {
    .btn {
        min-width: 240px;
        padding: 12px 25px;
        font-size: 15px;
    }
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(0, 213, 139, 0.7);
    background: linear-gradient(to left, var(--accent-gradient-start), var(--accent-gradient-end));
}

.btn i {
    font-size: 20px;
}

/* Partea dreapta cu cronometru */
.hero-right {
    text-align: center;
}

.stage-info {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--white);
    animation: fadeIn 1.5s ease-out 1s forwards;
    opacity: 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .stage-info {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 40px;
    flex-wrap: wrap;
    animation: fadeIn 1.5s ease-out 1.2s forwards;
    opacity: 0;
}

@media (max-width: 768px) {
    .countdown {
        gap: 10px !important;
        margin: 15px 0 25px !important;
    }
}

@media (max-width: 480px) {
    .countdown {
        gap: 8px !important;
    }
}

.cd-box {
    background: transparent;
    border: none;
    padding: 0;
    text-align: center;
    min-width: 85px;
    transition: var(--transition);
    animation: slideUp 1s ease-out forwards;
}

@media (max-width: 768px) {
    .cd-box {
        min-width: 70px !important;
    }
}

@media (max-width: 480px) {
    .cd-box {
        min-width: 65px !important;
    }
}

.cd-num {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 0 15px rgba(0, 213, 139, 0.7);
    line-height: 1;
    font-family: 'Manrope', sans-serif;
}

/* OPTIMIZARE IMPORTANTĂ: Reducem dimensiunea cifrelor pe mobil */
@media (max-width: 768px) {
    .cd-num {
        font-size: 36px !important;
        text-shadow: 0 0 10px rgba(0, 213, 139, 0.7) !important;
    }
}

@media (max-width: 480px) {
    .cd-num {
        font-size: 32px !important;
    }
}

.cd-label {
    font-size: 14px;
    color: var(--light-text);
    margin-top: 8px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .cd-label {
        font-size: 12px !important;
        margin-top: 5px !important;
    }
}

@media (max-width: 480px) {
    .cd-label {
        font-size: 11px !important;
    }
}

.cd-box:hover {
    transform: scale(1.1);
}

.target-info {
    font-size: 20px;
    margin: 20px 0 30px;
    color: var(--white);
    animation: fadeIn 1.5s ease-out 1.4s forwards;
    opacity: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .target-info {
        font-size: 18px;
        margin: 15px 0 25px;
    }
}

/* IMPROVED PROGRESS BAR - OPTIMIZAT PENTRU MOBIL */
.progress-container {
    background: rgba(18, 35, 47, 0.7);
    border: 1px solid rgba(0, 213, 139, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin: 0 auto 20px;
    max-width: 500px;
    animation: fadeIn 1.5s ease-out 1.6s forwards;
    opacity: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    width: 100%;
}

@media (max-width: 768px) {
    .progress-container {
        padding: 20px 15px !important;
        border-radius: 14px !important;
        margin: 0 auto 15px !important;
    }
}

@media (max-width: 480px) {
    .progress-container {
        padding: 18px 12px !important;
        border-radius: 12px !important;
    }
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .progress-header {
        margin-bottom: 15px !important;
    }
}

.progress-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
}

/* OPTIMIZARE IMPORTANTĂ: Reducem dimensiunea procentajului pe mobil */
@media (max-width: 768px) {
    .progress-title {
        font-size: 16px !important;
    }
    
    .progress-percentage {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    .progress-title {
        font-size: 15px !important;
    }
    
    .progress-percentage {
        font-size: 18px !important;
    }
}

.progress-percentage {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Manrope', sans-serif;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(0, 213, 139, 0.08);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(0, 213, 139, 0.15);
}

@media (max-width: 768px) {
    .progress-stats {
        flex-direction: column;
        gap: 10px;
        padding: 12px !important;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    .progress-stats {
        padding: 10px !important;
    }
}

.progress-stat {
    text-align: center;
    flex: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--light-text);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stat-label {
        font-size: 11px !important;
        margin-bottom: 3px !important;
    }
}

.stat-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
}

/* OPTIMIZARE: Reducem dimensiunea textului valorilor pe mobil */
@media (max-width: 768px) {
    .stat-value {
        font-size: 14px !important;
    }
}

.progress-bar {
    height: 16px;
    background: rgba(18, 35, 47, 0.8);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
    border: 1px solid rgba(0, 213, 139, 0.2);
    position: relative;
}

@media (max-width: 768px) {
    .progress-bar {
        height: 14px !important;
        margin-top: 12px !important;
    }
}

@media (max-width: 480px) {
    .progress-bar {
        height: 12px !important;
    }
}

.progress-fill {
    height: 100%;
    width: 95.58%;
    background: linear-gradient(90deg, 
        var(--accent-gradient-start), 
        var(--accent-gradient-end),
        var(--accent-light));
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 213, 139, 0.5);
    position: relative;
    transition: width 1.5s ease-in-out;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    font-family: 'Manrope', sans-serif;
}

@media (max-width: 768px) {
    .progress-text {
        font-size: 11px !important;
        right: 10px !important;
    }
}

.progress-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 213, 139, 0.1);
    color: var(--light-text);
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .progress-time {
        margin-top: 12px !important;
        padding-top: 12px !important;
        font-size: 13px !important;
    }
}

.progress-time i {
    color: var(--accent);
}

/* Section Styles */
section {
    padding: 100px 20px;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }
}

section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
    position: relative;
    font-weight: 800;
}

@media (max-width: 768px) {
    section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* Section 2 - ICO Information */
.section-2 {
    background: url('/img/ico_bg_image_14.webp') center/cover;
}

.mobile-device .section-2,
.mobile-device .section-3,
.mobile-device .section-4,
.mobile-device .section-roadmap,
.mobile-device .section-10,
.mobile-device .section-11 {
    background-attachment: scroll;
}

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .info-section {
        margin: 40px auto;
    }
}

.info-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 213, 139, 0.3);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: var(--transition);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    width: 100%;
}

@media (max-width: 480px) {
    .info-card {
        padding: 25px 20px;
    }
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--glow);
    background: rgba(18, 35, 47, 0.9);
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-header img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    max-width: 100%;
    height: auto;
}

.info-header h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}

.token-price, .participants-count {
    font-size: 18px;
    color: var(--white);
    margin: 20px 0;
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
}

.info-card p {
    color: var(--light-text);
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 300;
}

.btn-small {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(to right, var(--accent-gradient-start), var(--accent-gradient-end));
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    font-size: 15px;
    text-decoration: none;
    box-shadow: var(--glow);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .btn-small {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 25px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .btn-small {
        padding: 10px 20px;
        font-size: 14px;
        max-width: 260px;
    }
}

.btn-small:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 213, 139, 0.7);
    background: linear-gradient(to left, var(--accent-gradient-start), var(--accent-gradient-end));
}

/* Section 3 - Powered By */
.section-3 {
    background: url('/img/ico_bg_image_14.webp?id=1466') center/cover;
    text-align: center;
}

.exchanges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.exchanges img {
    height: 80px;
    filter: grayscale(100%) brightness(0) invert(0.8);
    transition: var(--transition);
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .exchanges img {
        height: 60px;
    }
}

.exchanges img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.15) rotate(5deg);
}

/* Section 4 - Why Choose Kvadden? */
.section-4 {
    background: url('/img/ico_image_8.webp') center/cover;
}

.why-Kvadden {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    font-weight: 300;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 213, 139, 0.3);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

@media (max-width: 480px) {
    .solution-card {
        padding: 25px 20px;
    }
}

.solution-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--glow);
    background: rgba(18, 35, 47, 0.9);
}

.solution-card h3 {
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.solution-card p {
    color: var(--light-text);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

/* Section 5 - Key Features */
.section-5 {
    background: var(--darker-bg);
}

.features-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 213, 139, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 220px;
    width: 100%;
}

@media (max-width: 480px) {
    .feature-card {
        padding: 25px 20px;
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 213, 139, 0.2);
    background: rgba(18, 35, 47, 0.9);
}

.feature-card h3 {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
}

/* Section 6 - We Are The Future */
.section-6 {
    background: var(--dark-bg);
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--glow);
}

.video-container video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* Section 7 - Vision & Mission */
.section-7 {
    background: var(--darker-bg);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 768px) {
    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .vision-text {
        order: 2;
    }
    
    .funding-info {
        order: 1;
    }
}

.vision-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    font-weight: 300;
    text-align: left;
}

@media (max-width: 768px) {
    .vision-text {
        text-align: center;
    }
}

.funding-info {
    background: var(--card-bg);
    border: 1px solid rgba(0, 213, 139, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .funding-info {
        padding: 30px 20px;
        margin: 0 auto;
        max-width: 100%;
    }
}

.token-price-large {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .token-price-large {
        font-size: 32px;
        margin-bottom: 20px;
    }
}

.fund-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.fund-stat {
    padding: 25px;
    background: rgba(0, 213, 139, 0.1);
    border-radius: 15px;
    transition: var(--transition);
}

.fund-stat:hover {
    transform: translateY(-5px);
    background: rgba(0, 213, 139, 0.15);
}

.fund-stat h4 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
}

@media (max-width: 768px) {
    .fund-stat h4 {
        font-size: 28px;
    }
}

.fund-stat p {
    color: var(--light-text);
    font-weight: 300;
    font-size: 16px;
}

/* Roadmap Section */
.section-roadmap {
    background: url('/img/ico_bg_image_17.webp?id=1583') center/cover;
}

.roadmap-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    font-weight: 300;
}

.roadmap-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto 80px;
    position: relative;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .roadmap-visual {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }
}

.roadmap-phase-box {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
    min-width: 200px;
    max-width: 220px;
}

@media (max-width: 768px) {
    .roadmap-phase-box {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
}

.phase-icon {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--accent);
    position: relative;
    z-index: 2;
}

.phase-completed .phase-icon {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--glow);
}

.phase-current .phase-icon {
    animation: pulse 2s infinite;
    box-shadow: 0 0 30px rgba(0, 213, 139, 0.7);
}

.phase-connector {
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--accent), rgba(0, 213, 139, 0.3));
    z-index: 1;
}

@media (max-width: 768px) {
    .phase-connector {
        display: none;
    }
}

.roadmap-phase-box:last-child .phase-connector {
    display: none;
}

.phase-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.phase-period {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.phase-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.status-completed {
    background: rgba(0, 213, 139, 0.2);
    color: var(--accent);
}

.status-current {
    background: rgba(0, 213, 139, 0.3);
    color: var(--white);
    box-shadow: 0 0 15px rgba(0, 213, 139, 0.5);
}

.status-upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.phase-highlight {
    color: var(--accent);
    font-weight: 600;
    font-size: 16px;
}

/* Detailed Roadmap Section */
.section-detailed-roadmap {
    background: var(--dark-bg);
}

.detailed-roadmap-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.roadmap-tab {
    padding: 12px 30px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 213, 139, 0.2);
    border-radius: 30px;
    color: var(--light-text);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .roadmap-tab {
        min-height: 44px;
        min-width: 44px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

.roadmap-tab:hover {
    background: rgba(0, 213, 139, 0.1);
    transform: translateY(-3px);
}

.roadmap-tab.active {
    background: linear-gradient(to right, var(--accent-gradient-start), var(--accent-gradient-end));
    color: var(--white);
    box-shadow: var(--glow);
}

.roadmap-tab-content {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.quarter-timeline {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

.quarter-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.quarter-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.quarter-marker {
    position: absolute;
    left: -40px;
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    border: 4px solid var(--dark-bg);
    box-shadow: 0 0 15px var(--accent);
}

.quarter-title {
    font-size: 24px;
    color: var(--accent);
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
}

.quarter-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.quarter-item {
    background: rgba(0, 213, 139, 0.05);
    border: 1px solid rgba(0, 213, 139, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition);
    border-left: 3px solid var(--accent);
}

.quarter-item:hover {
    background: rgba(0, 213, 139, 0.1);
    transform: translateX(5px);
}

.quarter-item.completed {
    background: rgba(0, 213, 139, 0.08);
    border-color: rgba(0, 213, 139, 0.3);
}

.quarter-item h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.quarter-item p {
    color: var(--light-text);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

/* Section 9 - Our Team */
.section-9 {
    background: var(--darker-bg);
}

.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.member {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.member:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
    background: rgba(18, 35, 47, 0.9);
}

.member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 213, 139, 0.3);
    max-width: 100%;
    height: auto;
}

.member-info h4 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.member-info p {
    color: var(--light-text);
    font-weight: 300;
    font-size: 16px;
}

/* Section 10 - Partners & Supporters */
.section-10 {
    background: url('/img/ico_bg_image_10.webp?id=256') center/cover;
}

.partners-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 18px;
    color: var(--light-text);
    font-weight: 300;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.partners-logos img {
    height: 80px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .partners-logos img {
        height: 60px;
    }
}

.partners-logos img:hover {
    transform: scale(1.1);
    filter: brightness(1);
}

/* Section 11: FAQ */
.section-11 {
    background: var(--darker-bg);
}

.section-11 h2 {
    color: #ffffff !important;
    font-size: 36px;
    margin-bottom: 40px;
}

.faq-compact {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-compact {
    margin-bottom: 15px;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--darker-bg);
    position: relative;
    box-shadow: 0 4px 15px rgba(18, 178, 165, 0.3);
}

.faq-item-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(18, 178, 165, 0.5);
}

.faq-item-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--darker-bg);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 15px;
}

.faq-item-compact:hover::before {
    opacity: 1;
}

.faq-item-compact.active {
    background: var(--darker-bg);
    box-shadow: 0 0 20px rgba(18, 178, 165, 0.6);
}

.faq-q-compact {
    padding: 18px 25px;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    transition: all 0.3s ease;
    color: #dcf6fe;
    font-size: 17px;
    min-height: 65px;
    position: relative;
    z-index: 1;
}

.faq-item-compact.active .faq-q-compact {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-q-compact span {
    font-size: 22px;
    transition: all 0.3s ease;
    color: #dcf6fe;
    font-weight: bold;
    margin-left: 15px;
    flex-shrink: 0;
    background: var(--darker-bg);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item-compact.active .faq-q-compact span {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.3);
}

.faq-a-compact {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--darker-bg);
    backdrop-filter: blur(10px);
}

.faq-item-compact.active .faq-a-compact {
    max-height: 1000px;
}

.faq-a-compact p {
    padding: 25px;
    color: #ffffff;
    line-height: 1.7;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.faq-a-compact p strong {
    color: #e6fff8;
    font-weight: 700;
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .section-11 h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .faq-q-compact {
        padding: 16px 20px;
        font-size: 16px;
        min-height: 60px;
    }
    
    .faq-a-compact p {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-q-compact span {
        font-size: 20px;
        width: 26px;
        height: 26px;
    }
    
    .faq-item-compact {
        border-radius: 12px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .faq-q-compact {
        padding: 14px 18px;
        font-size: 15px;
        min-height: 55px;
    }
    
    .faq-a-compact p {
        padding: 18px;
        font-size: 14.5px;
    }
    
    .faq-q-compact span {
        font-size: 18px;
        width: 24px;
        height: 24px;
        margin-left: 10px;
    }
    
    .faq-item-compact {
        border-radius: 10px;
        margin-bottom: 10px;
    }
}

/* Section 12 - In the News */
.section-12 {
    background: var(--darker-bg);
    text-align: center;
}

.news-carousel-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

@media (max-width: 768px) {
    .news-carousel-simple {
        gap: 15px;
        margin-top: 40px;
    }
}

.news-logos-container {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
}

@media (max-width: 600px) {
    .news-logos-container {
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .news-logos-container::-webkit-scrollbar {
        display: none;
    }
}

.news-logos-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: transform 0.5s ease;
    flex-wrap: nowrap;
}

@media (max-width: 992px) {
    .news-logos-track {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .news-logos-track {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .news-logos-track {
        justify-content: flex-start;
        padding: 0 20px;
        gap: 25px;
    }
}

.news-logos-track img {
    height: 250px;
    filter: brightness(0) invert(0.8);
    transition: var(--transition);
    object-fit: contain;
    min-width: 200px;
    max-width: 250px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 1200px) {
    .news-logos-track img {
        height: 200px;
        min-width: 160px;
        max-width: 200px;
    }
}

@media (max-width: 992px) {
    .news-logos-track img {
        height: 180px;
        min-width: 140px;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .news-logos-track img {
        height: 150px;
        min-width: 120px;
        max-width: 150px;
    }
}

@media (max-width: 600px) {
    .news-logos-track img {
        height: 120px;
        min-width: 110px;
        max-width: 120px;
        flex-shrink: 0;
    }
}

.news-logos-track img:hover {
    transform: scale(1.1);
    filter: brightness(1) invert(0);
}

.news-arrow {
    background: rgba(18, 35, 47, 0.7);
    border: 2px solid rgba(0, 213, 139, 0.3);
    color: var(--accent);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 992px) {
    .news-arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .news-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
        display: none !important; /* Ascunde săgețile pe mobil */
    }
}

.news-arrow:hover {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--glow);
    transform: scale(1.1);
    border-color: var(--accent);
}

.news-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(18, 35, 47, 0.3);
}

.news-arrow:disabled:hover {
    background: rgba(18, 35, 47, 0.3);
    color: var(--accent);
    box-shadow: none;
    transform: none;
    border-color: rgba(0, 213, 139, 0.3);
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 213, 139, 0.2);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-item p, .contact-item a {
    color: var(--light-text);
    line-height: 1.6;
    font-weight: 300;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent);
}

.newsletter-box {
    background: var(--card-bg);
    border: 1px solid rgba(0, 213, 139, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.newsletter-box h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter-box p {
    color: var(--light-text);
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 16px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 213, 139, 0.4);
    border-radius: 50px;
    color: var(--light-text);
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

@media screen and (max-width: 767px) {
    .newsletter-form input,
    input[type="email"],
    input[type="text"],
    textarea {
        font-size: 16px !important;
    }
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 213, 139, 0.3);
}

/* Referral Program Styles */
.referral-program {
    background: var(--card-bg);
    border: 1px solid rgba(0, 213, 139, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.referral-icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

.referral-benefits {
    margin: 25px 0;
    text-align: left;
}

.referral-benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--light-text);
}

.referral-benefit i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 18px;
}

.referral-form {
    margin: 30px 0;
}

.referral-input {
    width: 100%;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 213, 139, 0.4);
    border-radius: 50px;
    color: var(--light-text);
    font-size: 16px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.referral-code-container {
    margin-top: 30px;
    display: none;
}

.referral-code {
    display: flex;
    background: rgba(0, 213, 139, 0.1);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .referral-code {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.referral-code-text {
    font-family: monospace;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    overflow-x: auto;
    padding: 5px;
}

.copy-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .copy-btn {
        width: 100%;
        margin-left: 0;
    }
}

.copy-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.copy-btn.copied {
    background: #2ecc71;
}

.referral-link-container {
    background: rgba(0, 213, 139, 0.1);
    border: 2px solid rgba(0, 213, 139, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .referral-link-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.referral-link {
    color: var(--accent);
    text-decoration: none;
    word-break: break-all;
    padding: 5px;
    font-size: 14px;
}

.copy-link-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .copy-link-btn {
        width: 100%;
        margin-left: 0;
    }
}

.copy-link-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.copy-link-btn.copied {
    background: #2ecc71;
}

.error-message {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Custom Alert Styles */
.custom-alert {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    background: var(--card-bg);
    border: 2px solid var(--accent);
    border-radius: 15px;
    padding: 20px 25px;
    max-width: 350px;
    box-shadow: var(--glow);
    display: none;
    backdrop-filter: blur(10px);
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.custom-alert-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-alert-icon {
    font-size: 28px;
    color: var(--accent);
}

.custom-alert-text h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 18px;
}

.custom-alert-text p {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.4;
}

.custom-alert-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.custom-alert-close:hover {
    color: var(--accent);
}

/* Alertă tematică pentru achiziții */
.purchase-alert {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 9999;
    background: var(--card-bg);
    border: 2px solid var(--accent);
    border-radius: 15px;
    padding: 15px 20px;
    max-width: 300px;
    box-shadow: var(--glow);
    backdrop-filter: blur(10px);
    animation: slideInLeft 0.5s ease-out, fadeOut 0.5s ease-out 4.5s forwards;
    display: none;
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.purchase-alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.purchase-alert-icon {
    font-size: 22px;
    color: var(--accent);
}

.purchase-alert-text h4 {
    color: var(--white);
    margin-bottom: 3px;
    font-size: 16px;
}

.purchase-alert-text p {
    color: var(--light-text);
    font-size: 13px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .purchase-alert {
        top: 80px;
        left: 10px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .purchase-alert {
        top: 70px;
        left: 10px;
        max-width: 250px;
        padding: 12px 15px;
    }
    
    .purchase-alert-text h4 {
        font-size: 15px;
    }
    
    .purchase-alert-text p {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .purchase-alert {
        top: 60px;
        max-width: 220px;
    }
}

/* CTA Section */
.cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(0, 213, 139, 0.1) 100%);
    text-align: center;
}

@media (max-width: 768px) {
    .cta {
        padding: 80px 20px;
    }
}

.cta h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .cta h2 {
        font-size: 36px;
    }
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--light-text);
    line-height: 1.6;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

.btn-white {
    background: var(--white);
    color: var(--black);
    font-weight: 700;
}

.btn-outline {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
        min-width: 250px;
    }
}

/* Footer */
footer {
    background: #000;
    padding: 80px 20px 40px;
}

@media (max-width: 768px) {
    footer {
        padding: 60px 20px 30px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .footer-grid {
        gap: 30px;
        margin-bottom: 40px;
    }
}

.footer-col h4 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    font-weight: 300;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 213, 139, 0.2);
    color: var(--light-text);
    font-weight: 300;
    font-size: 14px;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

@media (max-width: 768px) {
    .social-icon {
        min-width: 44px;
        min-height: 44px;
    }
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

/* Stiluri pentru imagini lipsă */
img:not([src]), img[src=""] {
    background: linear-gradient(45deg, var(--dark-bg) 25%, var(--darker-bg) 50%, var(--dark-bg) 75%);
    background-size: 400% 400%;
    animation: placeholderShimmer 1.5s infinite;
}

@keyframes placeholderShimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

/* Fix pentru Chrome autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--light-text) !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(18, 35, 47, 0.8) inset !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* Fix pentru Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--dark-bg);
}

/* Fix pentru Safari */
@supports (-webkit-hyphens: none) {
    .hero-content {
        -webkit-backface-visibility: hidden;
    }
}

/* ============================================
   OPTIMIZĂRI PERFORMANȚĂ MOBIL
   ============================================ */

/* Dezactivează animații complexe pe mobil */
@media (max-width: 768px) {
    .btn:hover,
    .info-card:hover,
    .solution-card:hover,
    .feature-card:hover,
    .member:hover {
        transform: none !important;
    }
    
    .faq-item-compact:hover {
        transform: translateY(0) !important;
    }
    
    /* Reduce efectele de hover pentru performanță */
    .btn::before {
        display: none;
    }
    
    .progress-fill::after {
        animation: none;
    }
}

/* Reduce numărul de animații pentru baterie */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimizări pentru butoane pe mobil */
@media (max-width: 768px) {
    .info-card .btn-small,
    .section-roadmap .btn,
    #generateReferral.btn,
    #subscribeBtn.btn {
        min-height: 48px !important;
        height: auto !important;
        line-height: 1.4 !important;
        padding: 12px 25px !important;
        font-size: 15px !important;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .btn-small, 
    .section-roadmap .btn,
    #generateReferral.btn,
    #subscribeBtn.btn {
        min-height: 46px !important;
        font-size: 14px !important;
        padding: 10px 20px !important;
        max-width: 260px !important;
    }
}

/* Optimizări carusel */
.news-logos-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.news-logos-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

@media (max-width: 600px) {
    .news-logos-container {
        overflow-x: auto;
        scroll-behavior:s smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .news-logos-container::-webkit-scrollbar {
        display: none;
    }
    
    .news-logos-track {
        padding-bottom: 10px;
    }
    
    .news-arrow {
        display: none !important;
    }
}