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

:root {
    --primary: #2c5f7c;
    --primary-dark: #1a3d51;
    --secondary: #d4a574;
    --text: #2d2d2d;
    --text-light: #666;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --border: #e0e0e0;
    --success: #4caf50;
}

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

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

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

.center {
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

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

.hero-split {
    background: var(--bg-alt);
    padding: 80px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    padding: 14px 32px;
    border: 2px solid var(--primary);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

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

.btn-block {
    width: 100%;
}

.trust-indicators {
    padding: 60px 0;
    background: white;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.trust-item p {
    color: var(--text-light);
    font-size: 16px;
}

.problem-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-content-left,
.split-content-right {
    flex: 1;
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.split-content-left p,
.split-content-right p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    padding: 15px 20px;
    background: white;
    border-left: 4px solid var(--secondary);
    margin: 20px 0;
}

.check-list {
    list-style: none;
    margin: 25px 0;
}

.check-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    color: var(--text);
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 20px;
}

.split-image-left,
.split-image-right {
    flex: 1;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.insight-section {
    padding: 80px 0;
    background: white;
}

.insight-section h2 {
    font-size: 40px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
    text-align: center;
}

.insight-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-alt);
    padding: 35px;
    border-radius: 10px;
    border-top: 4px solid var(--secondary);
}

.insight-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
}

.testimonial-inline {
    padding: 60px 0;
    background: var(--primary-dark);
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid var(--secondary);
    flex-shrink: 0;
}

.testimonial-text p {
    font-size: 22px;
    color: white;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-text cite {
    color: var(--secondary);
    font-size: 16px;
    font-style: normal;
}

.services-pricing {
    padding: 80px 0;
    background: var(--bg-alt);
}

.services-pricing h2 {
    font-size: 40px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-intro {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: var(--primary-dark);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close:hover {
    color: var(--text);
}

.modal-content h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    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(--primary);
}

.why-now {
    padding: 80px 0;
    background: white;
}

.stats-inline {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    color: var(--text-light);
}

.process-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.process-section h2 {
    font-size: 40px;
    color: var(--primary-dark);
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.3;
}

.process-step h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
}

.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.large-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.small-note {
    margin-top: 20px;
    font-size: 15px;
    opacity: 0.8;
}

.main-footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 36px;
    }

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

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

    .testimonial-text p {
        font-size: 18px;
    }

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

    .stats-inline {
        flex-direction: column;
        gap: 20px;
    }

    .process-steps {
        flex-direction: column;
    }
}