
:root {
    --bg-dark: #0b0d12;
    --bg-card: #11141b;
    --bg-card-hover: #161a23;
    --primary: #00b4d8;
    --primary-gradient: linear-gradient(135deg, #00b4d8 0%, #00f2ff 100%);
    --primary-glow: rgba(0, 180, 216, 0.4);
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --border-color: #1f2937;
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}


#loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--bg-dark); z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
    overflow: hidden;
}
#loading-screen.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-bg-glow {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-dark) 90%);
}
.light-source {
    position: absolute; width: 150%; height: 150%;
    background: var(--primary); filter: blur(150px); opacity: 0.15;
    transform: rotate(-30deg);
}
.ls-1 { top: -50%; left: -50%; animation: lightDrift 12s ease-in-out infinite alternate; }
.ls-2 { bottom: -50%; right: -50%; opacity: 0.1; background: #007791; animation: lightDrift 18s ease-in-out infinite alternate-reverse; }
@keyframes lightDrift {
    0% { transform: translate(0, 0) rotate(-30deg); }
    100% { transform: translate(15%, 15%) rotate(-30deg); }
}

.loader-content { text-align: center; z-index: 1; position: relative; }
.loader-logo {
    font-size: 4rem; font-weight: 800; color: var(--text-white);
    letter-spacing: -2px; margin-bottom: 20px;
    animation: pulseGlowWhite 2s infinite ease-in-out;
}
.loader-logo span {
    background: var(--primary-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
    animation: pulseGlowBlue 2s infinite ease-in-out;
}
.loader-bar {
    width: 200px; height: 4px; background: rgba(255, 255, 255, 0.1);
    border-radius: 4px; overflow: hidden; margin: 0 auto;
}
.loader-progress {
    height: 100%; width: 0%; background: var(--primary-gradient);
    border-radius: 4px; box-shadow: 0 0 10px var(--primary);
    animation: loadingProgress 2s ease-in-out infinite;
}
@keyframes loadingProgress {
    0% { width: 0%; margin-left: 0; }
    50% { width: 70%; margin-left: 30%; }
    100% { width: 0%; margin-left: 100%; }
}

body {
    background-color: var(--bg-dark); color: var(--text-white);
    font-family: var(--font-main); line-height: 1.6;
    overflow-x: hidden; user-select: none; -webkit-user-select: none;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.text-center { text-align: center; }


.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 24px; border-radius: 8px; font-weight: 600;
    font-size: 0.95rem; cursor: pointer; border: none; outline: none;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, opacity 0.2s;
}
.btn-primary {
    background: var(--primary-gradient); color: #000;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.25);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0, 180, 216, 0.4); }
.btn-secondary { background: transparent; border: 1px solid var(--border-color); color: var(--text-white); }
.btn-secondary:hover { border-color: var(--text-white); background: rgba(255,255,255,0.05); }


.navbar {
    position: fixed; top: 0; width: 100%; background: rgba(11, 13, 18, 0.85);
    backdrop-filter: blur(12px); z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05); padding: 20px 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--text-white); letter-spacing: -1px; }
.logo span { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.nav-links { display: flex; gap: 40px; }
.nav-links a {
    color: var(--text-gray); font-size: 0.95rem; font-weight: 500;
    position: relative; transition: color 0.3s ease;
}
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background: var(--primary-gradient);
    transition: width 0.3s ease-out;
}
.nav-links a:hover { color: var(--text-white); text-shadow: 0 0 8px rgba(255, 255, 255, 0.5); }
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }


