* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.container-fluid {
    width: 100%;
    padding: 0 24px;
}

.header-minimal {
    padding: 32px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-main {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-main a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
}

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

.ad-label {
    font-size: 13px;
    color: #999;
    padding: 4px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.hero-visual {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    background-color: #2a3f5f;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 48px;
}

.hero-text-block {
    max-width: 640px;
    color: #ffffff;
}

.hero-text-block h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-intro {
    font-size: 22px;
    line-height: 1.6;
    opacity: 0.95;
}

.story-section {
    padding: 120px 0 80px;
    background: #f9f9f9;
}

.story-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    font-weight: 600;
}

.story-section p {
    font-size: 19px;
    margin-bottom: 24px;
    color: #333;
}

.insight-block {
    padding: 100px 0;
    background: #ffffff;
}

.insight-layout {
    display: flex;
    gap: 64px;
    align-items: center;
}

.insight-visual {
    flex: 1;
    background-color: #e8f0f5;
}

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

.insight-content {
    flex: 1;
}

.insight-content h3 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.insight-content a {
    color: #2563eb;
    text-decoration: none;
}

.insight-content a:hover {
    text-decoration: underline;
}

.solution-reveal {
    padding: 100px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.solution-reveal h2 {
    font-size: 44px;
    margin-bottom: 32px;
    font-weight: 600;
}

.solution-reveal p {
    font-size: 19px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.benefits-visual {
    padding: 100px 0;
    background: #f5f5f5;
}

.benefits-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    background-color: #ffffff;
}

.benefit-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.benefit-card h4 {
    font-size: 24px;
    margin: 24px 24px 12px;
    font-weight: 600;
}

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

.trust-section {
    padding: 120px 0;
    background: #ffffff;
}

.trust-section h3 {
    font-size: 38px;
    margin-bottom: 32px;
    font-weight: 600;
}

.trust-section > p {
    font-size: 19px;
    margin-bottom: 48px;
    color: #333;
}

.process-steps {
    margin: 64px 0;
}

.step-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e5e5e5;
    line-height: 1;
}

.step-text h5 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.reference-note {
    font-size: 16px;
    color: #666;
    margin-top: 48px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 3px solid #2563eb;
}

.reference-note a {
    color: #2563eb;
    text-decoration: none;
}

.reference-note a:hover {
    text-decoration: underline;
}

.testimonial-inline {
    padding: 100px 0;
    background: #f0f4f8;
}

.testimonial-layout {
    display: flex;
    gap: 64px;
    align-items: center;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    color: #1a1a1a;
    margin: 0;
}

.testimonial-content cite {
    display: block;
    margin-top: 24px;
    font-size: 17px;
    font-style: normal;
    color: #666;
}

.testimonial-visual {
    flex: 1;
    background-color: #d5e3ed;
}

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

.offering-section {
    padding: 100px 0;
    background: #ffffff;
}

.offering-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 600;
}

.offering-section > .container-narrow p {
    font-size: 19px;
    margin-bottom: 64px;
    color: #444;
}

.services-display {
    display: flex;
    gap: 40px;
    margin-top: 64px;
    flex-wrap: wrap;
}

.service-option {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border: 2px solid #e5e5e5;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.2s;
}

.service-option:hover {
    border-color: #2563eb;
    background: #ffffff;
    transform: translateY(-4px);
}

.service-option h4 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
}

.btn-select {
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-select:hover {
    background: #1d4ed8;
}

.form-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.form-section h3 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-section > .container-narrow > p {
    font-size: 18px;
    margin-bottom: 48px;
    color: #555;
}

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

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

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

.disclaimer-section {
    padding: 60px 0;
    background: #f0f0f0;
}

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

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

.footer-layout {
    display: flex;
    gap: 64px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
}

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

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

.references-list li {
    margin-bottom: 16px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.references-list a {
    color: #60a5fa;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    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;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

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

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

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 42px;
    }

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

    .insight-layout,
    .testimonial-layout {
        flex-direction: column;
    }

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

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

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

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

    .cookie-buttons {
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}