:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #c53030;
    --accent: #ed8936;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-cream: #fffbf0;
    --bg-slate: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

.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(--white);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.ad-disclosure {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 15px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

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

.hero-funnel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80') center/cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 52px;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197,48,48,0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary);
    transition: all 0.2s;
    cursor: pointer;
}

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

.section {
    padding: 100px 24px;
}

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

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

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

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 600px;
}

.hook-section {
    padding: 80px 24px;
    background: var(--bg-cream);
    text-align: center;
}

.hook-text {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.5;
}

.problem-section {
    padding: 100px 24px;
}

.problem-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.problem-content {
    flex: 1;
}

.problem-image {
    flex: 1;
    background: var(--bg-slate);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.problem-list {
    list-style: none;
    margin-top: 32px;
}

.problem-list li {
    padding: 16px 0;
    padding-left: 36px;
    position: relative;
    border-bottom: 1px solid var(--bg-slate);
}

.problem-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.insight-section {
    padding: 100px 24px;
    background: var(--primary);
    color: var(--white);
}

.insight-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.insight-main {
    flex: 2;
}

.insight-side {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 12px;
}

.insight-side h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

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

.insight-side li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 15px;
}

.story-section {
    padding: 100px 24px;
    background: var(--white);
}

.story-container {
    max-width: 750px;
    margin: 0 auto;
}

.story-section p {
    font-size: 19px;
    margin-bottom: 28px;
    line-height: 1.9;
}

.story-highlight {
    background: var(--bg-cream);
    padding: 32px;
    border-left: 4px solid var(--accent);
    margin: 40px 0;
    font-style: italic;
}

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

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.benefit-card {
    flex: 1 1 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 15px;
}

.testimonial-section {
    padding: 100px 24px;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: var(--bg-slate);
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    padding-top: 32px;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-slate);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-light);
}

.services-section {
    padding: 100px 24px;
    background: var(--bg-cream);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

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

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

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

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
}

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

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.cta-inline {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--secondary) 0%, #9b2c2c 100%);
    text-align: center;
}

.cta-inline h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-inline p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-size: 18px;
}

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

.cta-inline .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

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

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

.form-content {
    flex: 1;
}

.form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--bg-slate);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 24px 40px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
}

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

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

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

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

.disclaimer {
    background: var(--bg-slate);
    padding: 24px;
    margin-top: 40px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 9999;
    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: 32px;
}

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

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

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

.cookie-accept {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.cookie-reject {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--bg-slate);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.page-header {
    background: var(--primary);
    padding: 160px 24px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
}

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

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

.page-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

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

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

.page-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 48px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--bg-slate);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-details p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 100px 24px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    background: var(--bg-slate);
    border-radius: 16px;
    overflow: hidden;
    min-height: 450px;
}

.about-image img {
    width: 100%;
    height: 100%;
}

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

.team-grid {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.team-card {
    flex: 1;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-photo {
    height: 280px;
    background: var(--bg-slate);
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
}

.team-info {
    padding: 28px;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-info p {
    color: var(--text-light);
    font-size: 14px;
}

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

.references-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.references-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 14px;
}

.references-list a {
    color: var(--primary);
    text-decoration: underline;
}

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

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
    color: var(--white);
}

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

.thanks-card p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-selected {
    background: var(--bg-cream);
    padding: 20px 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow);
    }

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

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .problem-grid,
    .insight-content,
    .form-container,
    .about-intro,
    .contact-grid {
        flex-direction: column;
    }

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

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

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

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 28px;
    }

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

    .hook-text {
        font-size: 22px;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

    .thanks-card {
        padding: 48px 24px;
    }
}
