:root {
    --primary: #e85d04;
    --primary-dark: #d64d00;
    --secondary: #4a6fa5;
    --accent: #ffc857;
    --text-dark: #2b2d42;
    --text-light: #f8f9fa;
    --bg-light: #ffffff;
    --bg-cream: #fff9f0;
    --bg-soft: #f4f1ed;
    --bg-dark: #2b2d42;
    --border-light: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-light);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.ad-disclosure {
    background: var(--bg-soft);
    padding: 8px 24px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px 0;
    transition: var(--transition);
}

.hero-funnel {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 50%, var(--bg-soft) 100%);
    position: relative;
    overflow: hidden;
}

.hero-funnel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text .lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    max-width: 540px;
}

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

.hero-image-wrapper {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: #3d5d8a;
    color: var(--text-light);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-light);
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-soft);
}

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

.section-cream {
    background: var(--bg-cream);
}

.section-title {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
}

.section-dark .section-subtitle {
    color: #adb5bd;
}

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

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.story-content p {
    color: #555;
    margin-bottom: 16px;
}

.story-image {
    flex: 1;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.problem-section {
    text-align: center;
    padding: 120px 0;
}

.problem-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.problem-card .icon {
    width: 60px;
    height: 60px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.problem-card p {
    color: #666;
    font-size: 15px;
}

.trust-section {
    padding: 100px 0;
}

.trust-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.trust-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-label {
    font-size: 16px;
    color: #555;
    margin-top: 8px;
}

.testimonials {
    padding: 100px 0;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

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

.testimonial-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

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

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

.testimonial-info span {
    font-size: 14px;
    color: #888;
}

.services-funnel {
    padding: 120px 0;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    height: 200px;
    background: var(--bg-soft);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

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

.service-price span {
    font-size: 16px;
    font-weight: 400;
    color: #888;
}

.cta-inline {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-inline h2 {
    color: var(--text-light);
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-inline p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-inline .btn {
    background: var(--text-light);
    color: var(--primary);
}

.cta-inline .btn:hover {
    background: var(--accent);
    color: var(--text-dark);
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    margin: 50px auto 0;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.benefit-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.benefit-content p {
    color: #666;
    font-size: 15px;
}

.form-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.form-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-info {
    flex: 1;
    color: var(--text-light);
}

.form-info h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.form-info p {
    color: #adb5bd;
    margin-bottom: 24px;
}

.form-info ul {
    list-style: none;
}

.form-info li {
    padding: 12px 0;
    color: #adb5bd;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-info li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

.form-container {
    flex: 1;
    background: var(--bg-light);
    padding: 50px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.footer {
    background: #1a1c2c;
    color: #adb5bd;
    padding: 80px 0 40px;
}

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

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

.footer-col h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 24px;
}

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

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

.footer-col a {
    color: #adb5bd;
}

.footer-col a:hover {
    color: var(--text-light);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-legal a {
    color: #888;
    font-size: 14px;
}

.disclaimer {
    padding: 40px 0;
    background: #151621;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    color: var(--text-light);
    font-size: 14px;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 14px;
}

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

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

.cookie-reject {
    background: transparent;
    border: 1px solid #555;
    color: var(--text-light);
}

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

.page-header {
    padding: 160px 0 80px;
    background: var(--bg-soft);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-header p {
    color: #666;
    font-size: 18px;
}

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

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.page-content h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: var(--text-dark);
}

.page-content p {
    margin-bottom: 16px;
    color: #555;
}

.page-content ul {
    margin: 16px 0 16px 24px;
    color: #555;
}

.page-content li {
    margin-bottom: 8px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.contact-card {
    background: var(--bg-soft);
    padding: 40px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-card p {
    color: #555;
    margin-bottom: 12px;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.thanks-card {
    background: var(--bg-light);
    padding: 80px 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-card p {
    color: #666;
    font-size: 18px;
    margin-bottom: 32px;
}

.about-intro {
    display: flex;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-text p {
    color: #555;
    margin-bottom: 16px;
}

.about-image {
    flex: 1;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.value-card p {
    color: #666;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 0;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 0 0 350px;
    height: 250px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item-content {
    flex: 1;
}

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

.service-item-content p {
    color: #666;
    margin-bottom: 20px;
}

.service-item-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
}

.references-section {
    padding: 60px 0;
    background: var(--bg-soft);
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.references-list a {
    color: var(--secondary);
    word-break: break-all;
}

@media (max-width: 992px) {
    .hero-content,
    .story-block,
    .story-block.reverse,
    .form-wrapper,
    .about-intro {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-item-image {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-md);
    }

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

    .nav-links li {
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-funnel {
        padding: 140px 0 60px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .section {
        padding: 60px 0;
    }

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

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

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