@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0EA5E9;
    --primary-dark: #0284C7;
    --primary-light: #E0F2FE;
    --accent: #F43F5E;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --bg-main: #FFFFFF;
    --bg-alt: #F8FAFC;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

nav {
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    z-index: 1000;
    padding: 1.25rem 5%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

nav.scrolled {
    padding: 0.75rem 5%;
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(14, 165, 233, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 38px;
    width: 38px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-size: 1.5rem;
    color: var(--text-main);
}

.logo-text span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    margin: 5px 0;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.hero {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    display: flex;
    align-items: center;
    background: url('../assets/hero-bg.png') no-repeat center center/cover;
    position: relative;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 400;
}

.section {
    padding: 8rem 5%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.service-card {
    padding: 3rem;
    background: var(--bg-main);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

/* .service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: block;
} */

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-main);
    margin-bottom: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    user-select: none;
    color: var(--text-main);
}

.faq-answer {
    padding: 0 1.75rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.75rem;
    max-height: 500px;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.chevron {
    transition: var(--transition);
    font-size: 0.7rem;
    opacity: 0.5;
}

.page-header {
    padding: 12rem 5% 4rem;
    background: var(--bg-alt);
    text-align: center;
}

.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.content-page h3 {
    margin: 2.5rem 0 1rem;
}

.content-page ul {
    margin: 1.5rem 0 1.5rem 1.75rem;
}

.content-page li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

footer {
    padding: 5rem 5% 2rem;
    background: var(--bg-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-main);
    color: var(--text-muted);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.25);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.footer-links-col a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
    text-align: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.7;
}


.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 450px;
    background: var(--bg-main);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-banner .btns {
    display: flex;
    gap: 1rem;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.organic-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
}

.trusted-stripe {
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trusted-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-main);
    padding: 0.75rem 1.5rem 0.75rem 0.75rem;
    border-radius: 100px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.creator-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    margin-left: -15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.avatar:first-child {
    margin-left: 0;
}

.trusted-content p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.02em;
}

.trusted-content .highlight {
    color: var(--primary);
    font-weight: 700;
}

.samples-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--primary-light);
    background: white;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.sample-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg-alt);
    cursor: pointer;
    transition: var(--transition);
}

.sample-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.placeholder-sample {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
    padding: 1rem;
}

.sample-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 165, 233, 0.8), transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.sample-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.sample-item:hover {
    transform: scale(1.02);
}

.sample-item:hover .sample-overlay {
    opacity: 1;
}

.sample-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        padding: 0.75rem 5%;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 1000;
        gap: 2rem;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-links { 
        display: flex;
        flex-direction: column; 
        align-items: center; 
        gap: 2rem; 
    }
    .nav-links a {
        font-size: 1.5rem;
    }
    .nav-menu .btn-primary { 
        display: block; 
        font-size: 1.1rem;
    }
    .hero {
        padding-top: 5rem;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .section {
        padding: 4rem 5%;
    }

    .services-grid,
    .samples-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trusted-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        text-align: center;
    }

    .trusted-stripe {
        padding: 2rem 5%;
    }

    .sample-item {
        aspect-ratio: auto;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        display: block;
    }

    .content-page {
        padding: 4rem 5%;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 1.25rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }
}