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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #e94560;
    --accent-color: #0f3460;
    --text-color: #2d2d2d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 5rem;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 500px;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.hero-visual {
    flex: 1;
    height: 90vh;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-visual {
    flex: 1;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.intro-content {
    flex: 1;
    padding: 5rem;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.process-split {
    display: flex;
    background: var(--accent-color);
}

.process-content {
    flex: 1.2;
    padding: 5rem;
    color: var(--white);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    opacity: 0.8;
}

.process-visual {
    flex: 0.8;
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.capabilities-full {
    padding: 6rem 5%;
    background: var(--white);
}

.capabilities-header {
    text-align: center;
    margin-bottom: 4rem;
}

.capabilities-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
}

.capabilities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.capability-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    max-width: 500px;
    padding: 2.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
}

.capability-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.capability-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.pricing-split {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.pricing-intro {
    max-width: 700px;
    margin-bottom: 4rem;
}

.pricing-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.pricing-intro p {
    font-size: 1.1rem;
    color: var(--gray);
}

.pricing-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.price-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.price-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff5f7 0%, var(--white) 100%);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.price-card ul {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-card li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: var(--accent-color);
}

.trust-split {
    display: flex;
    align-items: stretch;
}

.trust-split.reverse {
    flex-direction: row-reverse;
}

.trust-visual {
    flex: 1;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.trust-content {
    flex: 1;
    padding: 5rem;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.trust-reasons {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.reason-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.reason-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.testimonials-full {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.testimonials-full h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    max-width: 400px;
    padding: 2.5rem;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
}

.form-split {
    display: flex;
    background: var(--white);
    padding: 6rem 5%;
    gap: 4rem;
}

.form-intro {
    flex: 0.8;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

.form-container {
    flex: 1.2;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.8rem;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: var(--secondary-color);
}

.btn-submit {
    padding: 1.2rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #d63851;
    transform: translateY(-2px);
}

.final-cta {
    padding: 6rem 5%;
    background: var(--secondary-color);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-primary,
.btn-secondary {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .process-split,
    .trust-split,
    .form-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .trust-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .process-content,
    .trust-content {
        padding: 3rem;
    }

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

    .capabilities-header h2,
    .pricing-intro h2,
    .final-cta h2 {
        font-size: 2rem;
    }

    .price-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content,
    .intro-content,
    .process-content,
    .trust-content {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .price-card,
    .capability-card,
    .testimonial-card {
        flex: 1 1 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
