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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    background: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.hero-visual {
    margin-top: 80px;
    height: 90vh;
    position: relative;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #2a2a2a;
}

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

.hero-overlay {
    position: absolute;
    bottom: 8%;
    left: 8%;
    color: #ffffff;
    max-width: 600px;
}

.hero-overlay h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.story-intro h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.image-statement {
    position: relative;
    width: 100%;
    height: 70vh;
    margin: 4rem 0;
    background-color: #e5e5e5;
}

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

.image-caption {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 2.5rem;
    max-width: 450px;
}

.image-caption p {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 600;
    font-style: italic;
    color: #1a1a1a;
}

.problem-section {
    background: #f9f9f9;
}

.problem-section h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
}

.problem-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.split-insight {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.insight-text {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #1a1a1a;
    color: #ffffff;
}

.insight-text h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.insight-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.insight-image {
    flex: 1;
    background-color: #d5d5d5;
}

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

.trust-proof {
    background: #ffffff;
}

.trust-proof h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.trust-proof p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #333;
}

.testimonial-inline {
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 4px solid #1a1a1a;
}

.testimonial-inline blockquote {
    font-style: normal;
}

.testimonial-inline p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.visual-break {
    width: 100%;
    height: 65vh;
    margin: 5rem 0;
    background-color: #c5c5c5;
}

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

.benefits-reveal {
    background: #f5f5f5;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefit-block {
    margin-bottom: 3rem;
}

.benefit-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.services-preview {
    padding: 5rem 2rem;
    background: #ffffff;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    flex-basis: calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    font-weight: 700;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.cta-select {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.cta-select:hover {
    background: #333;
}

.cta-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.cta-primary h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-primary p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.form-section {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

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

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border: 1px solid #e5e5e5;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

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

.disclaimer-section {
    background: #f5f5f5;
    padding: 3rem 2rem;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: #ffffff;
}

.about-hero {
    padding: 8rem 2rem 5rem 2rem;
    background: #f9f9f9;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-hero p {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.services-hero {
    padding: 8rem 2rem 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.services-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    padding: 5rem 2rem;
}

.contact-hero {
    padding: 8rem 2rem 3rem 2rem;
    background: #f5f5f5;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.legal-page {
    padding: 8rem 2rem 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    background: #f9f9f9;
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
}

.thanks-content .btn-home {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-content .btn-home:hover {
    background: #333;
}

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}