/* ============================================================
   SKH Home Page – assets/css/home.css
   Scope: .skh-home-wrap
   ============================================================ */

.skh-home-wrap {
    width: min(1440px, calc(100vw - 48px));
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0 80px;
    box-sizing: border-box;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Hero */
.skh-home-hero {
    min-height: 540px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    margin: 0 0 14px;
}
.skh-home-hero-inner {
    max-width: 830px;
    padding: 62px;
}
.skh-home-badge,
.skh-home-kicker {
    display: inline-block;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 999px;
}
.skh-home-badge {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.86);
    padding: 6px 13px;
    margin-bottom: 16px;
}
.skh-home-badge--dark {
    background: #111827;
    color: #fff;
    border-color: #111827;
}
.skh-home-kicker {
    color: #d92d2a;
    margin-bottom: 10px;
}
.skh-home-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -.03em;
    color: #fff;
    font-weight: 400;
    margin: 0 0 16px;
    max-width: 800px;
}
.skh-home-hero p {
    color: rgba(255,255,255,.88);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.7;
    margin: 0 0 26px;
    max-width: 680px;
}
.skh-home-actions,
.skh-home-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.skh-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 950;
    text-decoration: none !important;
    line-height: 1;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.skh-home-btn:hover { transform: translateY(-1px); }
.skh-home-btn--red {
    background: #d92d2a;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(217,45,42,.22);
}
.skh-home-btn--red:hover { background: #c8211f; box-shadow: 0 14px 28px rgba(217,45,42,.3); }
.skh-home-btn--ghost {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.6);
    background: rgba(255,255,255,.05);
}
.skh-home-btn--ghost:hover { background: rgba(255,255,255,.12); }
.skh-home-btn--outline-dark {
    color: #111827 !important;
    border: 1px solid #111827;
    background: transparent;
}
.skh-home-btn--outline-dark:hover { background: #111827; color: #fff !important; }

/* Trust */
.skh-home-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 34px;
}
.skh-home-trust-item {
    padding: 18px 22px;
    border-right: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 10px;
    align-items: center;
}
.skh-home-trust-item:last-child { border-right: 0; }
.skh-home-trust-item span {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf5;
    color: #079669;
    font-weight: 950;
    grid-row: span 2;
}
.skh-home-trust-item strong { color: #111827; font-size: .92rem; font-weight: 950; }
.skh-home-trust-item small { color: #6b7280; font-size: .78rem; margin-top: 2px; }

/* Sections */
.skh-home-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 32px;
    margin-bottom: 18px;
}
.skh-home-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 24px;
}
.skh-home-section-head--center {
    display: block;
    text-align: center;
}
.skh-home-section h2,
.skh-home-feature-card h2,
.skh-home-help-card h2,
.skh-home-final-cta h2 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    color: #111827;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin: 0;
}
.skh-home-section h2 { font-size: clamp(2rem, 3vw, 2.7rem); }
.skh-home-section-head p {
    color: #6b7280;
    max-width: 420px;
    margin: 0 0 4px;
    line-height: 1.6;
}

/* Category cards */
.skh-home-cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.skh-home-cat-card {
    display: block;
    text-decoration: none !important;
    color: #111827;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15,23,42,.05);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.skh-home-cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(15,23,42,.10);
    border-color: #d1d5db;
}
.skh-home-cat-img {
    height: 140px;
    background-size: cover;
    background-position: center;
}
.skh-home-cat-body {
    position: relative;
    padding: 28px 16px 18px;
    min-height: 158px;
}
.skh-home-cat-icon {
    position: absolute;
    top: -24px;
    left: 16px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(15,23,42,.12);
}
.skh-home-cat-body h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: #111827;
    font-weight: 950;
}
.skh-home-cat-body p {
    margin: 0;
    color: #6b7280;
    font-size: .86rem;
    line-height: 1.45;
    padding-right: 18px;
}
.skh-home-arrow {
    position: absolute;
    right: 14px;
    bottom: 14px;
    color: #d92d2a;
    font-size: 1.3rem;
    font-weight: 950;
}

