/* =========================
   SOFTSCALEHUB LANDING
========================= */

:root {
    
    --ssh-radius-2xl: 32px;
    --ssh-radius-lg: 24px;
    --ssh-radius-md: 18px;
    --ssh-container-wide: 1280px;
    --ssh-header-height: 64px;
}

body.ssh-landing-body {
    background:
        radial-gradient(circle at top center, rgba(37, 89, 198, 0.14), transparent 34%),
        radial-gradient(circle at 78% 18%, rgba(84, 195, 175, 0.08), transparent 24%),
        linear-gradient(180deg, #010816 0%, #020b23 34%, #020b23 100%);
    color: var(--ssh-color-text);
}

.ssh-landing-page {
    position: relative;
    overflow: clip;
    background: transparent;
}

.ssh-landing-page::before,
.ssh-landing-page::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.ssh-landing-page::before {
    width: 760px;
    height: 760px;
    left: -260px;
    top: 120px;
    background: radial-gradient(circle, rgba(52, 100, 216, 0.12) 0%, transparent 68%);
    filter: blur(8px);
}

.ssh-landing-page::after {
    width: 760px;
    height: 760px;
    right: -260px;
    top: 180px;
    background: radial-gradient(circle, rgba(84, 195, 175, 0.09) 0%, transparent 68%);
    filter: blur(10px);
}

.ssh-landing-page > section,
.ssh-public-header,
.ssh-public-footer {
    position: relative;
    z-index: 1;
}

.ssh-container {
    width: min(100% - 48px, var(--ssh-container-wide));
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.ssh-public-header {
    position: relative;
    z-index: 10;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
	padding: 12px 0;
}

.ssh-header-row {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ssh-logo-link,
.ssh-logo-link:hover,
.ssh-logo-link:focus,
.ssh-logo-link:active,
.ssh-logo-link:visited {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ssh-color-text);
}

.ssh-logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.ssh-logo-text {
    font-size: 19px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #f3f6fb;
}

.ssh-logo-hub {
    color: rgb(84, 195, 175);
}

.ssh-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ssh-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;
    border-radius: 14px;

    font-size: 15px;
    font-weight: 500;

    color: rgba(232, 238, 250, 0.85);
    text-decoration: none;

    border: 1px solid transparent;

    transition: all 0.25s ease;
}

.ssh-nav-link:visited,
.ssh-nav-link:active {
    color: rgba(232, 238, 250, 0.85);
    text-decoration: none;
}

.ssh-nav-link:hover,
.ssh-nav-link:focus {
    color: #ffffff;

    background: rgba(20, 33, 69, 0.9);

    border-color: rgb(84, 195, 175);

    box-shadow:
        0 0 0 1px rgba(84, 195, 175, 0.25),
        0 10px 30px rgba(12, 34, 78, 0.35);

    transform: translateY(-1px);
}

.ssh-nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: radial-gradient(
        circle at 50% 0%,
        rgba(84, 195, 175, 0.12),
        transparent 60%
    );

    opacity: 0;
    transition: opacity 0.25s ease;
}

.ssh-nav-link:hover::before {
    opacity: 1;
}

/* =========================
   HERO
========================= */

.ssh-hero {
    padding: 80px 0 92px;
    text-align: center;
}

.ssh-hero .ssh-container {
    max-width: 1180px;
}

.ssh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 18px;
    margin-bottom: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 27, 55, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    color: var(--ssh-color-text-muted);
    font-size: 15px;
    font-weight: 500;
}

.ssh-hero-badge-icon {
    font-size: 16px;
    color: var(--ssh-color-primary-teal);
}

.ssh-hero-title {
    max-width: 1220px;
    margin: 0 auto 28px;
    font-size: 3.75rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ssh-color-text);
    text-wrap: balance;
}

