* {
    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: #333;
    background: #fff;
}

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-immersive {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background: #000;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.story-intro {
    padding: 100px 20px;
    background: #fafafa;
}

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

.story-intro h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.problem-visual {
    padding: 80px 40px;
    background: #fff;
}

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

.visual-text {
    flex: 1;
}

.visual-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.visual-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.visual-image {
    flex: 1;
    background: #f0f0f0;
}

.visual-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.insight-block {
    padding: 100px 20px;
    background: #ecf0f1;
}

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

.insight-block h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.insight-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.trust-build {
    padding: 100px 40px;
    background: #fff;
}

.three-pillars {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar {
    flex: 1;
    background: #fafafa;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.pillar img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.pillar h4 {
    font-size: 22px;
    margin: 24px 20px 16px;
    color: #2c3e50;
}

.pillar p {
    font-size: 15px;
    color: #666;
    padding: 0 20px 24px;
}

.testimonials-flow {
    padding: 80px 40px;
    background: #2c3e50;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto 40px;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
}

.testimonial-card blockquote {
    font-size: 19px;
    font-style: italic;
    color: #ecf0f1;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-card cite {
    font-size: 15px;
    color: #bdc3c7;
    font-style: normal;
}

.service-reveal {
    padding: 100px 40px;
    background: #fff;
}

.service-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.service-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-intro p {
    font-size: 18px;
    color: #666;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: #f8f9fa;
    padding: 40px 32px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.service-card.selected {
    border-color: #3498db;
    background: #e8f4f8;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.cta-select {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.cta-select:hover {
    background: #2980b9;
}

.form-section {
    padding: 100px 40px;
    background: #ecf0f1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-container > p {
    margin-bottom: 32px;
    color: #666;
    font-size: 16px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

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

.btn-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.final-trust {
    padding: 60px 20px;
    background: #f8f9fa;
}

.disclaimer-text {
    font-size: 13px;
    color: #777;
    text-align: center;
    line-height: 1.6;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

.cookie-content a {
    color: #3498db;
}

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

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

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

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

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

.thanks-container {
    text-align: center;
    max-width: 600px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

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

    .three-pillars {
        flex-direction: column;
    }

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

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

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

    .main-nav {
        flex-direction: column;
        gap: 16px;
    }
}