:root {
    --skan-blue: #0f548c;
    --skan-blue-dark: #003d59;
    --skan-green: #006e64;
    --skan-green-dark: #005164;
    --skan-text: #111827;
    --skan-muted: #5f6d82;
    --skan-border: rgba(15, 84, 140, .12);
}

/* Final hero typography: professional web size, closer to Fiverr/Upwork balance */
.sk-home-hero {
    padding-top: 56px !important;
    padding-bottom: 58px !important;
}

.sk-home-hero__inner {
    grid-template-columns: minmax(0, 1.18fr) 390px !important;
    gap: 44px !important;
}

.sk-home-hero__content h1 {
    max-width: 680px !important;
    font-size: clamp(2.45rem, 3.7vw, 3.45rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -.045em !important;
    margin: 18px 0 16px !important;
}

.sk-eyebrow {
    font-size: .86rem !important;
}

.sk-hero-lead {
    max-width: 640px !important;
    font-size: .98rem !important;
    line-height: 1.68 !important;
}

.sk-home-hero__panel {
    max-width: 390px !important;
    padding: 17px !important;
}

.sk-stat-card {
    padding: 20px 22px !important;
}

.sk-stat-card strong {
    font-size: 1.65rem !important;
}

.sk-stat-card span {
    font-size: .8rem !important;
}

/* Section title size reduction */
.sk-section-head h2,
.sk-split-card h2,
.sk-app-section h2,
.sk-mobile-app h2 {
    font-size: clamp(1.7rem, 2.45vw, 2.35rem) !important;
    line-height: 1.14 !important;
    letter-spacing: -.035em !important;
}

/* Mobile app promotional block */
.sk-mobile-app {
    width: min(1180px, calc(100% - 48px));
    margin: 70px auto;
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
    overflow: hidden;
    padding: 44px 52px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 78%, rgba(255, 198, 73, .42), transparent 27%),
        linear-gradient(135deg, #f8f7f2 0%, #fff 56%, #f4faf8 100%);
    border: 1px solid rgba(15, 84, 140, .08);
    box-shadow: 0 26px 80px rgba(15, 84, 140, .08);
}

.sk-mobile-visual {
    position: relative;
    min-height: 330px;
}

.sk-phone-large,
.sk-phone-small {
    position: absolute;
    width: 190px;
    height: 340px;
    border-radius: 30px;
    padding: 14px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .16);
    border: 1px solid rgba(15, 84, 140, .08);
}

.sk-phone-large {
    left: 40px;
    top: 0;
    transform: rotate(-1.5deg);
}

.sk-phone-small {
    left: 190px;
    top: 80px;
    transform: rotate(1.5deg);
}

.sk-phone-notch {
    width: 58px;
    height: 7px;
    margin: 0 auto 20px;
    border-radius: 99px;
    background: rgba(15, 23, 42, .16);
}

.sk-phone-title {
    color: var(--skan-text);
    font-weight: 950;
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.sk-phone-hero {
    height: 92px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--skan-blue), var(--skan-green));
    margin-bottom: 16px;
}

.sk-phone-line {
    height: 13px;
    border-radius: 99px;
    background: rgba(15, 84, 140, .16);
    margin: 13px 0;
}

.sk-phone-line.short {
    width: 66%;
}

.sk-phone-card-mini {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    margin-top: 14px;
    border-radius: 18px;
    background: #f3f8fb;
}

.sk-phone-avatar {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f548c, #006e64);
}

.sk-mobile-copy {
    max-width: 520px;
}

.sk-mobile-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(0, 110, 100, .08);
    color: var(--skan-green-dark);
    font-weight: 900;
    font-size: .82rem;
}

.sk-mobile-copy p {
    margin: 16px 0 0;
    color: #343f52;
    font-size: 1rem;
    line-height: 1.75;
}

.sk-store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.sk-store {
    min-width: 168px;
    min-height: 58px;
    display: inline-grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    background: #174d40;
    box-shadow: 0 16px 34px rgba(23, 77, 64, .18);
}

.sk-store:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.sk-store-icon {
    font-size: 1.55rem;
    line-height: 1;
}

.sk-store small,
.sk-store strong {
    display: block;
    line-height: 1.05;
}

.sk-store small {
    font-size: .72rem;
    opacity: .88;
    font-weight: 700;
}

.sk-store strong {
    margin-top: 3px;
    font-size: .95rem;
    font-weight: 950;
}

@media (max-width: 1024px) {
    .sk-home-hero__inner {
        grid-template-columns: 1fr !important;
    }

    .sk-mobile-app {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .sk-mobile-visual {
        min-height: 350px;
        order: 2;
    }
}

.sk-mobile-app {
    background: #ffffff !important;
}

.sk-mobile-visual {
    background: transparent !important;
}

.sk-mobile-app::before,
.sk-mobile-app::after {
    display: none !important;
}

@media (max-width: 768px) {
    .sk-home-hero__content h1 {
        font-size: clamp(2.1rem, 9vw, 2.9rem) !important;
    }

    .sk-mobile-app {
        width: min(100% - 28px, 1180px);
        padding: 28px 22px;
        margin: 46px auto;
    }

    .sk-phone-large {
        left: 0;
    }

    .sk-phone-small {
        left: 138px;
    }
}

@media (max-width: 520px) {
    .sk-mobile-visual {
        min-height: 300px;
    }

    .sk-phone-large,
    .sk-phone-small {
        width: 160px;
        height: 292px;
    }

    .sk-phone-small {
        left: 105px;
        top: 72px;
    }

    .sk-store {
        width: 100%;
    }
}
