:root {
    --bg-color: #000000;
    --surface-color: #111111;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --border-color: #222222;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-family: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 32px;
    width: auto;
    border-radius: 4px;
}

.company-name {
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--surface-color);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 40px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1s;
}

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

.premium-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    background: var(--surface-color);
    margin-bottom: 32px;
}

.hero-headline {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 600px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* SERVICES SECTION */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #444;
}

.service-icon {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 24px;
    background: #222222;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #ffffff;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* SHOWCASE SECTION */
.showcase-section {
    padding: 100px 0;
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.showcase-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover {
    transform: scale(1.02);
}

.showcase-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* TRUST SECTION */
.trust-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-stat h2 {
    font-size: 3rem;
    font-weight: 600;
    display: inline-block;
    color: #ffffff;
}

.trust-stat span {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 600;
}

.trust-stat p {
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* CONTACT SECTION */
.inquiry-section {
    padding: 140px 0;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -1px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.contact-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: #555;
    background: #1a1a1a;
}

.contact-icon {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-card.whatsapp:hover .contact-icon {
    color: #25D366;
}

.contact-card.telegram:hover .contact-icon {
    color: #229ED9;
}

/* FOOTER */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img-small {
    height: 24px;
    border-radius: 4px;
    filter: grayscale(100%);
    opacity: 0.8;
}

.brand-line {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* FLOATING POPUP */
.floating-popup {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
    width: 320px;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.close-popup {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.close-popup:hover {
    color: white;
}

.popup-headline {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.popup-subtext {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.floating-popup .btn-sm {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    border: none;
}

.floating-popup .btn-sm:hover {
    background: #e0e0e0;
}

.whatsapp-quick {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.whatsapp-quick:hover {
    color: #25D366;
}

/* INTRO REVEAL */
.intro-reveal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-color);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.intro-reveal.hidden {
    opacity: 0;
    visibility: hidden;
}

.reveal-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    animation: scalePulse 1.5s ease-in-out forwards;
}

@keyframes scalePulse {
    0% { transform: scale(0.8); opacity: 0; filter: blur(10px); }
    50% { transform: scale(1.1); opacity: 1; filter: blur(0px); }
    100% { transform: scale(1); opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .company-name {
        display: none; /* Make room for social icons on tiny screens */
    }
    .social-links {
        gap: 12px;
    }
    .hero-section {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 40px;
    }
    .hero-headline {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    .hero-subtext {
        font-size: 1.05rem;
        margin-bottom: 32px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .btn {
        width: 100%;
    }
    .services-section, .showcase-section, .trust-section, .inquiry-section {
        padding: 60px 0;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .service-card {
        padding: 24px 16px;
    }
    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .service-card p {
        font-size: 0.85rem;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .trust-stat h2 {
        font-size: 2rem;
    }
    .trust-stat span {
        font-size: 1.8rem;
    }
    .floating-popup {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
    }
}
