* {
    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;
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-left .logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

.nav-right a:hover {
    color: #0066cc;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f9fafb;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #0a0a0a;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-visual {
    flex: 1;
    background: #e8e8e8;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s;
}

.cta-primary:hover {
    background: #0052a3;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s;
}

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

.insight-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.insight-visual {
    flex: 0 0 45%;
    background: #e8e8e8;
    overflow: hidden;
    border-radius: 8px;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #0a0a0a;
}

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

.problem-amplification {
    padding: 100px 40px;
    background: #f9fafb;
}

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

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #0a0a0a;
}

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

.problem-list {
    list-style: none;
    margin: 24px 0;
}

.problem-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 24px;
    line-height: 1;
}

.content-visual {
    flex: 0 0 45%;
    background: #e8e8e8;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-preview {
    padding: 100px 40px;
    background: #ffffff;
}

.services-preview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #0a0a0a;
}

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

.service-card {
    flex: 0 0 calc(50% - 15px);
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #0a0a0a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #444;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 24px 20px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

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

.trust-elements {
    padding: 100px 40px;
    background: #f9fafb;
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #0a0a0a;
}

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

.trust-text a {
    color: #0066cc;
    text-decoration: underline;
}

.trust-visual {
    flex: 0 0 45%;
    background: #e8e8e8;
    overflow: hidden;
    border-radius: 8px;
}

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

.testimonial-inline {
    padding: 80px 40px;
    background: #1a1a1a;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 22px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
    font-style: italic;
}

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

.cta-section-inline {
    padding: 100px 40px;
    background: #f9fafb;
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.cta-wrapper p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 32px;
}

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

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
    color: #0a0a0a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

.btn-submit {
    padding: 14px 32px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 12px;
}

.btn-submit:hover {
    background: #0052a3;
}

.service-warning {
    display: none;
    margin-top: 16px;
    padding: 12px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    color: #856404;
    font-size: 14px;
    text-align: center;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #f9fafb;
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
}

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

.business-model {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #333;
    font-size: 13px;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.references {
    list-style: decimal;
    padding-left: 20px;
}

.references li {
    margin-bottom: 8px;
}

.references a {
    color: #aaa;
    text-decoration: underline;
    font-size: 13px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #d0d0d0;
    padding: 20px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    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 {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.cookie-content a {
    color: #0066cc;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

.btn-reject {
    background: #e0e0e0;
    color: #1a1a1a;
}

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

.page-header {
    padding: 80px 40px 60px;
    background: #f9fafb;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.page-header p {
    font-size: 19px;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 100px 40px;
    background: #ffffff;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #0a0a0a;
}

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

.about-visual {
    flex: 0 0 45%;
    background: #e8e8e8;
    overflow: hidden;
    border-radius: 8px;
}

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

.approach-section {
    padding: 100px 40px;
    background: #f9fafb;
}

.values-section {
    padding: 100px 40px;
    background: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #0a0a0a;
}

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

.value-item {
    flex: 0 0 calc(50% - 20px);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0a0a0a;
}

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

.cta-inline {
    padding: 80px 40px;
    background: #1a1a1a;
    text-align: center;
}

.cta-inline h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #ffffff;
}

.services-detailed {
    padding: 60px 40px;
    background: #ffffff;
}

.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid #e8e8e8;
}

.service-detail:last-child {
    border-bottom: none;
}

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

.service-split.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.service-info ul {
    list-style: none;
    margin: 20px 0 32px;
}

.service-info ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-image {
    flex: 0 0 45%;
    background: #e8e8e8;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.services-cta p {
    font-size: 17px;
    color: #444;
    margin-bottom: 32px;
}

.contact-section {
    padding: 80px 40px;
    background: #ffffff;
}

.contact-split {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #0a0a0a;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0a0a0a;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.contact-visual {
    flex: 0 0 45%;
    background: #e8e8e8;
    overflow: hidden;
    border-radius: 8px;
}

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

.contact-note {
    padding: 40px;
    background: #f9fafb;
    text-align: center;
}

.contact-note p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.contact-note a {
    color: #0066cc;
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 40px;
    background: #f9fafb;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #0a0a0a;
}

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

.service-display {
    margin: 24px 0;
}

.selected-service-info {
    font-size: 16px;
    padding: 16px;
    background: #e8f4ff;
    border-radius: 6px;
    color: #0a0a0a;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #0a0a0a;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #0a0a0a;
}

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

.legal-page ul,
.legal-page ol {
    margin: 16px 0 24px 24px;
}

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

.legal-page a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .hero-split,
    .insight-wrapper,
    .split-content,
    .split-trust,
    .split-about,
    .service-split,
    .contact-split,
    .footer-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

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

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

    .value-item {
        flex: 0 0 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-right {
        gap: 16px;
    }
}