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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
}

.nav-floating {
    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;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f4e;
}

.nav-cta {
    background: #2c5f4e;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #234a3d;
}

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

.sticky-cta button {
    background: #d4543e;
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(212, 84, 62, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 84, 62, 0.5);
}

.hero-story {
    margin-top: 100px;
    padding: 80px 50px;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.35rem;
    color: #555;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.problem-intro {
    padding: 100px 50px;
    background: #f8f9fa;
}

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

.problem-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 35px;
    color: #1a1a1a;
}

.problem-intro p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #444;
    line-height: 1.8;
}

.story-visual {
    position: relative;
    height: 600px;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    max-width: 700px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.story-overlay blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.6;
}

.story-overlay cite {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    font-style: normal;
    color: #777;
}

.insight-section {
    padding: 120px 50px;
}

.insight-section h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.insight-section > p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #555;
}

.insight-grid {
    display: flex;
    gap: 30px;
    margin: 60px 0;
}

.insight-card {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-left: 4px solid #2c5f4e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.insight-card p {
    color: #666;
    line-height: 1.7;
}

.insight-reveal {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5f4e;
    margin-top: 50px;
}

.cta-inline {
    padding: 80px 50px;
    background: linear-gradient(135deg, #2c5f4e 0%, #1a3d2f 100%);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 30px;
}

.cta-box button {
    background: white;
    color: #2c5f4e;
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-box button:hover {
    transform: scale(1.05);
}

.approach-deep {
    padding: 120px 50px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.approach-text ul {
    margin: 30px 0;
    padding-left: 20px;
}

.approach-text li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #444;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.testimonials-scroll {
    padding: 100px 50px;
    background: #f8f9fa;
}

.testimonials-scroll h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-flow {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial {
    min-width: 350px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #777;
    font-weight: 600;
}

.service-selection-visual {
    padding: 120px 50px;
}

.service-selection-visual h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 70px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 320px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid #d4543e;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d4543e;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card > p {
    padding: 0 25px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 25px;
    margin-bottom: 25px;
}

.service-features span {
    background: #e8f4f1;
    color: #2c5f4e;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f4e;
    padding: 0 25px;
    margin-bottom: 20px;
}

.service-card button {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    background: #2c5f4e;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-card button:hover {
    background: #234a3d;
}

.urgency-block {
    padding: 60px 50px;
    background: #fff3e0;
    border-top: 4px solid #ff9800;
    border-bottom: 4px solid #ff9800;
}

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

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.urgency-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

.form-section {
    padding: 120px 50px;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.main-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    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: #2c5f4e;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: #2c5f4e;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: #2c5f4e;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.final-trust {
    padding: 100px 50px;
}

.final-trust h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.trust-points {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c5f4e;
}

.trust-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 50px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 40px;
}

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

.footer-col a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-col p {
    color: #bbb;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 25px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.cookie-content a {
    color: #8ed4b8;
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-buttons button:first-child {
    background: #2c5f4e;
    color: white;
}

.cookie-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cookie-buttons button:hover {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .hero-story {
        flex-direction: column;
    }

    .container {
        flex-direction: column;
    }

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

    .trust-points {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }
}

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

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

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

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

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

    .sticky-cta button {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}