.ssh-text-gradient {
    display: inline;
    background: linear-gradient(135deg, var(--ssh-color-primary-blue) 10%, var(--ssh-color-primary-teal) 88%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ssh-hero-description {
    max-width: 920px;
    margin: 0 auto;
	margin-top: 20px;
    color: var(--ssh-color-text-soft);
    font-size: 1.25rem;
    line-height: 1.625;
    text-wrap: balance;
}

.ssh-hero-actions {
    margin-top: 38px;
}

.ssh-hero-note {
    margin-top: 28px;
    color: var(--ssh-color-text-muted);
    font-size: 16px;
}

/* =========================
   BUTTONS
========================= */

.ssh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.ssh-btn,
.ssh-btn:hover,
.ssh-btn:focus,
.ssh-btn:active,
.ssh-btn:visited {
    color: #ffffff !important;
}

.ssh-btn-large {
    min-height: 78px;
    padding: 0 42px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
}

.ssh-btn-primary {
    background: linear-gradient(90deg, #5e86ea 0%, #68d3c4 100%);
    box-shadow:
        0 14px 34px rgba(20, 58, 137, 0.34),
        0 0 34px rgba(56, 114, 255, 0.16);
}

.ssh-btn-primary:hover,
.ssh-btn-primary:focus {
    transform: scale(1.045);
    filter: brightness(1.03);
    box-shadow:
        0 20px 44px rgba(20, 58, 137, 0.42),
        0 0 42px rgba(104, 211, 196, 0.20);
}

.ssh-btn-arrow {
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
    margin-top: -2px;
}

/* =========================
   SECTIONS
========================= */

.ssh-features,
.ssh-how,
.ssh-audience,
.ssh-final-cta {
    padding: 54px 0 74px;
}

.ssh-section-head {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.ssh-section-head h2 {
    margin: 0 0 14px;
    color: var(--ssh-color-text);
    font-size: 3.75rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.ssh-section-head p {
    margin: 0;
    color: var(--ssh-color-text-muted);
    font-size: .875rem;
    line-height: 1.625;
}

/* =========================
   FEATURE CARDS
========================= */

.ssh-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.ssh-card {
    position: relative;
    min-height: 330px;
    padding: 1.5rem;
    border-radius: var(--ssh-radius-2xl);
    background:
        linear-gradient(180deg, rgba(13, 23, 49, 0.86) 0%, rgba(10, 18, 41, 0.92) 100%);
    border: 1px solid var(--ssh-border-base);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.ssh-card:hover {
    background:
        linear-gradient(180deg, rgba(18, 31, 64, 0.92) 0%, rgba(13, 24, 52, 0.98) 100%);
    border-color: var(--ssh-color-border-accent);
    box-shadow: var(--ssh-shadow-glow);
    transform: translateY(-4px);
}

.ssh-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 32px;
    border-radius: 22px;
    background: rgba(31, 65, 104, 0.62);
}

.ssh-card-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: var(--ssh-color-primary-teal);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ssh-card h3 {
    margin: 0 0 16px;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: -0.02em;
    color: var(--ssh-color-text);
}

.ssh-card p {
    margin: 0;
    color: rgba(196, 204, 220, 0.8);
    font-size: .875rem;
    line-height: 1.625;
}

/* =========================
   HOW IT WORKS
========================= */

.ssh-steps-list {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
}

.ssh-step-item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    padding: 20px 0;
}

.ssh-step-number {
    color: rgba(94, 134, 234, 0.82);
    font-size: clamp(42px, 4vw, 60px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.ssh-step-content h3 {
    margin: 0 0 10px;
    color: var(--ssh-color-text);
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: -0.02em;
}

.ssh-step-content p {
    margin: 0;
    color: rgba(196, 204, 220, 0.76);
    font-size: .875rem;
    line-height: 1.625;
    max-width: 860px;
}

/* =========================
   AUDIENCE
========================= */

.ssh-audience-box,
.ssh-final-cta-box {
    max-width: 1060px;
    margin: 0 auto;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(90deg, rgba(11, 22, 51, 0.96) 0%, rgba(10, 26, 47, 0.96) 100%);
    box-shadow: var(--ssh-shadow-card);
}

.ssh-audience-box {
    max-width: 1060px;
    margin: 0 auto;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(90deg, rgba(11, 22, 51, 0.96) 0%, rgba(10, 26, 47, 0.96) 100%);
    box-shadow: var(--ssh-shadow-card);
    transition: all 0.3s ease;
	position: relative;
    overflow: hidden;
	padding: 20px;
}

.ssh-audience-box:hover {
    border-color: rgb(84, 195, 175);
    box-shadow:
        0 0 0 1px rgba(84, 195, 175, 0.25),
        0 20px 50px rgba(12, 34, 78, 0.4);
    transform: translateY(-3px);
}

.ssh-audience-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: radial-gradient(
        circle at 20% 0%,
        rgba(84, 195, 175, 0.12),
        transparent 60%
    );

    opacity: 0;
    transition: opacity 0.3s ease;

    pointer-events: none;
}

.ssh-audience-box:hover::before {
    opacity: 1;
}

.ssh-audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ssh-audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: .875rem;
    line-height: 1.625;
    color: rgba(225, 231, 243, 0.85);
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.25s ease;
	position: relative;
	overflow: hidden;
}

.ssh-audience-list li:last-child {
    margin-bottom: 0;
}

.ssh-list-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(84, 195, 175, 0.15);
    color: rgb(84, 195, 175);
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

/* =========================
   FINAL CTA
========================= */

.ssh-final-cta {
    padding-top: 70px;
    padding-bottom: 92px;
}

.ssh-final-cta-box {
    padding: 70px 32px 76px;
    text-align: center;
    overflow: hidden;
}

.ssh-final-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(76, 112, 212, 0.12) 0%, transparent 36%),
        radial-gradient(circle at 72% 45%, rgba(84, 195, 175, 0.1) 0%, transparent 26%);
    pointer-events: none;
}

.ssh-final-cta-box > * {
    position: relative;
    z-index: 1;
}

.ssh-final-cta-box h2 {
    max-width: 880px;
    margin: 0 auto 18px;
    color: var(--ssh-color-text);
    font-size: 3.75rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-wrap: balance;
}

.ssh-final-cta-box p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--ssh-color-text-muted);
    font-size: .875rem;
    line-height: 1.625;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1240px) {
    .ssh-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    :root {
        --ssh-header-height: 78px;
    }

    .ssh-hero {
        padding-top: 84px;
        padding-bottom: 64px;
    }

    .ssh-section-head p,
    .ssh-step-content p,
    .ssh-audience-list li,
    .ssh-final-cta-box p {
        font-size: 18px;
    }

    .ssh-step-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ssh-step-number {
        text-align: left;
    }
}

