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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #c9a961;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.hero-fullscreen {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1507680434567-5739c80be1ac?w=1600&h=900&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    max-width: 900px;
    padding: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 48px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.section-hook {
    padding: 120px 40px;
    background: var(--bg-white);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

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

.section-hook h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.section-hook p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.section-split-visual {
    padding: 100px 40px;
    background: var(--bg-light);
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.section-dark {
    padding: 120px 40px;
    background: var(--primary-color);
    color: white;
}

.section-title-center {
    font-size: 42px;
    text-align: center;
    margin-bottom: 32px;
}

.centered-text {
    font-size: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.section-story {
    padding: 100px 40px;
    background: var(--bg-white);
}

.story-block {
    margin-bottom: 48px;
}

.story-block h3 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.story-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.section-insight {
    padding: 100px 40px;
    background: var(--bg-light);
}

.insight-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.insight-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.section-testimonial {
    padding: 100px 40px;
    background: var(--secondary-color);
}

.testimonial-large {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    color: white;
    border-left: 4px solid var(--accent-color);
    padding-left: 32px;
    margin: 0;
}

.testimonial-large footer {
    margin-top: 24px;
    font-size: 18px;
    font-style: normal;
    opacity: 0.8;
}

.section-light {
    padding: 100px 40px;
    background: var(--bg-white);
}

.steps-flow {
    display: flex;
    gap: 32px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.section-trust {
    padding: 100px 40px;
    background: var(--bg-light);
}

.section-trust h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.section-trust p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-visual-break {
    padding: 0;
}

.fullwidth-image {
    width: 100%;
    height: auto;
    display: block;
}

.section-benefits {
    padding: 100px 40px;
    background: var(--bg-white);
}

.section-benefits h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.benefits-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 260px;
}

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.section-testimonial-alt {
    padding: 100px 40px;
    background: var(--bg-light);
}

.section-pricing {
    padding: 100px 40px;
    background: var(--bg-white);
}

.pricing-intro {
    margin-bottom: 60px;
    font-size: 18px;
}

.pricing-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

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

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

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-color);
}

.features-list li:last-child {
    border-bottom: none;
}

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

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

.section-urgency {
    padding: 100px 40px;
    background: var(--bg-light);
}

.section-urgency h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.section-urgency p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-inline {
    display: inline-block;
    margin-top: 16px;
    padding: 16px 40px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.section-form {
    padding: 100px 40px;
    background: var(--bg-white);
}

.section-form h2 {
    font-size: 42px;
    margin-bottom: 16px;
    text-align: center;
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    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(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #b89651;
}

.section-final-cta {
    padding: 120px 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

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

.section-final-cta p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-final {
    display: inline-block;
    padding: 18px 48px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 40px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-button {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #b89651;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-hook h2,
    .section-title-center,
    .section-final-cta h2 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 18px;
    }

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

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

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

    .benefits-list {
        flex-direction: column;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }

    .testimonial-large {
        font-size: 22px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}
