/* =========================================================
   SKY-SOFT - SKY SHOP
========================================================= */

.skyshop-section {
    --shop-text: #f4fbff;
    --shop-muted: rgba(220, 238, 245, 0.7);
    --shop-line: rgba(255, 255, 255, 0.13);
    --shop-border: rgba(255, 255, 255, 0.15);
    --shop-accent: #bdefff;
    --shop-accent-soft: rgba(189, 239, 255, 0.16);
    --shop-dark: #071014;

    position: relative;
    width: 100%;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(70px, 8vw, 130px) clamp(24px, 6vw, 100px);
    color: var(--shop-text);
    isolation: isolate;
}

.skyshop-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.skyshop-light {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.8;
    animation: skyshopLightMove 12s ease-in-out infinite alternate;
}

.skyshop-light-one {
    width: 520px;
    height: 520px;
    top: -230px;
    right: 4%;
    background: radial-gradient(circle, rgba(189, 239, 255, 0.16), rgba(189, 239, 255, 0.04) 42%, transparent 72%);
}

.skyshop-light-two {
    width: 430px;
    height: 430px;
    bottom: -190px;
    left: -100px;
    background: radial-gradient(circle, rgba(94, 170, 194, 0.13), rgba(28, 82, 99, 0.05) 48%, transparent 73%);
    animation-delay: -4s;
}

.skyshop-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.6), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.6), transparent);
}

.skyshop-layout {
    position: relative;
    width: min(1500px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
    align-items: center;
    gap: clamp(50px, 7vw, 120px);
}

.skyshop-content {
    position: relative;
    max-width: 720px;
    padding: clamp(30px, 4vw, 60px);
    overflow: hidden;
    border: 1px solid var(--shop-border);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
        rgba(7, 16, 20, 0.58);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.skyshop-content::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: -170px;
    left: -100px;
    border-radius: 50%;
    background: rgba(189, 239, 255, 0.12);
    filter: blur(55px);
    pointer-events: none;
}

.skyshop-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
    color: var(--shop-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.skyshop-eyebrow-line {
    position: relative;
    width: 38px;
    height: 1px;
    overflow: hidden;
    background: rgba(189, 239, 255, 0.28);
}

.skyshop-eyebrow-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--shop-accent);
    transform: translateX(-100%);
    animation: skyshopLineMove 2.5s ease-in-out infinite;
}

.skyshop-title {
    max-width: 650px;
    margin: 0 0 30px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 760;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.skyshop-title span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, #ffffff, #bdefff 48%, #8ec8db);
    background-clip: text;
    -webkit-background-clip: text;
}

.skyshop-text {
    display: grid;
    gap: 17px;
}

.skyshop-text p {
    position: relative;
    margin: 0;
    padding-left: 23px;
    color: var(--shop-muted);
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.78;
}

.skyshop-text p::before {
    content: "";
    position: absolute;
    top: 0.73em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--shop-accent);
    box-shadow:
        0 0 0 5px rgba(189, 239, 255, 0.07),
        0 0 18px rgba(189, 239, 255, 0.45);
}

.skyshop-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid var(--shop-line);
}

.skyshop-secondary-link {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.skyshop-secondary-link {
    color: rgba(235, 250, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.skyshop-secondary-link:hover {
    transform: translateY(-2px);
}

.skyshop-secondary-link:hover {
    color: #ffffff;
    border-color: rgba(189, 239, 255, 0.32);
    background: rgba(189, 239, 255, 0.08);
}

.skyshop-visual {
    position: relative;
    width: min(100%, 720px);
    min-height: 670px;
    margin-left: auto;
}

.skyshop-visual::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: 47%;
    left: 50%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(189, 239, 255, 0.12), rgba(189, 239, 255, 0.03) 48%, transparent 72%);
    transform: translate(-50%, -50%);
    filter: blur(8px);
    animation: skyshopGlow 4s ease-in-out infinite;
}

.skyshop-device-stage {
    position: absolute;
    inset: 40px 40px 190px;
    border: 1px solid rgba(189, 239, 255, 0.12);
    border-radius: 42px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(5, 15, 19, 0.52)),
        radial-gradient(circle at 50% 24%, rgba(189, 239, 255, 0.13), transparent 46%);
    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.skyshop-monitor {
    position: absolute;
    top: 74px;
    left: 50%;
    width: min(74%, 430px);
    transform: translateX(-50%);
}

.skyshop-monitor-screen {
    position: relative;
    height: 250px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(14, 36, 44, 0.95), rgba(2, 8, 11, 0.95)),
        radial-gradient(circle at 22% 18%, rgba(189, 239, 255, 0.18), transparent 44%);
    box-shadow:
        inset 0 0 0 8px rgba(255, 255, 255, 0.035),
        0 28px 70px rgba(0, 0, 0, 0.34);
}