@media (max-width: 767px) {
	.ssh-hero-title {
        font-size: 2.4rem;
        line-height: 1.05;
    }
	
    .ssh-container {
        width: min(100% - 32px, var(--ssh-container-wide));
    }

    .ssh-header-row {
        min-height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }

    .ssh-nav {
        flex-direction: row;
    }

    .ssh-nav,
    .ssh-footer-nav {
        gap: 20px;
        flex-wrap: wrap;
    }

    .ssh-hero-badge {
        font-size: 13px;
        line-height: 1.35;
        padding: 10px 14px;
    }
	
	.ssh-hero {
        padding: 48px 0 56px;
    }

    .ssh-btn-large {
        width: 100%;
        min-height: 66px;
        padding: 0 26px;
        font-size: 17px;
    }

    .ssh-features,
    .ssh-how,
    .ssh-audience,
    .ssh-final-cta {
        padding-top: 40px;
        padding-bottom: 52px;
    }

    .ssh-card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ssh-card {
        min-height: auto;
        padding: 28px 24px;
        border-radius: 26px;
    }

    .ssh-card-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
        border-radius: 18px;
    }

    .ssh-step-item {
        padding: 8px 0;
    }

    .ssh-audience-box,
    .ssh-final-cta-box {
        border-radius: 28px;
    }

    .ssh-audience-box {
        padding: 28px 24px;
    }

    .ssh-final-cta-box {
        padding: 44px 22px 50px;
    }
}

/* SECTION */

.ssh-seo-section {
    margin-top: 100px;
	padding-bottom: 92px;
}

/* TITLE */

.ssh-section-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ssh-test-text);
    margin-bottom: 24px;
	text-align: center;
}

/* CARD */

.ssh-seo-card {
    width: 100%;
    padding: 40px;
    border-radius: 28px;

    background: linear-gradient(
        180deg,
        rgba(13, 23, 49, 0.85) 0%,
        rgba(10, 18, 41, 0.92) 100%
    );

    border: 1px solid transparent; /* 👈 убрали видимую рамку */
    transition: all 0.3s ease;
}

/* HOVER — КАК У ДРУГИХ */

.ssh-seo-card:hover {
    border-color: rgb(84, 195, 175);
    box-shadow: 
        0 0 0 1px rgba(84, 195, 175, 0.25),
        0 20px 50px rgba(12, 34, 78, 0.4);
    transform: translateY(-3px);
}

/* TEXT */

.ssh-seo-card p {
    color: var(--ssh-test-text-soft);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.ssh-seo-sub {
    margin-top: 20px;
    font-weight: 500;
}

/* LIST */

.ssh-seo-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
}

.ssh-seo-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--ssh-test-text-soft);
}

/* Галочки */

.ssh-seo-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(84, 195, 175);
    font-weight: bold;
}