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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    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.1rem;
    color: #1a1a1a;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

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

.sticky-btn {
    background: #e74c3c;
    color: white;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-content-narrow {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 20px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

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

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

.section-story {
    background: #f9f9f9;
}

.section-story .opener {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #555;
}

.section-story p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-problem {
    background: white;
    padding: 100px 20px;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.problem-list {
    margin: 30px 0;
    padding-left: 20px;
}

.problem-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.split-image {
    flex: 0 0 400px;
}

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

.section-insight {
    background: #2c3e50;
    color: white;
}

.section-insight h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.section-insight > .content-narrow > p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    text-align: center;
}

.insight-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.insight-box h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.pillar {
    margin-bottom: 40px;
}

.pillar h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

.pillar p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.section-transformation {
    background: #ecf0f1;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
}

.section-method {
    background: white;
}

.section-method h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.section-method > .content-narrow > p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    text-align: center;
}

.method-steps {
    margin-top: 60px;
}

.step {
    margin-bottom: 50px;
    padding-left: 80px;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    background: #3498db;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.cta-inline {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 40px;
    transition: transform 0.3s;
}

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

.section-why-now {
    background: #fff3cd;
    padding: 80px 20px;
}

.urgency-box {
    background: white;
    padding: 60px 50px;
    border-radius: 12px;
    border-left: 6px solid #f39c12;
}

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

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

.urgency-box ul {
    margin: 30px 0;
    padding-left: 25px;
}

.urgency-box li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.urgency-text {
    font-weight: 600;
    font-size: 1.25rem !important;
    color: #d35400;
    margin-top: 30px !important;
}

.section-credibility {
    background: #34495e;
    color: white;
}

.section-credibility h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.section-credibility p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.credentials {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.credential {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
}

.section-services {
    background: white;
    padding: 100px 20px;
}

.section-services h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #555;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.service-card.featured {
    border-color: #3498db;
    background: #eef6fc;
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #3498db;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.service-description {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

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

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
}

.service-features li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: 700;
    margin-right: 8px;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    background: #2c3e50;
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1a252f;
}

.service-card.featured .btn-select-service {
    background: #3498db;
}

.service-card.featured .btn-select-service:hover {
    background: #2980b9;
}

.section-form {
    background: #ecf0f1;
    padding: 80px 20px;
}

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

.section-form > .content-narrow > p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.application-form {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px 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 textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.selected-service-display {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

.btn-submit:hover {
    background: #c0392b;
}

.section-guarantee {
    background: #d5f4e6;
    text-align: center;
}

.section-guarantee h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.section-guarantee p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.section-final-cta {
    background: #1a1a1a;
    color: white;
    padding: 100px 20px;
}

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

.final-cta-box h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.final-cta-box p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-final {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 22px 60px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 30px;
    transition: transform 0.3s;
}

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

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 30px;
}

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

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 30px;
}

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

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

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

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-reject {
    background: #95a5a6;
    color: white;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.9;
}

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

    .split-image {
        flex: 1;
        width: 100%;
    }

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

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

    .nav-links {
        gap: 15px;
    }

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

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

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

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

    .service-card.featured {
        transform: none;
    }

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

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

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

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

    .content-narrow,
    .container-wide {
        padding: 50px 15px;
    }

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