/* ── SEO Hero ── */
.seo-hero {
    min-height: 100vh;
    justify-content: center;
}

/* 
.seo-hero h1 {
  font-size: clamp(42px, 6.5vw, 92px);
  margin-bottom: 28px;
} */

.seo-hero-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.seo-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seo-right .tc {
    border: 1px solid var(--border);
    border-left: 2px solid var(--red);
    border-radius: 4px;
    padding: 24px 32px;
}

.seo-right .stat-number {
    font-size: 48px;
    margin-bottom: 6px;
}

@media (max-width: 1200px) {

    .seo-hero {
        min-height: auto;
    }

    .seo-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .seo-right {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .seo-right .tc {
        padding: 24px;
    }

    .seo-right .stat-number {
        font-size: 38px;
    }
}

/* Only mobile */
@media (max-width: 640px) {

    .seo-right {
        grid-template-columns: 1fr;
    }

    .seo-right .stat-number {
        font-size: 34px;
    }
}

.trust-section {
    background: var(--d1);
}

.trust-top {
    margin-bottom: 48px;
}

.pi {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pi-ico {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--red-h);
}

.pi-ico svg {
    width: 100%;
    height: 100%;
}

.pi-t {
    margin: 0;
    line-height: 1.5;
}

/* ── Horizontal Process ── */
.proc-h-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
}

.proc-h-step {
    padding: 32px 28px 32px 0;
    border-right: 1px solid var(--border);
}

.proc-h-step:last-child {
    border-right: none;
    padding-right: 0;
}

.proc-h-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.proc-h-num {
    font-family: var(--fh);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--red);
    flex-shrink: 0;
}

.proc-h-line {
    flex: 1;
    height: 1px;
    background: var(--border2);
}

.proc-h-line--last {
    background: transparent;
}

.proc-h-title {
    font-family: var(--fh);
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.proc-h-step:hover .proc-h-title {
    color: var(--red);
}

.proc-h-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.proc-h-del {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-left: 2px solid var(--red);
    background: rgba(255, 255, 255, 0.02);
}

.proc-h-del-label {
    font-family: var(--fu);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
}

.proc-h-del-text {
    font-size: 12px;
    font-weight: 300;
    color: rgba(250, 250, 247, 0.45);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .proc-h-track {
        grid-template-columns: repeat(3, 1fr);
    }

    .proc-h-step:nth-child(3) {
        border-right: none;
    }
}

@media (max-width: 640px) {
    .proc-h-track {
        grid-template-columns: 1fr 1fr;
    }

    .proc-h-step:nth-child(3) {
        border-right: 1px solid var(--border);
    }

    .proc-h-step:nth-child(2n) {
        border-right: none;
    }
}

.ab-data-item:hover {
    border-left: 2px solid var(--red);
}

/* ── Why Loudbol (Updated Premium UI) ── */

.why-row {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.01);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

/* remove last border logic (no longer needed) */
.why-row--last {
    margin-bottom: 0;
}

/* hover upgrade */
.why-row:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12);
}

/* LEFT */
.why-left {
    padding-right: 32px;
    padding-bottom: 16px;
}

/* MID (Others) */
.why-mid {
    padding-right: 24px;
    opacity: 0.7;
    position: relative;
}

/* remove harsh divider */
.why-mid {
    border-right: none;
}

/* RIGHT (Loudbol highlight) */
.why-right {
    padding-left: 24px;
    position: relative;
}

/* vertical highlight line for Loudbol */
.why-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background: var(--red);
    opacity: 0.6;
    border-radius: 2px;
}

/* label improvement */
.tc-n {
    color: var(--white);
    font-weight: 600;
}

/* ── Case Studies Section ── */

.cs-result {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.cs-metric {
    font-size: 34px;
    font-weight: 600;
    color: var(--white);
}

.cs-metric-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}