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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #d4af37;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --bg-dark: #2a2a2a;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    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 {
    flex: 1;
    min-width: 250px;
}

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

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

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

.btn-accept:hover {
    background: #f0c952;
}

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

.btn-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);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

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

.hero-visual {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 115, 85, 0.05) 10px, rgba(139, 115, 85, 0.05) 20px);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

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

.story-intro {
    padding: 120px 20px;
    background: var(--white);
}

.intro-text {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 24px;
}

.story-intro p {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-intro em {
    font-style: italic;
    color: var(--secondary-color);
}

.problem-reveal {
    padding: 100px 20px;
    background: var(--bg-light);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.content-left,
.content-right {
    flex: 1;
    min-width: 300px;
}

.content-left h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.content-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #8b7355 0%, #6b5945 100%);
    border-radius: 8px;
}

.insight-section {
    padding: 100px 20px;
    background: var(--bg-dark);
    color: var(--white);
}

.section-title {
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.2;
    margin-bottom: 32px;
    text-align: center;
}

.highlight-text {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 28px;
    color: var(--accent-color);
}

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

.trust-build {
    padding: 100px 20px;
    background: var(--white);
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.method-explain {
    padding: 100px 20px;
    background: var(--bg-light);
}

.method-explain h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    min-width: 80px;
}

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

.step p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-mid {
    padding: 80px 20px;
    background: var(--secondary-color);
    text-align: center;
}

.cta-mid h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 32px;
}

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

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

.benefits-reveal {
    padding: 120px 20px;
    background: var(--white);
}

.section-title-center {
    font-size: clamp(32px, 4.5vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
}

.service-item.featured {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: var(--white);
    border-color: var(--accent-color);
}

.service-item.featured h3,
.service-item.featured p {
    color: var(--white);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 24px;
}

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

.btn-select-service:hover {
    background: #6b5945;
    transform: translateY(-2px);
}

.service-item.featured .btn-select-service {
    background: var(--accent-color);
    color: var(--primary-color);
}

.service-item.featured .btn-select-service:hover {
    background: #f0c952;
}

.urgency-section {
    padding: 60px 20px;
    background: var(--accent-color);
    text-align: center;
}

.urgency-text {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.6;
}

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

.form-section h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.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);
    font-size: 15px;
}

.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(--secondary-color);
}

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

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

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

.final-cta h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-button-alt:hover {
    background: #f0c952;
    transform: translateY(-2px);
}

.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

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

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

.sticky-cta.visible {
    display: block;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #f0c952;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

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

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .split-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .step {
        flex-direction: column;
    }

    .step-number {
        font-size: 36px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .sticky-btn {
        width: 100%;
        text-align: center;
    }
}
