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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2e5c7f;
    --accent-color: #d4a574;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --urgent-color: #e74c3c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-cookie:hover {
    background: #c49563;
}

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

.btn-cookie-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

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

.hero-left,
.hero-right {
    flex: 1;
    padding: 4rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-right {
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.cta-primary,
.cta-secondary,
.cta-urgent,
.cta-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

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

.cta-secondary {
    background: var(--accent-color);
    color: var(--primary-color);
}

.cta-secondary:hover {
    background: #c49563;
    transform: translateY(-2px);
}

.cta-urgent {
    background: var(--urgent-color);
    color: white;
}

.cta-urgent:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

.cta-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.problem-section,
.solution-intro,
.case-study {
    padding: 5rem 2rem;
}

.split-reverse,
.split-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.content-block,
.image-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-block p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.insight-list,
.results-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.insight-list li,
.results-list li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.emphasis {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.insight-deep {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.centered-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.centered-content h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.three-column-cards {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.card p {
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
}

.testimonial-card {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 1.5rem;
    color: white;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.numbered-list {
    margin: 2rem 0;
}

.numbered-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.numbered-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.numbered-item p {
    color: var(--text-light);
}

.services-pricing {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.pricing-card {
    flex: 1;
    min-width: 320px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.service-features li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

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

.select-service:hover,
.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.urgency-block {
    background: var(--urgent-color);
    padding: 4rem 2rem;
    text-align: center;
}

.urgency-content {
    max-width: 900px;
    margin: 0 auto;
}

.urgency-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.quote-inline {
    font-style: italic;
    color: var(--secondary-color);
    font-size: 1.15rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

.form-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

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

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

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

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

.final-cta {
    background: var(--primary-color);
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.footer {
    background: #1a1a1a;
    color: #b0b0b0;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-column p {
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #888;
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        padding: 2rem;
    }

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

    .split-reverse,
    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .three-column-cards {
        flex-direction: column;
    }

    .pricing-grid {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .content-block h2 {
        font-size: 2rem;
    }

    .centered-content h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .pricing-card {
        min-width: 100%;
    }
}