/* =============================================
   STUDIO YAABI - CLEAN PROFESSIONAL DESIGN
   ============================================= */

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

:root {
    --primary: #003C4A;
    --accent: #FFF8F2;
    --hover: #005A6F;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary);
    color: var(--accent);
    overflow-x: hidden;
    position: relative;
}

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

/* =============================================
   MAIN CONTAINER
   ============================================= */
.main-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* =============================================
   LOGO
   ============================================= */
.logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.logo-placeholder {
    width: 300px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    border-color: rgba(255, 248, 242, 0.5);
    transform: translateY(-2px);
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 248, 242, 0.4);
    letter-spacing: 0.2em;
}

/* =============================================
   CONTENT
   ============================================= */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    gap: 40px;
    padding: 40px 0;
}

.headline {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
    animation: fadeInUp 0.8s ease-out;
}

.description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: rgba(255, 248, 242, 0.8);
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

/* =============================================
   SERVICES
   ============================================= */
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 1.2s ease-out;
}

.service-pill {
    padding: 12px 28px;
    background: rgba(255, 248, 242, 0.1);
    border: 1px solid rgba(255, 248, 242, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--accent);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-pill:hover {
    background: rgba(255, 248, 242, 0.15);
    border-color: rgba(255, 248, 242, 0.4);
    transform: translateY(-3px);
}

/* =============================================
   CTA BUTTON
   ============================================= */
.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1.4s ease-out;
    position: relative;
    overflow: hidden;
}

.cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 60, 74, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-link:hover::before {
    left: 100%;
}

.cta-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-link svg {
    transition: transform 0.3s ease;
}

.cta-link:hover svg {
    transform: translateX(4px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

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

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 248, 242, 0.3);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 248, 242, 0.1);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 248, 242, 0.5);
    font-weight: 400;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .main-container {
        padding: 40px 24px 32px;
    }

    .logo-placeholder {
        width: 200px;
        height: 80px;
    }

    .content-wrapper {
        gap: 32px;
    }

    .services-list {
        gap: 12px;
    }

    .service-pill {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .cta-link {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .social-links {
        gap: 20px;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .footer {
        margin-top: 60px;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 32px 20px 24px;
    }

    .logo-wrapper {
        margin-bottom: 60px;
    }

    .services-list {
        gap: 10px;
    }

    .service-pill {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}