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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #059669;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-orange: #f59e0b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 17px;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.btn-sticky {
    background: var(--accent-orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.hero-hook {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-visual {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-visual img {
    width: 100%;
    display: block;
}

.curiosity-intro {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.narrow-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.inline-cta {
    margin-top: 3rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
}

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

.btn-primary.large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

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

.problem-amplification {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.split-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0;
}

.story-scenario {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.story-result {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary-color);
}

.story-result ul {
    list-style: none;
    margin-top: 1rem;
}

.story-result li {
    padding: 0.6rem 0;
    font-size: 1.05rem;
}

.story-result li::before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.insight-reveal {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

.insight-reveal h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

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

.insights-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.insight-card p {
    line-height: 1.7;
    font-size: 1.05rem;
}

.trust-building {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.trust-building h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quote {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    color: var(--text-light);
    font-weight: 600;
}

.benefits-visual {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.benefit-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-weight: 600;
}

.urgency-element {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.centered {
    text-align: center;
}

.urgency-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0;
}

.services-pricing {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.services-pricing h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.service-card.premium {
    border-color: var(--accent-orange);
    border-width: 3px;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-ideal {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

.final-cta {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.guarantee {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.guarantee h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #047857;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.about-story {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.mission {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.mission h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-approach {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.values {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.values h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.values-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.values-list li strong {
    color: var(--primary-color);
}

.results-focus {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.05rem;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.services-overview {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.comparison {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.comparison h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.comparison-note {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.form-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.contact-info {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.contact-details {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.thanks-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-icon {
    margin: 2rem 0;
}

.thanks-icon svg {
    color: var(--secondary-color);
}

.selected-service {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

.selected-text {
    font-size: 1.1rem;
}

.next-steps {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.meanwhile {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.meanwhile h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    .insights-grid {
        gap: 1.5rem;
    }
}