.hero {
    height: auto; min-height: 100vh; padding-top: 120px; padding-bottom: 80px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative;
    background-color: var(--bg-dark);
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px), radial-gradient(circle at 50% 10%, rgba(0, 180, 216, 0.08), transparent 50%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
}
.hero-content { display: flex; flex-direction: column; align-items: center; max-width: 900px; }
.badge {
    background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color);
    padding: 6px 16px; border-radius: 50px; font-size: 0.85rem;
    color: var(--text-gray); margin-bottom: 24px; display: flex; align-items: center; gap: 8px;
}
.badge .dot { width: 6px; height: 6px; background: var(--primary-gradient); border-radius: 50%; box-shadow: 0 0 10px var(--primary); }
.hero-title {
    font-size: 6.5rem; line-height: 1.1; margin-bottom: 24px;
    letter-spacing: -3px; font-weight: 800; animation: pulseGlowWhite 4s infinite ease-in-out;
}
.hero-title span {
    background: var(--primary-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
    display: inline-block; animation: pulseGlowBlue 4s infinite ease-in-out;
}


.hero-name {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 800;
    margin-top: -20px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-name span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulseGlowBlue 4s infinite ease-in-out;
}


.hero-name .white-part {
    background: none;
    -webkit-text-fill-color: var(--text-white);
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: pulseGlowWhite 4s infinite ease-in-out;
}

@keyframes pulseGlowWhite {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }
    50% { text-shadow: 0 0 50px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.1); }
}
@keyframes pulseGlowBlue {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 180, 216, 0.1); }
    50% { text-shadow: 0 0 50px rgba(0, 180, 216, 0.5), 0 0 20px rgba(0, 180, 216, 0.3); }
}
.hero-subtitle { font-size: 1.25rem; color: var(--text-gray); margin-bottom: 40px; max-width: 650px; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 80px; }
.stats-row {
    display: flex; gap: 60px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px; width: 100%; justify-content: center; margin-bottom: 40px;
}
.stat-item h3 {
    font-size: 2.5rem; background: var(--primary-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; display: inline-block; margin-bottom: 5px;
}
.stat-item p { color: var(--text-gray); font-size: 0.9rem; }
.scroll-indicator-container {
    position: absolute; bottom: 20px; display: flex; flex-direction: column;
    align-items: center; gap: 8px; animation: bounce 2.5s infinite;
}
.scroll-text {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    font-weight: 600; background: var(--primary-gradient); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
    display: inline-block; text-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
}
.scroll-line {
    width: 2px; height: 50px;
    background: linear-gradient(to bottom, var(--primary), transparent); border-radius: 2px;
}


.about-section { padding: 120px 0; }
.section-tag {
    font-weight: 700; font-size: 0.85rem; letter-spacing: 1px;
    margin-bottom: 10px; text-transform: uppercase; background: var(--primary-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block;
}
.section-header h2 { font-size: 3rem; margin-bottom: 20px; }
.section-header h2 span { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.section-desc-center { max-width: 600px; margin: 0 auto; color: var(--text-gray); font-size: 1.1rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
.about-image-card {
    position: relative; height: 400px; background: #13161c;
    border-radius: 20px; border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.card-bg { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(0,180,216,0.1), transparent 70%); }
.nl-watermark { font-size: 8rem; font-weight: 800; color: rgba(255,255,255,0.03); }
.est-badge {
    position: absolute; bottom: 20px; right: 20px;
    background: var(--primary-gradient); color: #000;
    padding: 8px 16px; border-radius: 8px; font-weight: 700;
}
.circle-deco {
    position: absolute; width: 100px; height: 100px;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
}
.top-right { top: -20px; right: -20px; }
.bottom-left { bottom: -20px; left: -20px; }
.about-text h3 { font-size: 1.8rem; margin-bottom: 20px; }
.about-text p { color: var(--text-gray); margin-bottom: 20px; line-height: 1.7; }
.trust-row { display: flex; align-items: center; gap: 15px; margin-top: 30px; }
.avatars { display: flex; align-items: center; }
.avatars img {
    width: 45px; height: 45px; border-radius: 50%;
    border: 3px solid var(--bg-dark); margin-left: -15px;
    object-fit: cover; background-color: #2a2e37;
    transition: transform 0.3s ease; position: relative; z-index: 1;
}
.avatars img:first-child { margin-left: 0; }
.avatars img:hover { transform: translateY(-5px) scale(1.1); z-index: 10; border-color: var(--primary); }


.vouches-section {
    padding: 80px 0; overflow: hidden; background: #0e1015;
    border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
}
.marquee-wrapper {
    margin-top: 20px; padding: 20px 0; width: 100%; position: relative;
    display: flex; overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track { display: flex; gap: 30px; width: max-content; animation: scroll 60s linear infinite; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.vouch-card {
    background: linear-gradient(145deg, var(--bg-card), rgba(0, 180, 216, 0.05));
    border: 1px solid var(--border-color); padding: 25px; border-radius: 12px;
    min-width: 350px; max-width: 350px; display: flex; flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.vouch-card:hover { border-color: var(--primary); box-shadow: 0 8px 25px rgba(0, 180, 216, 0.15); transform: translateY(-5px); }
.vouch-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.vouch-avatar {
    width: 45px; height: 45px; background: rgba(0, 180, 216, 0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; border: 1px solid rgba(0, 180, 216, 0.2); overflow: hidden;
}
.vouch-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.vouch-avatar i { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.vouch-header h4 { font-size: 1rem; color: var(--text-white); }
.vouch-role { font-size: 0.8rem; color: var(--text-gray); }
.stars { font-size: 0.9rem; margin-bottom: 15px; text-shadow: 0 0 8px rgba(0, 180, 216, 0.3); }
.stars i { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.vouch-card p { font-size: 0.9rem; color: var(--text-gray); font-style: italic; line-height: 1.5; }


.vouch-buttons { margin-top: 40px; display: flex; justify-content: center; gap: 20px; }
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px);
    z-index: 10000; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease;
}
.modal-overlay.active { display: flex; opacity: 1; }
.modal-content {
    background: #11141b; border: 1px solid var(--border-color); padding: 40px;
    border-radius: 16px; width: 90%; max-width: 500px; position: relative;
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.1); transform: translateY(20px); transition: transform 0.3s ease;
    overflow: hidden;
}
.modal-content.large { max-width: 900px; max-height: 80vh; overflow-y: auto; }
.modal-overlay.active .modal-content { transform: translateY(0); }
.close-modal { position: absolute; top: 20px; right: 25px; font-size: 2rem; color: var(--text-gray); cursor: pointer; transition: 0.2s; }
.close-modal:hover { color: var(--primary); }
.modal-content h3 { margin-bottom: 25px; font-size: 1.5rem; color: var(--text-white); text-align: center; }
.vouches-grid-view { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.loading-text { text-align: center; color: var(--text-gray); width: 100%; }


.modal-content.large::-webkit-scrollbar { width: 8px; }
.modal-content.large::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.03); border-radius: 0 16px 16px 0; }
.modal-content.large::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.modal-content.large::-webkit-scrollbar-thumb:hover { background: #0096b4; }


.modal-loader {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 13, 18, 0.95); z-index: 10; display: flex; flex-direction: column;
    align-items: center; justify-content: center; transition: opacity 0.3s ease;
}
.modal-loader.hidden { pointer-events: none; opacity: 0; }
.modal-loader p { margin-top: 15px; font-weight: 600; color: var(--primary); letter-spacing: 1px; }
.spinner {
    width: 50px; height: 50px; border: 4px solid rgba(0, 180, 216, 0.3);
    border-top: 4px solid var(--primary); border-radius: 50%; animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }


.file-upload-btn {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color); padding: 10px 15px; border-radius: 8px; cursor: pointer;
    font-size: 0.9rem; color: var(--text-gray); transition: 0.3s; width: 100%; justify-content: center;
}
.file-upload-btn:hover { border-color: var(--primary); color: var(--text-white); background: rgba(0, 180, 216, 0.1); }
.file-name-text { display: block; font-size: 0.8rem; color: var(--text-gray); margin-top: 5px; text-align: center; font-style: italic; }


.services-section { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.service-card {
    background: var(--bg-card); border: 1px solid var(--border-color); padding: 30px;
    border-radius: 12px; position: relative; overflow: hidden;
    transition: transform 0.2s ease-out, border-color 0.2s ease-out;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.icon-box {
    width: 50px; height: 50px; background: rgba(0, 180, 216, 0.1);
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; font-size: 1.2rem; margin-bottom: 20px;
}
.icon-box i { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { color: var(--text-gray); font-size: 0.9rem; }
.pill {
    position: absolute; top: 20px; right: 20px;
    background: var(--primary-gradient); color: #000;
    font-size: 0.7rem; padding: 4px 10px; border-radius: 20px; font-weight: 700;
}
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 100px; }
.value-card { background: var(--bg-card); padding: 25px; border-radius: 12px; border: 1px solid var(--border-color); }
.icon-box.small { width: 40px; height: 40px; font-size: 1rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.85rem; color: var(--text-gray); }
.portfolio-section { padding: 100px 0; background: #0e1015; }
.creators-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.creator-card {
    background: var(--bg-card); border: 1px solid var(--border-color); padding: 30px;
    border-radius: 12px; text-align: center;
    transition: transform 0.2s ease-out, border-color 0.2s ease-out;
}
.creator-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.avatar {
    width: 80px; height: 80px; background: #1f2937; border-radius: 50%;
    margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 700; position: relative;
 
}

.avatar img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1); 
}
.avatar span { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.platform-icon {
    position: absolute; bottom: 0; right: 0; width: 24px; height: 24px;
    background: #111; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 0.8rem; color: #fff; border: 2px solid var(--bg-card);
    z-index: 2; 
}


.platform-icon.kick-bg {
    background: #53FC18;
    color: #000000;   
    border-color: #53FC18; 
    display: flex; align-items: center; justify-content: center;
}
.platform-icon.kick-bg svg { display: block; font-weight: 800; }

.creator-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.genre { font-size: 0.85rem; color: var(--text-gray); margin-bottom: 15px; }
.follower-pill { background: rgba(255,255,255,0.05); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; color: var(--primary); display: inline-block; }
.roster-cta { text-align: center; margin-top: 50px; color: var(--text-gray); }
.link-text { margin-left: 10px; font-weight: 600; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }


.contact-section { padding: 120px 0; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; margin-top: 60px; }
.contact-form-wrapper, .contact-info-wrapper { background: var(--bg-card); border: 1px solid var(--border-color); padding: 40px; border-radius: 16px; }
.contact-form-wrapper h3, .contact-info-wrapper h3 { margin-bottom: 30px; font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; color: var(--text-gray); margin-bottom: 8px; }
.form-group input, .form-group textarea {
    width: 100%; background: #0b0d12; border: 1px solid var(--border-color);
    padding: 14px 16px; border-radius: 8px; color: white; font-family: inherit; font-size: 0.95rem;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { height: 120px; resize: none; }
.full-width { width: 100%; justify-content: center; }
.info-desc { color: var(--text-gray); margin-bottom: 30px; }
.info-card { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; padding: 15px; background: rgba(255,255,255,0.03); border-radius: 10px; }
.info-card .label { font-size: 0.8rem; color: var(--text-gray); }
.info-card h4 { font-size: 1rem; }
.quick-response-box { margin-top: 30px; padding: 20px; background: rgba(0, 180, 216, 0.05); border-radius: 10px; border: 1px solid rgba(0, 180, 216, 0.1); display: flex; gap: 15px; }
.status-dot { width: 10px; height: 10px; min-width: 10px; background: #10b981; border-radius: 50%; margin-top: 5px; box-shadow: 0 0 5px #10b981; flex-shrink: 0; }
.quick-response-box h4 { font-size: 0.95rem; margin-bottom: 5px; }
.quick-response-box p { font-size: 0.8rem; color: var(--text-gray); }
.form-status { margin-bottom: 15px; font-size: 0.95rem; font-weight: 500; text-align: center; min-height: 20px; transition: opacity 0.3s ease; }
.form-status.success { color: #10b981; }
.form-status.error { color: #ef4444; }


.footer { border-top: 1px solid var(--border-color); padding: 60px 0 30px; background: #080a0e; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.footer-left p { color: var(--text-gray); font-size: 0.9rem; margin-top: 10px; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { width: 40px; height: 40px; background: #1f2937; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-gray); transition: 0.3s; }
.footer-socials a:hover { background: var(--primary); color: #000; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-gray); }
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--primary); }


@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }
.hidden { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (max-width: 992px) { .services-grid, .creators-grid, .values-grid { grid-template-columns: repeat(2, 1fr); } .hero-title { font-size: 4rem; } }
@media (max-width: 768px) {
    .nav-links { display: none; } .hamburger { display: block; } .hero-title { font-size: 2.8rem; }
   
    .hero-name { font-size: 2.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; } .about-image-card { height: 300px; }
    .stats-row { flex-direction: column; gap: 30px; } .services-grid, .creators-grid, .values-grid { grid-template-columns: 1fr; }
    .vouches-grid-view { grid-template-columns: 1fr; } .vouch-buttons { flex-direction: column; align-items: center; }
    
   
    .hero { height: auto; min-height: 100vh; padding-top: 120px; padding-bottom: 80px; }
    .scroll-indicator-container { position: relative; bottom: auto; margin-top: 50px; }
    
    .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: var(--bg-card); padding: 20px; border-bottom: 1px solid var(--border-color); }
}