/* Feature */
.skh-home-feature-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 18px;
}
.skh-home-feature-img {
    min-height: 440px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
}
.skh-home-feature-card,
.skh-home-help-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 34px;
}
.skh-home-feature-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.skh-home-feature-card h2,
.skh-home-help-card h2 { font-size: clamp(2rem, 3.2vw, 3rem); margin-bottom: 18px; }
.skh-home-feature-card p,
.skh-home-help-card p {
    color: #4b5563;
    line-height: 1.75;
    font-size: 1rem;
    margin: 0 0 18px;
}
.skh-home-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 9px;
}
.skh-home-checklist li {
    position: relative;
    padding-left: 26px;
    color: #111827;
    font-weight: 750;
}
.skh-home-checklist li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #079669;
    font-weight: 950;
}

/* Help */
.skh-home-help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    background: transparent;
    border: 0;
    padding: 0;
}
.skh-home-help-card--dark {
    background: #111827;
    color: #fff;
    border-color: #111827;
}
.skh-home-help-card--dark h2 { color: #fff; }
.skh-home-help-card--dark p { color: rgba(255,255,255,.78); }
.skh-home-help-card h3 {
    margin: 0 0 18px;
    font-size: 1.25rem;
    font-weight: 950;
    color: #111827;
}
.skh-home-link-list {
    display: grid;
    gap: 10px;
}
.skh-home-link-list a {
    display: flex;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #111827;
    font-weight: 900;
    text-decoration: none !important;
}
.skh-home-link-list a:hover { border-color: #fecaca; background: #fef2f2; color: #d92d2a; }

/* FAQ */
.skh-home-faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.skh-home-faq-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
}
.skh-home-faq-card h3 {
    margin: 0 0 10px;
    font-size: .98rem;
    font-weight: 950;
    color: #111827;
}
.skh-home-faq-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
    font-size: .9rem;
}

/* Final CTA */
.skh-home-final-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    background: #111827;
    color: #fff;
    border-radius: 18px;
    padding: 42px;
    margin-top: 18px;
}
.skh-home-final-cta h2 { color: #fff; font-size: clamp(2rem, 3vw, 2.6rem); margin-bottom: 8px; }
.skh-home-final-cta p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.6; }

@media (max-width: 1180px) {
    .skh-home-cat-grid { grid-template-columns: repeat(3, 1fr); }
    .skh-home-faq-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .skh-home-wrap { width: calc(100vw - 28px); padding-bottom: 56px; }
    .skh-home-hero { min-height: 520px; }
    .skh-home-hero-inner { padding: 40px 28px; }
    .skh-home-trust { grid-template-columns: repeat(2, 1fr); }
    .skh-home-trust-item { border-bottom: 1px solid #e5e7eb; }
    .skh-home-trust-item:nth-child(2) { border-right: 0; }
    .skh-home-trust-item:nth-last-child(-n+2) { border-bottom: 0; }
    .skh-home-section-head { display: block; }
    .skh-home-section-head p { margin-top: 10px; }
    .skh-home-feature-grid,
    .skh-home-help-grid { grid-template-columns: 1fr; }
    .skh-home-feature-img { min-height: 300px; }
    .skh-home-final-cta { display: block; padding: 30px; }
    .skh-home-final-actions { margin-top: 22px; }
}
@media (max-width: 620px) {
    .skh-home-hero { min-height: 590px; border-radius: 18px; }
    .skh-home-hero-inner { padding: 34px 22px; }
    .skh-home-actions,
    .skh-home-final-actions { flex-direction: column; }
    .skh-home-btn { width: 100%; }
    .skh-home-trust,
    .skh-home-cat-grid,
    .skh-home-faq-grid { grid-template-columns: 1fr; }
    .skh-home-trust-item,
    .skh-home-trust-item:nth-child(2) { border-right: 0; }
    .skh-home-trust-item:nth-last-child(2) { border-bottom: 1px solid #e5e7eb; }
    .skh-home-section,
    .skh-home-feature-card,
    .skh-home-help-card { padding: 24px; }
}

/* Service teaser */
.skh-home-service-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 18px;
    align-items: stretch;
    margin-bottom: 18px;
}
.skh-home-service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.skh-home-service-card h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.12;
    margin: 0 0 18px;
    color: #111827;
}
.skh-home-service-card p {
    color: #4b5563;
    line-height: 1.75;
    font-size: 1rem;
    margin: 0 0 18px;
}
.skh-home-service-img {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 36px rgba(15,23,42,.08);
}
@media (max-width: 980px) {
    .skh-home-service-grid { grid-template-columns: 1fr; }
    .skh-home-service-img { min-height: 300px; order: -1; }
}
@media (max-width: 620px) {
    .skh-home-service-card { padding: 24px; }
    .skh-home-service-img { min-height: 230px; }
}
