* {
    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.7;
    color: #2c2c2c;
    background: #ffffff;
}

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

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.hero-visual-dominant {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 8%;
}

.hero-title-large {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    max-width: 800px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    color: #f0f0f0;
    max-width: 600px;
}

.intro-narrative {
    padding: 120px 20px;
    background: #fafafa;
}

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

.opening-hook {
    font-size: 22px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 500;
}

.intro-narrative p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.problem-amplification {
    padding: 100px 20px;
    background: #ffffff;
}

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

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.visual-block {
    flex: 1;
}

.visual-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.story-section {
    padding: 120px 20px;
    background: #f8f8f8;
}

.section-title-editorial {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 600;
}

.story-section p {
    font-size: 19px;
    line-height: 1.9;
    color: #3a3a3a;
    margin-bottom: 25px;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 50px 0;
    border-radius: 4px;
}

.insight-reveal {
    padding: 80px 20px;
    background: #1a1a1a;
}

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

.insight-box {
    text-align: center;
    padding: 60px 40px;
}

.insight-box h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
}

.insight-text {
    font-size: 24px;
    line-height: 1.7;
    color: #e0e0e0;
    font-style: italic;
}

.approach-section {
    padding: 100px 20px;
    background: #ffffff;
}

.center-heading {
    text-align: center;
    font-size: 44px;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.approach-card {
    background: #f9f9f9;
    padding: 50px 40px;
    border-radius: 6px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.offset-card {
    margin-top: 60px;
}

.approach-card h4 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.approach-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.social-proof {
    padding: 120px 20px;
    background: #fafafa;
}

.testimonial-heading {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-inline {
    margin-bottom: 50px;
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #1a1a1a;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #6a6a6a;
}

.benefit-layers {
    padding: 100px 20px;
    background: #ffffff;
}

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

.benefit-side {
    flex: 1;
}

.benefit-side img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.benefit-content {
    flex: 1;
}

.benefit-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.benefit-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-inline:hover {
    background: #333333;
}

.detail-focus {
    padding: 120px 20px;
    background: #f5f5f5;
}

.detail-focus h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.detail-focus p {
    font-size: 19px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 30px;
}

.detail-list {
    list-style: none;
    margin-top: 40px;
}

.detail-list li {
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #2a2a2a;
}

.detail-list li:before {
    content: "✓ ";
    color: #1a1a1a;
    font-weight: bold;
    margin-right: 10px;
}

.transformation-story {
    padding: 100px 20px;
    background: #ffffff;
}

.transform-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.transform-text {
    flex: 1.5;
}

.transform-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.transform-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.transform-visual {
    flex: 1;
}

.transform-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.urgency-subtle {
    padding: 80px 20px;
    background: #2a2a2a;
}

.urgency-content {
    text-align: center;
}

.urgency-text {
    font-size: 22px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 15px;
}

.urgency-subtext {
    font-size: 18px;
    color: #cccccc;
}

.services-reveal {
    padding: 120px 20px;
    background: #fafafa;
}

.services-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-card.featured {
    border: 2px solid #1a1a1a;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 25px 0;
}

.service-select {
    width: 100%;
    padding: 14px 20px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select:hover {
    background: #333333;
}

.cta-primary {
    padding: 80px 20px 40px;
    background: #ffffff;
}

.cta-heading {
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-description {
    font-size: 19px;
    text-align: center;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    padding: 60px 20px 120px;
    background: #ffffff;
}

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

.main-form {
    background: #f9f9f9;
    padding: 50px 40px;
    border-radius: 8px;
}

.selected-service-display {
    margin-bottom: 30px;
    padding: 20px;
    background: #e8f4e8;
    border-radius: 4px;
}

.selected-service-display p {
    font-size: 16px;
    color: #2a2a2a;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #2a2a2a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-submit {
    width: 100%;
    padding: 16px 20px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
}

.form-submit:hover {
    background: #333333;
}

.guarantee-section {
    padding: 100px 20px;
    background: #f8f8f8;
}

.guarantee-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.guarantee-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.final-cta {
    padding: 120px 20px;
    background: #1a1a1a;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 20px;
    color: #d0d0d0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button-large:hover {
    background: #f0f0f0;
}

.site-footer {
    padding: 60px 20px 30px;
    background: #0f0f0f;
    color: #d0d0d0;
}

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

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    display: block;
    font-size: 15px;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom p {
    font-size: 14px;
    color: #808080;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    padding: 25px 20px;
    z-index: 2000;
    backdrop-filter: blur(10px);
    display: none;
}

.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 {
    color: #ffffff;
    font-size: 15px;
    flex: 1;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #ffffff;
    color: #1a1a1a;
}

.cookie-accept:hover {
    background: #f0f0f0;
}

.cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

.sticky-cta-button {
    display: block;
    padding: 16px 32px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

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

    .nav-links {
        gap: 15px;
    }

    .hero-title-large {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .split-content,
    .container-split,
    .transform-split {
        flex-direction: column;
        gap: 40px;
    }

    .offset-card {
        margin-top: 0;
    }

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

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

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

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

    .service-card {
        max-width: 100%;
    }
}