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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97BC62;
    --accent-color: #E07A5F;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f9f9;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

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

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: color 0.3s;
}

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

.hero-overlay {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c5f2d 0%, #97BC62 100%);
    z-index: 1;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

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

.hero-overlay-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 122, 95, 0.4);
}

section {
    padding: 80px 0;
}

.story-hook {
    background: var(--white);
}

.story-hook h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--primary-color);
}

.story-hook p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.inline-image {
    margin: 50px 0;
}

.placeholder-img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.market-scene {
    background: linear-gradient(45deg, #4a7c59 0%, #7fb069 100%);
}

.price-comparison {
    background: linear-gradient(135deg, #E07A5F 0%, #f4a261 100%);
}

.benefit-visual {
    background: linear-gradient(90deg, #2c5f2d 0%, #5a9e5f 100%);
}

.founder-story {
    background: linear-gradient(120deg, #6a8eae 0%, #97BC62 100%);
}

.mission-visual {
    background: linear-gradient(180deg, #f4a261 0%, #E07A5F 100%);
}

.img-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.problem-amplification {
    background: var(--light-bg);
}

.split-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.split-visual {
    flex: 1;
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
    transition: color 0.3s;
}

.cta-inline:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.revelation {
    background: var(--white);
}

.revelation h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.revelation p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.highlight-box {
    background: var(--light-bg);
    padding: 40px;
    border-left: 5px solid var(--accent-color);
    margin: 40px 0;
}

.quote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.trust-builder {
    background: var(--dark-bg);
    color: var(--white);
}

.trust-builder h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 280px;
    text-align: center;
    transition: transform 0.3s;
}

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

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.social-proof {
    background: var(--white);
}

.social-proof h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.testimonial-block {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.benefits-reveal {
    background: var(--light-bg);
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-large {
    flex: 2;
    min-width: 300px;
}

.benefit-small {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
}

.benefit-large h3,
.benefit-small h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-large p,
.benefit-small p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-reveal {
    background: var(--white);
}

.pricing-reveal h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.pricing-reveal > .narrow-content > p {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 50px;
    color: var(--text-light);
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.price-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 350px;
    flex: 1;
    min-width: 280px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
    background: var(--primary-color);
    color: var(--white);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured .service-desc {
    color: var(--white);
}

.price-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

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

.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

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

.cta-price {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-price:hover {
    background: #d16b52;
}

.price-card.featured .cta-price {
    background: var(--white);
    color: var(--primary-color);
}

.price-card.featured .cta-price:hover {
    background: var(--light-bg);
}

.urgency-section {
    background: var(--accent-color);
    color: var(--white);
}

.urgency-box h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
}

.urgency-box p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.urgency-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 30px;
}

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

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.form-section > .narrow-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.main-form {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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 {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 18px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #234d24;
}

.final-cta {
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta-final {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s;
}

.cta-final:hover {
    transform: translateY(-2px);
}

.site-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(224, 122, 95, 0.4);
    transition: transform 0.3s;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-accept:hover {
    background: #88ad53;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

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

.hero-intro {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.about-story,
.mission-section,
.values-section,
.team-section,
.impact-section {
    padding: 80px 0;
}

.about-story {
    background: var(--white);
}

.about-story h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-story p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.values-section {
    background: var(--white);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

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

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

.value-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.team-section h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.team-section p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

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

.impact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.stat-box {
    text-align: center;
    min-width: 200px;
}

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

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-section {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.services-intro {
    background: var(--white);
}

.services-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.services-detailed {
    background: var(--light-bg);
}

.service-detail {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
    position: relative;
}

.service-detail.featured-service {
    border: 3px solid var(--accent-color);
}

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

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

.service-desc-full {
    margin-bottom: 30px;
}

.service-desc-full p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-features-full {
    margin-bottom: 30px;
}

.service-features-full h3,
.service-ideal h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-features-full ul {
    list-style: none;
}

.service-features-full ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-features-full ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-ideal {
    margin-bottom: 30px;
}

.service-ideal p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-service {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-service:hover {
    background: #234d24;
}

.comparison-section {
    background: var(--white);
}

.comparison-section h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.comparison-guide {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.comparison-item {
    flex: 1;
    min-width: 250px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
}

.comparison-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.comparison-item p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.contact-info {
    background: var(--white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

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

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-card a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-explanation {
    background: var(--light-bg);
}

.contact-explanation h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-explanation p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.faq-section {
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1;
    min-width: 300px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 30px;
    color: var(--white);
}

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

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.service-confirm {
    margin-top: 30px;
}

.service-selected {
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
}

.next-steps {
    background: var(--white);
}

.next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

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

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-info {
    background: var(--light-bg);
}

.info-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-box {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
}

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

.info-box p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.info-box a {
    color: var(--accent-color);
    font-weight: 600;
}

.social-proof-thanks {
    background: var(--white);
}

.social-proof-thanks h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.social-proof-thanks > .narrow-content > p {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.testimonial-compact {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-compact p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-compact .author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.explore-more {
    background: var(--light-bg);
}

.explore-more h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.explore-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.explore-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    transition: transform 0.3s;
}

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

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

.explore-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-page {
    background: var(--white);
    padding: 100px 0;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page .updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-page ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        top: 10px;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

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

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

    section {
        padding: 50px 0;
    }

    .story-hook h2,
    .revelation h2,
    .pricing-reveal h2 {
        font-size: 1.8rem;
    }

    .split-content {
        flex-direction: column;
        gap: 30px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .benefits-asymmetric {
        flex-direction: column;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .main-form {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

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

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

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

    .values-grid,
    .stats-grid,
    .contact-grid,
    .faq-grid,
    .info-boxes,
    .explore-links {
        flex-direction: column;
    }

    .service-detail {
        padding: 30px 20px;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-step {
        gap: 20px;
    }

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

    .legal-page h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-overlay-content h1 {
        font-size: 1.8rem;
    }

    .cta-hero,
    .cta-final,
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

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

    .thanks-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}