:root {
    --bg-color: #1a0000;
    --text-color: #ffffff;
    --accent-color: #ff6c54;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(26, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

/* Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-intro {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 4rem;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.accent-bar {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    flex-shrink: 0;
}

.hero-subtitle p {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-color);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-button {
    background: rgba(255, 108, 84, 0.1);
    color: var(--text-color);
    border: 1px solid var(--accent-color);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.text-link {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: var(--accent-color);
}

.text-link i {
    transition: transform 0.3s ease;
}

.text-link:hover i {
    transform: translateX(5px);
}

.hero-visual {
    position: relative;
    height: 600px;
    width: 100%;
}

.hero-shape {
    width: 400px;
    height: 400px;
    background: linear-gradient(145deg, rgba(255, 108, 84, 0.1), rgba(26, 0, 0, 0.3));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 108, 84, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Services Section */
.services {
    padding: 8rem 4rem;
    position: relative;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    background: linear-gradient(145deg, rgba(255, 108, 84, 0.15), rgba(26, 0, 0, 0.5));
    transform: translateY(-20px);
    border: 1px solid rgba(255, 108, 84, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 108, 84, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

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

.service-tagline {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-features span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.service-features span:hover {
    background: rgba(255, 108, 84, 0.2);
    color: var(--text-color);
}

/* Process Section */
.process {
    padding: 8rem 4rem;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    width: 100%;
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 4rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent,
        var(--accent-color) 10%,
        var(--accent-color) 90%,
        transparent
    );
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-content {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-step:nth-child(odd) .step-content {
    grid-column: 2;
}

.process-step:nth-child(even) .step-content {
    grid-column: 1;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: -2rem;
    left: 2rem;
}

/* Contact Section */
.contact {
    padding: 8rem 4rem;
    width: 100%;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text {
    max-width: 500px;
}

.contact-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 2rem 0;
}

.contact-visual {
    position: relative;
    height: 400px;
}

.contact-shape {
    width: 300px;
    height: 300px;
    background: linear-gradient(145deg, rgba(255, 108, 84, 0.1), rgba(26, 0, 0, 0.3));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Footer */
footer {
    padding: 2rem 4rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer {
        padding: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 {
        font-size: 5rem;
    }
}

@media (max-width: 1024px) {
    .hero-content,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text,
    .contact-text {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-subtitle,
    .hero-cta {
        justify-content: center;
    }

    .hero-visual,
    .contact-visual {
        height: 300px;
        margin-top: 2rem;
    }

    .process-timeline {
        padding: 2rem 0;
    }

    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        margin-bottom: 4rem;
    }

    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
        grid-column: 1;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

    .footer-links {
        justify-content: center;
    }

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

    .service-card.featured {
        transform: translateY(0);
    }

    h1 {
        font-size: 4rem;
    }

    .hero,
    .services,
    .process,
    .contact {
        padding: 6rem 2rem;
    }

    nav {
        padding: 1.5rem 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
}

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

    h2 {
        font-size: 2.5rem;
    }

    .hero-subtitle p {
        font-size: 1.2rem;
    }
}
