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

:root {
    --primary: #c4501e;
    --primary-dark: #9a3d14;
    --secondary: #2c3e50;
    --accent: #e67e22;
    --light: #fdf6f0;
    --dark: #1a1a1a;
    --gray: #6b7280;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.nav-toggle {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 20px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--dark);
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s;
}

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

/* Hero Section */
.hero-funnel {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    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="40" fill="none" stroke="%23c4501e" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    background-size: 100px 100px;
}

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

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(196, 80, 30, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 80, 30, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

/* Problem Section */
.section-problem {
    padding: 100px 0;
    background: var(--light);
}

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

.problem-card {
    flex: 1 1 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary);
}

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

.problem-card p {
    color: var(--gray);
    line-height: 1.8;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 700px;
}

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

.section-subtitle-center {
    text-align: center;
    margin: 0 auto;
}

/* Story Section */
.section-story {
    padding: 120px 0;
    background: var(--white);
}

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

.story-text {
    flex: 1 1 400px;
}

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

.story-image-box {
    background: linear-gradient(145deg, var(--primary), var(--accent));
    border-radius: 20px;
    padding: 40px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image-box svg {
    width: 150px;
    height: 150px;
    fill: var(--white);
    opacity: 0.9;
}

.story-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--secondary);
    border-left: 4px solid var(--accent);
    padding-left: 25px;
    margin: 30px 0;
}

.story-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Benefits Section */
.section-benefits {
    padding: 100px 0;
    background: var(--secondary);
    color: var(--white);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    fill: none;
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-content p {
    opacity: 0.8;
    line-height: 1.7;
}

/* Testimonials */
.section-testimonials {
    padding: 100px 0;
    background: var(--light);
}

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

.testimonial-card {
    flex: 1 1 320px;
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
}

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

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--secondary);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Services/Pricing */
.section-services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    flex: 1 1 300px;
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-card.featured {
    background: var(--secondary);
    color: var(--white);
}

.service-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-content p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-card.featured .service-price {
    color: var(--accent);
}

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

/* CTA Section */
.section-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.section-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.section-cta p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Form Section */
.section-form {
    padding: 100px 0;
    background: var(--light);
}

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

.form-info {
    flex: 1 1 350px;
}

.form-info h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.form-info p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
}

.form-feature svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.form-container {
    flex: 1 1 400px;
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

/* Urgency Section */
.section-urgency {
    padding: 60px 0;
    background: var(--accent);
    text-align: center;
    color: var(--white);
}

.urgency-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.urgency-content p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Trust Section */
.section-trust {
    padding: 80px 0;
    background: var(--white);
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-item svg {
    width: 50px;
    height: 50px;
    stroke: var(--primary);
    margin-bottom: 15px;
}

.trust-item span {
    font-weight: 600;
    color: var(--secondary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--accent);
}

.footer-col p {
    opacity: 0.7;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    opacity: 0.7;
    transition: opacity 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 30px rgba(196, 80, 30, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta:hover {
    background: var(--primary-dark);
    transform: translateX(-50%) translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    opacity: 0.9;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

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

.cookie-accept:hover {
    background: var(--primary-dark);
}

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

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

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    text-align: center;
    padding: 40px 20px;
}

.thanks-content {
    max-width: 600px;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
}

/* About Page */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

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

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.content-block p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 15px;
}

.content-block ul {
    list-style: none;
    margin: 20px 0;
}

.content-block ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--gray);
}

.content-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.contact-item h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

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

.contact-form-section {
    flex: 1 1 400px;
}

/* Insight Section */
.section-insight {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.insight-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-left: 5px solid var(--accent);
}

.insight-box h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.insight-box p {
    color: var(--gray);
    line-height: 1.8;
}

/* Stats Section */
.section-stats {
    padding: 80px 0;
    background: var(--secondary);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-floating {
        top: 15px;
        right: 15px;
    }

    .hero-content {
        padding: 20px;
    }

    .section-problem,
    .section-story,
    .section-benefits,
    .section-testimonials,
    .section-services,
    .section-form,
    .section-trust,
    .page-content {
        padding: 60px 0;
    }

    .form-container {
        padding: 30px 20px;
    }

    .footer-grid {
        gap: 30px;
    }

    .sticky-cta {
        bottom: 15px;
        padding: 12px 25px;
        font-size: 0.9rem;
    }

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