/* ── SEO Landing Pages ── */

.seo-landing {
    color: #1a2b3c;
}

/* ── Hero ── */
.seo-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0c3a50 0%, #0f4a32 100%);
    color: #fff;
}
.seo-hero__title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}
.seo-hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 640px;
    margin-bottom: 36px;
}
.seo-hero__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.seo-hero__stat-num {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}
.seo-hero__stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
}
.seo-hero__cta {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.seo-hero__cta:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* ── Section titles ── */
.seo-section__title {
    margin-bottom: 40px;
}

/* ── Industries ── */
.seo-industries {
    padding: 80px 0;
    background: #fff;
}
.seo-industries__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.seo-industry img {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
}
.seo-industry h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}
.seo-industry p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6b7c;
}

/* ── Results ── */
.seo-results {
    padding: 80px 0;
    background: #f5f7fa;
}
.seo-results__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.seo-result {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    position: relative;
}
.seo-result__num {
    font-size: 48px;
    font-weight: 800;
    color: #e8ecf0;
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}
.seo-result h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}
.seo-result p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6b7c;
}

/* ── Process ── */
.seo-process {
    padding: 80px 0;
    background: #fff;
}
.seo-process__timeline {
    max-width: 720px;
}
.seo-process__step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}
.seo-process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 48px;
    bottom: -16px;
    width: 2px;
    background: #e0e5ea;
}
.seo-process__marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0c3a50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.seo-process__content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}
.seo-process__content p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6b7c;
}

/* ── Models (autsorsing) ── */
.seo-models {
    padding: 80px 0;
    background: #f5f7fa;
}
.seo-models__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.seo-model {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    position: relative;
}
.seo-model__num {
    font-size: 48px;
    font-weight: 800;
    color: #e8ecf0;
    margin-bottom: 8px;
    line-height: 1;
}
.seo-model h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}
.seo-model p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6b7c;
    margin-bottom: 16px;
}
.seo-model ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.seo-model li {
    font-size: 14px;
    line-height: 1.6;
    color: #3a4b5c;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}
.seo-model li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3ab8a0;
    position: absolute;
    left: 0;
    top: 8px;
}

/* ── Advantages (reuses results grid) ── */
.seo-advantages {
    padding: 80px 0;
    background: #fff;
}

/* ── Logos ── */
.seo-logos {
    padding: 48px 0;
    background: #f5f7fa;
}
.seo-logos__title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a9bac;
    text-align: center;
    margin-bottom: 32px;
}
.seo-logos__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.seo-logos__grid img {
    height: 32px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.2s;
}
.seo-logos__grid img:hover {
    opacity: 0.8;
}

/* ── Tech tags ── */
.seo-tech {
    padding: 60px 0;
    background: #fff;
}
.seo-tech__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.seo-tech__tags span {
    padding: 8px 20px;
    background: #f0f3f6;
    border-radius: 20px;
    font-size: 15px;
    color: #3a4b5c;
}

/* ── FAQ ── */
.seo-faq {
    padding: 80px 0;
    background: #fff;
}
.seo-faq__list {
    max-width: 780px;
}
.seo-faq__item {
    border-bottom: 1px solid #e8ecf0;
    padding: 20px 0;
}
.seo-faq__item summary {
    font-size: 18px;
    font-weight: 600;
    color: #1a2b3c;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.seo-faq__item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #8a9bac;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}
.seo-faq__item[open] summary::after {
    content: '−';
}
.seo-faq__item summary::-webkit-details-marker {
    display: none;
}
.seo-faq__item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6b7c;
    margin-top: 12px;
    padding-right: 40px;
}

/* ── Links (internal) ── */
.seo-links {
    padding: 80px 0;
    background: #f5f7fa;
}
.seo-links__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.seo-link {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
    display: block;
}
.seo-link:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
}
.seo-link h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0c3a50;
}
.seo-link p {
    font-size: 14px;
    line-height: 1.5;
    color: #5a6b7c;
}

/* ── CTA ── */
.seo-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0c3a50 0%, #0f4a32 100%);
    color: #fff;
}
.seo-cta__block {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.seo-cta__block h2 {
    color: #fff;
    margin-bottom: 16px;
}
.seo-cta__block p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}
.seo-cta__btn {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.seo-cta__btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .seo-industries__grid { grid-template-columns: repeat(2, 1fr); }
    .seo-models__grid { grid-template-columns: 1fr; }
    .seo-links__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .seo-hero { padding: 48px 0 40px; }
    .seo-hero__title { font-size: 32px; }
    .seo-hero__subtitle { font-size: 16px; }
    .seo-hero__stats { gap: 24px; }
    .seo-hero__stat-num { font-size: 28px; }
    .seo-industries__grid { grid-template-columns: 1fr; }
    .seo-results__grid { grid-template-columns: 1fr; }
    .seo-links__grid { grid-template-columns: 1fr; }
    .seo-industries, .seo-results, .seo-process, .seo-models, .seo-advantages, .seo-links { padding: 48px 0; }
}
