* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2 {
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-content {
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 60px;
    filter: brightness(0) invert(1);
}

.hero h1 {
    font-size: clamp(48px, 8vw, 48px);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #cccccc;
}

.hero-services {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff80;
    margin-bottom: 60px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.cta-button-1,
.cta-button-2 {
    display: inline-block;
    padding: 18px 48px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.05em;
    border-radius: 6px;
}

.cta-button-1 {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.cta-button-1:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}


.cta-button-2 {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cta-button-2:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.services {
    padding: 120px 0;
    background-color: #0a0a0a;
}

.section-headline {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: transparent;
    border: 1px solid #1a1a1a;
    padding: 40px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #333333;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #999999;
    font-weight: 300;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.9;
}

.service-card:hover .service-icon {
    opacity: 1;
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

.why-section {
    padding: 100px 0;
    background-color: #000000;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-point h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #ffffff;
}

.why-point p {
    font-size: 16px;
    line-height: 1.7;
    color: #999999;
    font-weight: 300;
}

.process {
    padding: 120px 0;
    background-color: #0d0d0d;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    opacity: 0;
    transform: translateY(30px);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.step-number {
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1;
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    line-height: 1.7;
    color: #999999;
    font-weight: 300;
}

.cta-section {
    position: relative;
    padding: 140px 0;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('../images/cta-bg.jpg') center/cover no-repeat;
}

.cta-section h2 {
    font-size: clamp(36px, 5vw, 36px);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 18px;
    color: #999999;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.7;
    font-weight: 300;
}

.cta-button-large {
    display: inline-block;
    padding: 22px 60px;
    background: #ffffff;
    color: #000000;
    border: none;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.05em;
}

.cta-button-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.contact-email {
    margin-top: 40px;
    font-size: 14px;
    color: #666666;
    letter-spacing: 0.05em;
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-links a {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

footer {
    padding: 60px 0;
    background-color: #050505;
    text-align: center;
    font-size: 14px;
    color: #666666;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links .divider {
    color: #444444;
}

.footer-copy {
    font-size: 13px;
    color: #555555;
}

.footer-credit {
    font-size: 10px;
    color: #444;
    margin-top: 6px;
}

.footer-credit a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #888;
}

#scrollToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #ffffff10;
    color: #ffffff;
    border: none;
    padding: 12px 14px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
}

#scrollToTop:hover {
    background-color: #ffffff30;
    transform: translateY(-3px);
}

@media (max-width: 768px) {

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-logo {
        max-width: 140px;
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subheadline {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-services {
        font-size: 12px;
        margin-bottom: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }

    .cta-button-1,
    .cta-button-2 {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }

    .services {
        padding: 80px 0;
    }

    .section-headline {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px;
    }

    .why-section {
        padding: 80px 0;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process {
        padding: 80px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-number {
        font-size: 48px;
    }

    .cta-section {
        padding: 100px 0;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .cta-button-large {
        width: 100%;
        padding: 18px 24px;
        font-size: 16px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    #scrollToTop {
        right: 20px;
        bottom: 20px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}