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

:root {
    --primary: #2c2416;
    --secondary: #8b7355;
    --accent: #c9a959;
    --light: #f5f0e6;
    --dark: #1a1510;
    --text: #3d3428;
    --muted: #6b5d4d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

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

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

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(28, 24, 18, 0.95);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: lowercase;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--light);
    margin: 5px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    color: var(--light);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hero-funnel {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-funnel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23c9a959" opacity="0.1"/></svg>');
    background-size: 30px 30px;
}

.hero-content {
    text-align: center;
    color: var(--light);
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 8px 25px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-title strong {
    font-weight: 700;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 89, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent);
    padding: 16px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark);
}

.btn-inline {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: #fff;
}

.section-dark {
    background: var(--dark);
    color: var(--light);
}

.section-accent {
    background: var(--secondary);
    color: var(--light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-title strong {
    font-weight: 700;
}

.section-dark .section-title {
    color: var(--light);
}

.section-lead {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 50px;
    max-width: 700px;
}

.section-dark .section-lead {
    color: rgba(255,255,255,0.7);
}

.story-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent);
    z-index: -1;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

.story-text p {
    margin-bottom: 20px;
    color: var(--muted);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    flex: 1 1 calc(50% - 15px);
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-left: 3px solid var(--accent);
}

.problem-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.problem-card p {
    opacity: 0.8;
    line-height: 1.8;
}

.insight-wrapper {
    display: flex;
    gap: 50px;
}

.insight-main {
    flex: 2;
}

.insight-side {
    flex: 1;
    background: var(--primary);
    color: var(--light);
    padding: 40px;
}

.insight-side h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.insight-list {
    list-style: none;
}

.insight-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-left: 25px;
    position: relative;
}

.insight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

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

.trust-numbers {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 60px 0;
}

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

.trust-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.trust-label {
    font-size: 0.95rem;
    color: var(--muted);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-flow {
    margin-top: 60px;
}

.testimonial-card {
    background: #fff;
    padding: 50px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.testimonial-card::before {
    content: '"';
    font-size: 8rem;
    position: absolute;
    top: -20px;
    left: 30px;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info strong {
    display: block;
    color: var(--primary);
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--muted);
}

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

.benefit-item {
    flex: 1 1 calc(33.333% - 27px);
    text-align: center;
    padding: 40px 30px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--dark);
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.benefit-item p {
    color: var(--muted);
    line-height: 1.7;
}

.services-reveal {
    margin-top: 60px;
}

.service-card-funnel {
    display: flex;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.service-card-funnel.featured {
    border: 2px solid var(--accent);
}

.service-image {
    flex: 0 0 300px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-image svg {
    width: 80px;
    height: 80px;
    fill: var(--light);
    opacity: 0.5;
}

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-content p {
    color: var(--muted);
    margin-bottom: 25px;
    flex: 1;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
}

.urgency-banner {
    background: linear-gradient(90deg, var(--accent), #d4b366);
    color: var(--dark);
    padding: 25px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.urgency-banner .countdown {
    display: inline-flex;
    gap: 15px;
    margin-left: 20px;
}

.urgency-banner .countdown span {
    background: var(--dark);
    color: var(--accent);
    padding: 8px 15px;
    font-size: 1.2rem;
}

.form-section {
    background: linear-gradient(180deg, var(--light) 0%, #fff 100%);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.form-info p {
    color: var(--muted);
    margin-bottom: 30px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.form-container {
    flex: 1;
    background: #fff;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e0d5;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--light);
}

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

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

.form-submit {
    width: 100%;
    padding: 20px;
    background: var(--accent);
    color: var(--dark);
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--primary);
    color: var(--light);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 15px 0;
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    color: var(--light);
    font-size: 1.1rem;
}

.sticky-text strong {
    color: var(--accent);
}

footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--dark);
    color: var(--light);
    padding: 25px 30px;
    z-index: 9999;
    display: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--light);
}

.page-header {
    background: var(--primary);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--light);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.7;
    font-size: 1.1rem;
}

.content-page {
    padding: 80px 0;
    background: #fff;
}

.content-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary);
}

.content-page h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--primary);
}

.content-page p {
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.8;
}

.content-page ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-page ul li {
    margin-bottom: 10px;
    color: var(--text);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--muted);
    margin-bottom: 20px;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.contact-info {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-item {
    flex: 1;
    padding: 30px;
    background: var(--light);
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--muted);
}

.about-story {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder svg {
    width: 100px;
    height: 100px;
    fill: var(--light);
    opacity: 0.3;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    color: var(--muted);
    margin-bottom: 20px;
}

.thanks-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    padding: 40px 20px;
}

.thanks-content {
    text-align: center;
    color: var(--light);
    max-width: 600px;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.thanks-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--dark);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.thanks-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .story-block {
        flex-direction: column;
    }

    .story-block.reverse {
        flex-direction: column;
    }

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

    .form-wrapper {
        flex-direction: column;
    }

    .trust-numbers {
        gap: 40px;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 30px);
    }

    .about-story {
        flex-direction: column;
    }

    .service-card-funnel {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 200px;
    }
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        display: none;
    }

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

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .problem-card {
        flex: 1 1 100%;
    }

    .benefit-item {
        flex: 1 1 100%;
    }

    .trust-numbers {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .sticky-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .services-grid .service-card {
        flex: 1 1 100%;
    }

    .contact-info {
        flex-direction: column;
    }
}
