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

:root {
    --primary: #1a1a1a;
    --secondary: #8b7355;
    --accent: #c9a97a;
    --light: #f5f5f5;
    --dark: #2d2d2d;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background: var(--white);
    overflow-x: hidden;
}

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

.narrow {
    max-width: 800px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 120px 20px 80px;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: clamp(42px, 7vw, 86px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

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

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

.story-section {
    padding: 140px 20px;
    background: var(--light);
}

.story-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 28px;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 35px;
    font-weight: 700;
    line-height: 1.2;
}

.image-block {
    width: 100%;
    height: 600px;
    background: linear-gradient(45deg, #8b7355, #c9a97a);
    margin: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.split-section {
    display: flex;
    min-height: 700px;
}

.split-left,
.split-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.split-right {
    background: var(--light);
}

.split-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.split-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 100px 20px;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 50px 35px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
}

.feature-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

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

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

.testimonial-quote {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.pricing-reveal {
    padding: 150px 20px;
    background: var(--white);
    text-align: center;
}

.pricing-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 70px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: var(--light);
    padding: 50px 40px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.service-price {
    font-size: 38px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 25px;
}

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

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

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

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

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

.form-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

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

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--secondary);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    padding: 20px;
    text-align: center;
    z-index: 999;
    display: none;
}

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

.sticky-cta a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
}

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

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

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

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

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

.cookie-btn:hover {
    opacity: 0.8;
}

.urgency-bar {
    background: linear-gradient(90deg, #8b7355, #c9a97a);
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    margin-top: 70px;
}

.inline-cta {
    background: var(--accent);
    padding: 60px 40px;
    text-align: center;
    margin: 80px 0;
}

.inline-cta h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

.problem-section {
    padding: 120px 20px;
    background: var(--white);
}

.problem-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.problem-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.problem-list li {
    font-size: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.solution-section {
    background: var(--secondary);
    color: var(--white);
    padding: 140px 20px;
    text-align: center;
}

.solution-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 35px;
}

.solution-text {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.benefits-section {
    padding: 120px 20px;
}

.benefits-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 70px;
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.benefit-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.thanks-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
}

.thanks-text {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.policy-page {
    padding: 140px 20px 80px;
}

.policy-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.policy-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-page {
    padding: 140px 20px 80px;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

.info-block {
    margin-bottom: 40px;
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.info-text {
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

    .feature-grid,
    .services-grid,
    .benefits-grid {
        flex-direction: column;
    }

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

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

    .pricing-title,
    .solution-title {
        font-size: 36px;
    }
}
