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

.ad-notice {
    background: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    opacity: 0.6;
}

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #d4c5b9;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 80px;
    right: 80px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 24px;
    font-weight: 300;
    max-width: 600px;
    opacity: 0.95;
}

.story-intro {
    padding: 120px 40px;
    background: #fafafa;
}

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

.narrow-content p {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #3a3a3a;
}

.visual-break {
    padding: 0;
}

.split-visual {
    display: flex;
    min-height: 600px;
}

.split-visual img {
    width: 55%;
    object-fit: cover;
    background-color: #c9b8a8;
}

.split-text {
    width: 45%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.split-text h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.split-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
}

.problem-amplification {
    padding: 140px 40px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
}

.centered-block {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.centered-block h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 36px;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.centered-block p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.92;
}

.insight-reveal {
    padding: 100px 40px;
    background: #f8f8f8;
}

.asymmetric-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.insight-text {
    flex: 1;
    padding-left: 40px;
}

.insight-text h3 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: -0.8px;
}

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

.asymmetric-layout img {
    width: 480px;
    height: 580px;
    object-fit: cover;
    background-color: #b8a89a;
    border-radius: 8px;
}

.trust-builder {
    padding: 100px 40px;
    background: #ffffff;
}

.testimonial-inline {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-inline blockquote {
    border-left: 4px solid #2c2c2c;
    padding-left: 40px;
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: #3a3a3a;
}

.testimonial-inline cite {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    font-style: normal;
    color: #888;
}

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

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.services-header h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.services-header p {
    font-size: 20px;
    color: #5a5a5a;
}

.service-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.card-visual {
    width: calc(50% - 20px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.card-visual:hover {
    transform: translateY(-8px);
}

.card-visual img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background-color: #c5b5a5;
}

.card-content {
    padding: 36px;
}

.card-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 12px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 24px 0;
}

.select-service {
    width: 100%;
    padding: 16px 28px;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

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

.select-service.selected {
    background: #4a90e2;
}

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

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

.form-container h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -1px;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 48px;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #2c2c2c;
}

.form-notice {
    padding: 16px;
    background: #fff4e6;
    border-left: 4px solid #ff9800;
    margin-bottom: 24px;
    font-size: 15px;
    color: #e65100;
    display: none;
}

.form-notice.show {
    display: block;
}

#submitBtn {
    width: 100%;
    padding: 18px 32px;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

#submitBtn:hover:not(:disabled) {
    background: #1a1a1a;
}

#submitBtn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.final-trust {
    padding: 100px 40px;
    background: #f8f8f8;
}

.final-trust h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.8px;
}

.final-trust p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

footer {
    padding: 60px 40px;
    background: #1a1a1a;
    color: #ffffff;
}

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

.footer-links {
    display: flex;
    gap: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-info p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    max-width: 800px;
    opacity: 0.6;
    margin-top: 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 28px 40px;
    z-index: 2000;
    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: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

#acceptCookies {
    background: #4a90e2;
    color: #ffffff;
}

#rejectCookies {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.thanks-highlight {
    background: #f4f4f4;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    font-size: 18px;
}

.back-home {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 36px;
    background: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s;
}

.back-home:hover {
    background: #1a1a1a;
}

@media (max-width: 768px) {
    .floating-nav {
        top: 20px;
        right: 20px;
        left: 20px;
        padding: 16px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 42px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .split-visual {
        flex-direction: column;
    }

    .split-visual img,
    .split-text {
        width: 100%;
    }

    .asymmetric-layout {
        flex-direction: column;
        gap: 40px;
    }

    .asymmetric-layout img {
        width: 100%;
        height: 400px;
    }

    .card-visual {
        width: 100%;
    }

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