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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-minimal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
}

.header-overlay {
    padding: 0 40px;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.ad-label {
    font-size: 12px;
    color: #888;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 12px;
    margin-left: 10px;
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -2px;
    margin-bottom: 20px;
    max-width: 900px;
}

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

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

.narrative-block {
    max-width: 700px;
    margin: 0 auto;
}

.lead-text {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

.split-image {
    flex: 1;
    background: #e8e8e8;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.insight-block {
    padding: 120px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

.insight-block h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -1px;
    text-align: center;
}

.insight-block p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

.insight-visual {
    margin-top: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #2a2a2a;
}

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

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 320px;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #e8e8e8;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.select-service {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}

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

.trust-layer {
    padding: 100px 20px;
    background: #f5f5f5;
}

.trust-layer h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #1a1a1a;
    border-radius: 8px;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.composition-info {
    padding: 100px 20px;
    background: #ffffff;
}

.composition-info h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.composition-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.process-visual {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.reference-note {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.reference-note a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #1a1a1a;
}

.form-section {
    padding: 100px 20px;
    background: #1a1a1a;
}

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

.form-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    color: #ccc;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #1a1a1a;
    color: #ffffff;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #333;
    cursor: not-allowed;
}

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

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

.disclaimer-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

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

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 20px;
}

.footer-section h4 {
    font-size: 16px;
}

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

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-references {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-references ol {
    font-size: 13px;
    color: #aaa;
    line-height: 1.8;
    padding-left: 20px;
}

.footer-references a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    padding: 25px 20px;
    z-index: 1000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    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;
    line-height: 1.5;
    flex: 1;
}

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

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

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

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

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

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

.page-hero {
    padding: 180px 20px 80px;
    background: #1a1a1a;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    color: #ccc;
}

.about-content {
    padding: 80px 20px;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-visual-block {
    margin: 80px 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.about-text-section {
    max-width: 800px;
    margin: 60px auto;
}

.about-text-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-text-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.values-section {
    max-width: 1200px;
    margin: 80px auto;
}

.values-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 30px;
    background: #fafafa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.team-philosophy {
    max-width: 800px;
    margin: 60px auto;
}

.team-philosophy h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
}

.team-philosophy p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

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

.service-features li {
    font-size: 16px;
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

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

.btn-service {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 6px;
    transition: background 0.3s;
    font-weight: 600;
}

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

.services-cta {
    padding: 80px 20px;
    background: #fafafa;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.btn-large {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 8px;
    transition: background 0.3s;
    font-weight: 600;
}

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

.contact-section {
    padding: 80px 20px;
}

.contact-info-block {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.email-display {
    color: #1a1a1a;
    font-weight: 500;
}

.contact-item .note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-approach {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #fafafa;
    border-radius: 12px;
}

.contact-approach h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-approach p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: #fafafa;
}

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

.thanks-container h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.service-confirmation {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #1a1a1a;
    min-height: 20px;
}

.thanks-note {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

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

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

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

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

.legal-page {
    padding: 100px 20px 80px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.update-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
}

.cookies-table th {
    background: #f5f5f5;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

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

    .nav-floating {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

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

    .split-content {
        padding: 40px 30px;
    }

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

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

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .contact-info-block {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

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