.skyshop-screen-bar,
.skyshop-screen-line,
.skyshop-screen-card {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: rgba(189, 239, 255, 0.72);
}

.skyshop-screen-bar {
    width: 66%;
    height: 12px;
    top: 52px;
    left: 42px;
}

.skyshop-screen-line-one,
.skyshop-screen-line-two {
    height: 8px;
    left: 42px;
    background: rgba(220, 238, 245, 0.22);
}

.skyshop-screen-line-one {
    width: 46%;
    top: 84px;
}

.skyshop-screen-line-two {
    width: 34%;
    top: 108px;
}

.skyshop-screen-card {
    width: 145px;
    height: 78px;
    right: 36px;
    bottom: 34px;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(189, 239, 255, 0.24), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.04);
}

.skyshop-monitor-neck {
    width: 58px;
    height: 52px;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(189, 239, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.skyshop-monitor-base {
    width: 180px;
    height: 18px;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(189, 239, 255, 0.2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.skyshop-printer,
.skyshop-router {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(7, 15, 19, 0.72));
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.skyshop-printer {
    left: 58px;
    bottom: 42px;
    width: 165px;
    height: 92px;
    border-radius: 22px;
}

.skyshop-printer::before {
    content: "";
    position: absolute;
    width: 112px;
    height: 18px;
    left: 26px;
    top: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.skyshop-printer-light {
    position: absolute;
    right: 20px;
    top: 24px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--shop-accent);
    box-shadow: 0 0 16px rgba(189, 239, 255, 0.55);
}

.skyshop-printer-paper {
    position: absolute;
    width: 92px;
    height: 54px;
    left: 36px;
    bottom: -27px;
    border-radius: 0 0 12px 12px;
    background: rgba(244, 252, 255, 0.9);
}

.skyshop-router {
    right: 62px;
    bottom: 46px;
    width: 170px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 22px;
}

.skyshop-router span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(189, 239, 255, 0.8);
    box-shadow: 0 0 16px rgba(189, 239, 255, 0.5);
}

.skyshop-service-list {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 74px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.skyshop-service-card {
    min-height: 118px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 21px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(7, 15, 19, 0.72));
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.31),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
}

.skyshop-service-number {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(189, 239, 255, 0.18);
    border-radius: 13px;
    color: var(--shop-accent);
    background: rgba(189, 239, 255, 0.06);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.09em;
}

.skyshop-service-card strong,
.skyshop-service-card small {
    display: block;
}

.skyshop-service-card strong {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.skyshop-service-card small {
    color: rgba(220, 238, 245, 0.56);
    font-size: 11px;
    line-height: 1.45;
}

.skyshop-contact-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.skyshop-contact-strip a,
.skyshop-contact-strip span {
    min-height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.045);
    text-decoration: none;
}

.skyshop-contact-strip small {
    margin-bottom: 4px;
    color: rgba(220, 238, 245, 0.5);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

@keyframes skyshopLightMove {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(45px, 30px, 0) scale(1.08);
    }
}

@keyframes skyshopLineMove {
    0%,
    20% {
        transform: translateX(-100%);
    }

    70%,
    100% {
        transform: translateX(100%);
    }
}

@keyframes skyshopGlow {
    0%,
    100% {
        opacity: 0.65;
        transform: translate(-50%, -50%) scale(0.94);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.06);
    }
}

@media (max-width: 1180px) {
    .skyshop-layout {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .skyshop-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .skyshop-visual {
        width: min(100%, 760px);
        margin: 0 auto;
    }
}

@media (max-width: 1360px) and (min-width: 1181px) {
    .skyshop-section {
        min-height: auto;
        align-items: flex-start;
        overflow-y: hidden;
        padding: 118px clamp(28px, 4vw, 54px) 86px;
    }

    .skyshop-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
    }

    .skyshop-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .skyshop-visual {
        width: min(100%, 760px);
        min-height: 610px;
        margin: 0 auto;
    }
}

@media (max-height: 820px) and (min-width: 761px) {
    .skyshop-section {
        min-height: auto;
        align-items: flex-start;
        overflow-y: hidden;
        padding-top: 94px;
        padding-bottom: 70px;
    }

    .skyshop-title {
        margin-bottom: 22px;
        font-size: clamp(38px, 4.5vw, 62px);
    }

    .skyshop-text {
        gap: 12px;
    }

    .skyshop-text p {
        line-height: 1.6;
    }

    .skyshop-actions {
        margin-top: 24px;
        padding-top: 20px;
    }

    .skyshop-visual {
        min-height: 580px;
    }
}

@media (max-width: 760px) {
    .skyshop-section {
        min-height: auto;
        padding: 56px 16px 68px;
    }

    .skyshop-layout {
        gap: 26px;
    }

    .skyshop-content {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .skyshop-title {
        margin-bottom: 24px;
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.03;
        letter-spacing: -0.035em;
    }

    .skyshop-text p {
        padding-left: 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .skyshop-actions {
        display: grid;
    }

    .skyshop-secondary-link {
        width: 100%;
    }

    .skyshop-visual {
        min-height: auto;
        display: grid;
        gap: 12px;
    }

    .skyshop-visual::before,
    .skyshop-visual::before {
        display: none;
    }

    .skyshop-device-stage {
        position: relative;
        inset: auto;
        display: block;
        height: 230px;
        border-radius: 24px;
    }

    .skyshop-monitor {
        top: 28px;
        width: min(82%, 300px);
    }

    .skyshop-monitor-screen {
        height: 138px;
        border-radius: 18px;
    }

    .skyshop-screen-bar {
        top: 34px;
        left: 28px;
        height: 8px;
    }

    .skyshop-screen-line-one,
    .skyshop-screen-line-two {
        left: 28px;
        height: 6px;
    }

    .skyshop-screen-line-one {
        top: 56px;
    }

    .skyshop-screen-line-two {
        top: 74px;
    }

    .skyshop-screen-card {
        right: 24px;
        bottom: 22px;
        width: 92px;
        height: 46px;
        border-radius: 13px;
    }

    .skyshop-monitor-neck {
        height: 32px;
    }

    .skyshop-monitor-base {
        width: 128px;
        height: 14px;
    }

    .skyshop-printer {
        left: 22px;
        bottom: 24px;
        width: 104px;
        height: 58px;
        border-radius: 16px;
    }

    .skyshop-printer::before {
        width: 62px;
        height: 11px;
        left: 18px;
        top: 14px;
    }

    .skyshop-printer-light {
        right: 14px;
        top: 17px;
        width: 6px;
        height: 6px;
    }

    .skyshop-printer-paper {
        width: 54px;
        height: 32px;
        left: 24px;
        bottom: -17px;
    }

    .skyshop-router {
        right: 22px;
        bottom: 25px;
        width: 106px;
        height: 52px;
        gap: 9px;
        border-radius: 16px;
    }

    .skyshop-router span {
        width: 7px;
        height: 7px;
    }

    .skyshop-service-list,
    .skyshop-contact-strip {
        position: relative;
        inset: auto;
        grid-template-columns: 1fr;
    }

    .skyshop-service-list {
        margin-bottom: 14px;
    }

    .skyshop-service-card {
        min-height: 88px;
        padding: 16px;
        border-radius: 17px;
    }

    .skyshop-contact-strip a,
    .skyshop-contact-strip span {
        border-radius: 16px;
    }
}

@media (max-width: 520px) {
    .skyshop-eyebrow {
        font-size: 10px;
        letter-spacing: 0.15em;
    }

    .skyshop-section {
        padding-inline: 14px;
    }

    .skyshop-content {
        padding: 24px 18px;
    }

    .skyshop-service-card {
        min-height: 82px;
    }

    .skyshop-contact-strip span {
        width: fit-content;
        min-width: 145px;
        min-height: 46px;
        padding: 8px 14px;
        justify-self: start;
        border-radius: 13px;
    }

    .skyshop-contact-strip span small {
        margin-bottom: 2px;
        font-size: 9px;
    }

    .skyshop-secondary-link {
        min-height: 44px;
        padding-inline: 12px;
        font-size: 11px;
        letter-spacing: 0.05em;
        word-break: break-word;
    }
}

@media (prefers-reduced-motion: reduce) {
    .skyshop-section *,
    .skyshop-section *::before,
    .skyshop-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}

@media (max-height: 1000px) and (min-width: 761px) {
    .skyshop-section {
        min-height: 100vh;
        align-items: center;
        overflow: hidden;
        padding:
            clamp(52px, 7vh, 78px)
            clamp(28px, 4vw, 58px)
            clamp(46px, 6vh, 68px);
    }

    .skyshop-layout {
        grid-template-columns: minmax(300px, 0.9fr) minmax(430px, 1.1fr);
        gap: clamp(34px, 4.8vw, 72px);
    }

    .skyshop-content {
        padding: clamp(30px, 4vh, 46px);
        border-radius: 30px;
    }

    .skyshop-eyebrow {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .skyshop-title {
        margin-bottom: 22px;
        font-size: clamp(46px, 7.2vh, 66px);
        line-height: 0.98;
    }

    .skyshop-text {
        gap: 12px;
    }

    .skyshop-text p {
        padding-left: 21px;
        font-size: 13px;
        line-height: 1.55;
    }

    .skyshop-text p::before {
        width: 7px;
        height: 7px;
    }

    .skyshop-actions {
        margin-top: 20px;
        padding-top: 18px;
    }

    .skyshop-secondary-link {
        min-height: 42px;
        padding-inline: 16px;
        font-size: 11px;
    }

    .skyshop-visual {
        min-height: clamp(500px, 68vh, 620px);
        transform: scale(0.92);
        transform-origin: center;
    }

    .skyshop-device-stage {
        inset: 38px 38px 180px;
    }

    .skyshop-service-list {
        gap: 10px;
        bottom: 62px;
    }

    .skyshop-service-card {
        min-height: 104px;
        padding: 16px;
    }

    .skyshop-contact-strip {
        gap: 10px;
    }

    .skyshop-service-number {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 10px;
    }

    .skyshop-service-card strong {
        font-size: 14px;
    }

    .skyshop-service-card small {
        font-size: 10px;
        line-height: 1.38;
    }

    .skyshop-contact-strip a,
    .skyshop-contact-strip span {
        min-height: 54px;
        padding: 11px 16px;
    }
}

@media (max-height: 680px) and (min-width: 761px) {
    .skyshop-section {
        padding-top: 58px;
        padding-bottom: 48px;
    }

    .skyshop-layout {
        grid-template-columns: minmax(280px, 0.86fr) minmax(390px, 1fr);
        gap: 26px;
    }

    .skyshop-content {
        padding: 20px 24px;
        border-radius: 24px;
    }

    .skyshop-title {
        margin-bottom: 12px;
        font-size: clamp(30px, 7vh, 48px);
    }

    .skyshop-eyebrow {
        margin-bottom: 10px;
    }

    .skyshop-text {
        gap: 7px;
    }

    .skyshop-text p {
        padding-left: 16px;
        font-size: 11px;
        line-height: 1.3;
    }

    .skyshop-text p::before {
        width: 5px;
        height: 5px;
    }

    .skyshop-actions {
        margin-top: 10px;
        padding-top: 10px;
    }

    .skyshop-secondary-link {
        min-height: 34px;
        padding-inline: 12px;
        font-size: 9px;
    }

    .skyshop-visual {
        min-height: clamp(330px, 64vh, 430px);
        transform: scale(0.7);
    }

    .skyshop-device-stage {
        inset: 28px 30px 142px;
    }

    .skyshop-service-card {
        min-height: 72px;
        padding: 11px;
        gap: 10px;
    }

    .skyshop-contact-strip a,
    .skyshop-contact-strip span {
        min-height: 42px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .skyshop-contact-strip small {
        margin-bottom: 2px;
        font-size: 8px;
    }
}
