/* Wix - Create a website without limits. https://www.wix.com/ */

/* Global Styles */
:root {
    --primary-black: #000000;
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-white: #ffffff;
    --accent-gray: #888888;
    --light-gray: #cccccc;
    --border-gray: #333333;
    --gradient-start: #000000;
    --gradient-end: #1a1a1a;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--accent-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-gray);
}

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

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: lowercase;
}

.logo sup {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--accent-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-white);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.8) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.01) 10px,
            rgba(255,255,255,0.01) 20px
        );
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 80px 0;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff 0%, #cccccc 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-white);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-dark);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--accent-white);
}

.cta-button:hover::before {
    left: 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--primary-dark);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-gray), transparent);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: grayscale(100%) brightness(0.8);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Approach Section */
.approach {
    padding: 100px 0;
    background: var(--primary-black);
    position: relative;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.approach-item {
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.approach-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-gray);
}

.approach-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    background: linear-gradient(45deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.approach-item p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.8;
}

/* Credentials Section */
.credentials {
    padding: 80px 0;
    background: var(--secondary-dark);
}

.credentials-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.credentials-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.credential-item {
    text-align: center;
}

.credential-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.credential-item p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background: var(--primary-black);
    border-top: 1px solid var(--border-gray);
}

.partners-title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-item {
    text-align: center;
}

.partner-item strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.partner-item span {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--primary-dark);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.8;
}

.contact-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--accent-white);
    border: 2px solid var(--accent-white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: var(--accent-white);
    color: var(--primary-black);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--primary-black);
    border-top: 1px solid var(--border-gray);
}

.footer-content {
    text-align: center;
}

.footer-content p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-item:not(:last-child)::after {
        display: none;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}
