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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 40px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 200px 0 160px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.hero-content {
    max-width: 1100px;
}

.hero-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: 96px;
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.hero h1 .outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.8);
    text-stroke: 2px rgba(255, 255, 255, 0.8);
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 300;
}

/* Page Hero (for internal pages) */
.page-hero {
    padding: 180px 0 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero h1 {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -3px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 24px;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    font-weight: 300;
    line-height: 1.6;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid #ffffff;
}

.cta-button:hover {
    background: transparent;
    color: #ffffff;
}

.cta-button-secondary {
    display: inline-block;
    padding: 18px 48px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button-secondary:hover {
    border-color: #ffffff;
}

/* Section Styles */
.section {
    padding: 140px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.section-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 32px;
    letter-spacing: -3px;
    text-transform: uppercase;
    line-height: 1;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 80px;
    max-width: 600px;
    font-weight: 300;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card {
    background: #000000;
    padding: 60px 40px;
    transition: background 0.3s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.service-number {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 32px;
    letter-spacing: 2px;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-weight: 300;
    font-size: 15px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 80px;
}

.stat {
    background: #000000;
    padding: 60px 40px;
    text-align: center;
    transition: background 0.3s;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.02);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.stat-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    font-weight: 300;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 80px;
}

.step {
    background: #000000;
    padding: 60px 40px;
    transition: background 0.3s;
}

.step:hover {
    background: rgba(255, 255, 255, 0.02);
}

.step-number {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 32px;
    letter-spacing: 2px;
}

.step h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.step p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-weight: 300;
    font-size: 15px;
}

/* Content Section (for text-heavy pages) */
.content-section {
    padding: 100px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-top: 60px;
}

.content-sidebar h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.content-main h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 32px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.content-main h3 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.content-main p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-weight: 300;
}

.content-main ul {
    list-style: none;
    margin: 32px 0;
}

.content-main ul li {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    font-weight: 300;
}

.content-main ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 80px auto 0;
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

/* CTA Section */
.cta-section {
    padding: 180px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-section h2 {
    font-size: 72px;
    margin-bottom: 32px;
    letter-spacing: -3px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.cta-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-section h4 {
    margin-bottom: 24px;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 16px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
    font-weight: 300;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    nav .container {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .logo {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 12px;
    }
    
    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
        margin-bottom: 24px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-label {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .page-hero {
        padding: 140px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title,
    .cta-section h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }
    
    .section-subtitle,
    .cta-section p {
        font-size: 16px;
    }

    .services-grid,
    .stats-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .stat,
    .step {
        padding: 40px 24px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .service-card h3,
    .step h3 {
        font-size: 24px;
    }
    
    .content-main h2 {
        font-size: 36px;
        margin-bottom: 24px;
    }
    
    .content-main h3 {
        font-size: 24px;
        margin-top: 40px;
        margin-bottom: 16px;
    }
    
    .content-main p,
    .content-main ul li {
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-button,
    .cta-button-secondary {
        padding: 16px 32px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
    
    .cta-section {
        padding: 100px 0;
    }
    
    .contact-form {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .page-hero h1,
    .section-title,
    .cta-section h2 {
        font-size: 32px;
    }
    
    .service-card,
    .stat,
    .step {
        padding: 32px 20px;
    }
}
