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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(to bottom, #0a0a0a 0%, #1a1a1a 100%);
    overflow-x: hidden;
}

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

/* Header */
header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    background: transparent;
    z-index: 1000;
    left: 0;
    top: 15px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 0 3rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    -webkit-user-drag: none;
    pointer-events: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    z-index: 2;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    position: relative;
}

.nav-links a:not(.cta-button) {
    padding: 8px 0;
    border-radius: 0;
    background: transparent;
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-links a.cta-button:hover {
    box-shadow: 0 8px 25px rgba(51, 51, 51, 0.4), 0 -8px 25px rgba(51, 51, 51, 0.2);
}

.cta-button {
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 51, 51, 0.6), 0 -8px 25px rgba(51, 51, 51, 0.3);
}

/* Hero Section */
.hero {
    min-height: 120vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(64, 64, 64, 0.3) 0%, rgba(10, 10, 10, 1) 70%);
    margin-top: -120px;
    padding-top: 120px;
    z-index: 1;
}

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

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #888888 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #888888;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #cccccc;
    border: 2px solid #333333;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(51, 51, 51, 0.6), 0 -12px 30px rgba(51, 51, 51, 0.3);
}

.btn-secondary:hover {
    border-color: #888888;
    color: #ffffff;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #111111;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #888888;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #666666;
    box-shadow: 0 20px 40px rgba(64, 64, 64, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #444444 0%, #666666 100%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-icon img, .service-icon svg {
    width: 32px;
    height: 32px;
    -webkit-user-drag: none;
    pointer-events: none;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Results Section */
.results {
    padding: 120px 0;
    background: #0a0a0a;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.result-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #888888;
    margin-bottom: 0.5rem;
}

.result-item p {
    font-size: 1.1rem;
    color: #cccccc;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #111111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.about-features li::before {
    content: "✓";
    background: linear-gradient(135deg, #444444 0%, #666666 100%);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #0a0a0a;
    text-align: center;
}

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

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
}

.contact-item a {
    color: #888888;
    text-decoration: none;
}

.contact-item a:hover {
    color: #ffffff;
}

/* Footer */
footer {
    background: #111111;
    padding: 3rem 0;
    border-top: 1px solid #2a2a2a;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.social-links {
    display: flex;
    gap: 1rem;
    position: absolute;
    right: 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #555555;
    transform: translateY(-2px);
}

.social-links img {
    width: 20px;
    height: 20px;
}

.copyright {
    color: #888888;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-tagline {
        font-size: 1.2rem;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        text-align: center;
        flex-direction: column;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

* {
    scroll-behavior: smooth;
}

img {
    -webkit-user-drag: none;
    pointer-events: none;
}

/* Animation for elements coming into view */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
