:root {
    --sk-blue-900: #0b2447;
    --sk-blue-800: #123a68;
    --sk-teal-600: #148a8a;
    --sk-teal-500: #1da6a6;
    --sk-green-500: #2f9f65;
    --sk-gray-900: #1e293b;
    --sk-gray-700: #475569;
    --sk-gray-500: #64748b;
    --sk-gray-200: #e2e8f0;
    --sk-gray-100: #f1f5f9;
    --sk-white: #ffffff;
    --sk-radius-lg: 22px;
    --sk-radius-md: 16px;
    --sk-shadow: 0 18px 44px rgba(15, 32, 62, 0.12);
}

body {
    background: #fff;
    color: var(--sk-gray-700);
    font-family: var(--primary-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--sk-gray-900);
    font-family: var(--heading-font);
    letter-spacing: -0.015em;
}

.sk-main {
    background: #fff;
}

.sk-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sk-teal-600);
}

.sk-kicker::before {
    content: '';
    width: 26px;
    height: 2px;
    background: currentColor;
}

.sk-header {
    background: #fff;
    border-bottom: 1px solid rgba(15, 40, 80, 0.08);
    z-index: 200;
}

.sk-header-top {
    background: #0e2b52;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sk-header-top__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
}

.sk-header-top__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sk-header-top a {
    color: rgba(255, 255, 255, 0.88);
}

.sk-header-main {
    padding: 14px 0;
    background: #fff;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sk-header.sticky-menu .sk-header-main {
    box-shadow: 0 12px 30px rgba(15, 35, 65, 0.12);
}

.sk-header-main__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.sk-header-logo img {
    max-height: 58px;
    width: auto;
}

.sk-nav .navigation {
    display: flex;
    align-items: center;
    gap: 2px;
}

.sk-nav .navigation > li > a {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sk-gray-900);
}

.sk-nav .navigation > li:hover > a,
.sk-nav .navigation > li.active > a {
    color: var(--sk-blue-800);
}

.sk-nav .navigation li .sub-menu {
    border-radius: 12px;
    box-shadow: 0 16px 44px rgba(8, 28, 62, 0.16);
    border: 1px solid rgba(18, 58, 104, 0.1);
}

.sk-nav .navigation li .sub-menu li a {
    color: var(--sk-gray-900);
}

.sk-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sk-mobile-toggler {
    background: #0d2d57;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 0;
}

.sk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.28s ease;
}

.sk-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--sk-blue-800), var(--sk-teal-600));
    box-shadow: 0 12px 30px rgba(20, 58, 104, 0.24);
}

.sk-btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(20, 58, 104, 0.28);
}

.sk-btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: transparent;
}

.sk-btn--outline:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.sk-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 98px;
    background: radial-gradient(circle at 85% 22%, rgba(25, 166, 166, 0.22), transparent 38%),
        linear-gradient(160deg, rgba(6, 25, 54, 0.98), rgba(11, 50, 88, 0.94));
}

.sk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--sk-hero-image) center/cover no-repeat;
    mix-blend-mode: soft-light;
    opacity: 0.36;
}

.sk-hero .container {
    position: relative;
    z-index: 2;
}

.sk-hero__content {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
}

.sk-hero h1 {
    margin: 18px 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    color: #fff;
}

.sk-hero p {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 700px;
}

.sk-hero__actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sk-section {
    padding: 86px 0;
}

.sk-section--alt {
    background: linear-gradient(180deg, #f8fbff 0%, #f5fafc 100%);
}

.sk-section-head {
    max-width: 790px;
    text-align: center;
    margin: 0 auto 32px;
}

.sk-section-head--left {
    text-align: left;
    margin-left: 0;
}

.sk-section-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 14px;
}

.sk-section-head p {
    color: var(--sk-gray-500);
    line-height: 1.85;
    font-size: 16px;
}

.sk-about-media img {
    width: 100%;
    border-radius: var(--sk-radius-lg);
    object-fit: cover;
    box-shadow: var(--sk-shadow);
}

.sk-stats-grid {
    margin-top: 30px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sk-stat-card {
    border-radius: var(--sk-radius-md);
    padding: 20px;
    border: 1px solid rgba(20, 58, 104, 0.1);
    background: #fff;
}

.sk-stat-card h3 {
    margin: 0;
    font-size: 30px;
    color: var(--sk-blue-800);
}

.sk-stat-card p {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--sk-gray-600);
}

.sk-grid {
    display: grid;
    gap: 18px;
}

.sk-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sk-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sk-card,
.sk-feature-card,
.sk-news-card,
.sk-partner-card,
.sk-timeline__item {
    background: #fff;
    border: 1px solid rgba(15, 35, 60, 0.08);
    border-radius: var(--sk-radius-md);
    padding: 24px;
    box-shadow: 0 6px 18px rgba(12, 36, 68, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.sk-card:hover,
.sk-feature-card:hover,
.sk-news-card:hover,
.sk-partner-card:hover,
.sk-timeline__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 32px rgba(12, 36, 68, 0.12);
}

.sk-card__icon,
.sk-feature-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(20, 138, 138, 0.12);
    color: var(--sk-teal-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.sk-card h3,
.sk-feature-card h3,
.sk-news-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.sk-card p,
.sk-feature-card p,
.sk-news-card p {
    color: var(--sk-gray-500);
    line-height: 1.75;
    margin-bottom: 0;
}

.sk-card__media {
    margin: -24px -24px 16px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.sk-card__media img,
.sk-news-card__thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sk-link {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--sk-blue-800);
}

.sk-link:hover {
    color: var(--sk-teal-600);
}

.sk-philosophy {
    border-radius: var(--sk-radius-lg);
    border: 1px solid rgba(10, 38, 75, 0.08);
    padding: 42px;
    background: linear-gradient(155deg, #fff, #f3f8ff);
}

.sk-philosophy h2 {
    margin-bottom: 14px;
}

.sk-philosophy p {
    line-height: 1.85;
    margin-bottom: 0;
}

.sk-philosophy blockquote {
    margin: 22px 0 0;
    font-size: 20px;
    line-height: 1.6;
    color: var(--sk-blue-900);
    border-left: 4px solid var(--sk-teal-600);
    padding-left: 18px;
}

.sk-timeline {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sk-timeline__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--sk-blue-800), var(--sk-teal-600));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
}

.sk-points {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sk-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(12, 40, 72, 0.1);
}

.sk-point span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--sk-green-500);
}

.sk-point p {
    margin: 0;
    color: var(--sk-gray-700);
}

.sk-partner-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sk-partner-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 140px;
}

.sk-partner-card img {
    max-width: 120px;
    max-height: 56px;
    object-fit: contain;
}

.sk-partner-card span {
    color: var(--sk-gray-700);
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
}

.sk-cta {
    border-radius: var(--sk-radius-lg);
    padding: 56px 48px;
    text-align: center;
    background: linear-gradient(140deg, #0f2e57, #14557a);
    color: #fff;
}

.sk-cta h2 {
    color: #fff;
    margin-bottom: 18px;
    font-size: clamp(28px, 3vw, 40px);
}

.sk-news-card {
    padding: 0;
    overflow: hidden;
}

.sk-news-card__body {
    padding: 22px;
}

.sk-news-card__body span {
    font-size: 13px;
    color: var(--sk-gray-500);
    display: block;
    margin-bottom: 8px;
}

.sk-contact-box,
.sk-form-box {
    border-radius: var(--sk-radius-lg);
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(11, 38, 74, 0.1);
    box-shadow: 0 12px 30px rgba(15, 35, 65, 0.08);
    height: 100%;
}

.sk-contact-box h2 {
    margin-bottom: 10px;
}

.sk-contact-box p {
    margin-bottom: 20px;
}

.sk-contact-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.sk-contact-box ul li {
    font-size: 15px;
    color: var(--sk-gray-700);
}

.sk-map-wrap {
    margin-top: 22px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(14, 38, 68, 0.1);
}

.sk-map-wrap iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
}

.sk-form-box .form-control,
.sk-form-box .form-select,
.sk-form-box .contact-form-input,
.sk-form-box input,
.sk-form-box textarea,
.sk-form-box select {
    border: 1px solid rgba(12, 40, 72, 0.15);
    border-radius: 10px;
    padding: 12px 14px;
}

.sk-form-box .contact-button button,
.sk-form-box button[type='submit'] {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sk-blue-800), var(--sk-teal-600));
    color: #fff;
    padding: 12px 24px;
    font-weight: 700;
}

.sk-section-action {
    margin-top: 24px;
    text-align: center;
}

.sk-footer {
    color: rgba(255, 255, 255, 0.9);
    padding-top: 68px;
}

.sk-footer__top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.sk-footer__brand p {
    color: rgba(255, 255, 255, 0.82);
    margin-top: 14px;
}

.sk-footer__brand blockquote {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding-left: 12px;
}

.sk-footer__logo img {
    max-height: 54px;
    width: auto;
}

.sk-footer__menu h3 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 18px;
}

.sk-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.sk-footer-links li,
.sk-footer-links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.55;
}

.sk-footer-links a:hover {
    color: #fff;
}

.sk-footer__bottom {
    padding: 18px 0 24px;
    text-align: center;
}

.sk-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
}

.sk-mobile-contact {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.sk-mobile-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

@media (max-width: 1399px) {
    .sk-partner-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .sk-grid--4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1199px) {
    .sk-grid--3,
    .sk-grid--4,
    .sk-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sk-partner-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sk-header-top__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .sk-section {
        padding: 64px 0;
    }

    .sk-hero {
        padding: 90px 0 74px;
    }

    .sk-hero p {
        font-size: 16px;
    }

    .sk-grid--3,
    .sk-grid--4,
    .sk-timeline,
    .sk-points,
    .sk-partner-grid,
    .sk-stats-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .sk-philosophy,
    .sk-cta,
    .sk-contact-box,
    .sk-form-box {
        padding: 24px;
    }

    .sk-cta {
        text-align: left;
    }

    .sk-header-top {
        display: none;
    }
}

/* ------------------------------
   Modern Refresh Overrides (v2)
------------------------------- */

:root {
    --sk-blue-950: #081937;
    --sk-blue-900: #0f2c63;
    --sk-blue-800: #1e4f9d;
    --sk-teal-600: #2f72b5;
    --sk-teal-500: #4c8eca;
    --sk-green-500: #5f9bcc;
    --sk-cyan-400: #3bb4d5;
    --sk-surface-1: #ffffff;
    --sk-surface-2: #f6f9fd;
    --sk-surface-3: #eef4fb;
    --sk-gray-900: #0f203b;
    --sk-gray-800: #2b3d58;
    --sk-gray-700: #4e617c;
    --sk-gray-600: #61768f;
    --sk-gray-500: #7389a2;
    --sk-gray-200: #d7e3f0;
    --sk-radius-xl: 28px;
    --sk-radius-lg: 22px;
    --sk-radius-md: 18px;
    --sk-shadow-sm: 0 10px 30px rgba(13, 36, 72, 0.08);
    --sk-shadow-md: 0 20px 46px rgba(11, 31, 62, 0.12);
    --sk-shadow-lg: 0 28px 60px rgba(11, 29, 56, 0.18);
}

body {
    background:
        radial-gradient(circle at 10% -8%, rgba(39, 106, 184, 0.15), transparent 38%),
        radial-gradient(circle at 90% 6%, rgba(66, 138, 205, 0.13), transparent 42%),
        linear-gradient(90deg, rgba(30, 79, 157, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(30, 79, 157, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
    background-size: auto, auto, 34px 34px, 34px 34px, auto;
    color: var(--sk-gray-700);
    font-family: 'Plus Jakarta Sans', var(--primary-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--sk-gray-900);
    font-family: 'Urbanist', var(--heading-font);
    letter-spacing: -0.022em;
}

.sk-main {
    background: transparent;
}

.sk-kicker {
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--sk-teal-600);
}

.sk-kicker::before {
    width: 38px;
    height: 1px;
}

.sk-header {
    border-bottom: 0;
    background: transparent;
}

.sk-header-top {
    background: linear-gradient(120deg, #0d2552, #1b4a8f);
    border-bottom: 0;
}

.sk-header-top__inner {
    padding: 9px 0;
}

.sk-header-main {
    padding: 12px 0;
    background: transparent;
}

.sk-header-main .container {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(16, 57, 102, 0.12);
    border-radius: 22px;
    backdrop-filter: blur(14px);
    box-shadow: var(--sk-shadow-sm);
    padding: 0 30px;
    max-width: min(1560px, calc(100% - 24px));
}

.sk-header.sticky-menu .sk-header-main .container {
    box-shadow: var(--sk-shadow-md);
    background: rgba(255, 255, 255, 0.94);
}

.sk-header-main__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    min-height: 92px;
    gap: 26px;
}

.sk-header-logo img {
    max-height: 54px;
}

.sk-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.sk-nav .navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none !important;
    gap: 10px;
    flex-wrap: nowrap;
}

.sk-nav .navigation > li {
    position: relative;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.sk-nav .navigation > li::marker,
.sk-nav .navigation li::marker {
    content: '' !important;
}

.sk-nav .navigation > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 20px;
    font-size: 15px;
    line-height: 1.1;
    white-space: nowrap;
    font-weight: 700;
    color: var(--sk-gray-800);
    transition: color 0.26s ease, background-color 0.26s ease, transform 0.26s ease;
}

.sk-nav .navigation > li > a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(19, 72, 126, 0.12), rgba(39, 178, 179, 0.2));
    opacity: 0;
    transition: opacity 0.24s ease;
}

.sk-nav .navigation > li > a > span,
.sk-nav .navigation > li > a {
    position: relative;
    z-index: 1;
}

.sk-nav .navigation > li:hover > a,
.sk-nav .navigation > li.active > a {
    color: var(--sk-blue-800);
    transform: translateY(-1px);
}

.sk-nav .navigation > li:hover > a::before,
.sk-nav .navigation > li.active > a::before {
    opacity: 1;
}

.sk-nav .navigation > li.menu-item-has-children > a {
    padding-inline-end: 40px;
}

.sk-nav .navigation > li.menu-item-has-children > a::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    line-height: 1;
    position: absolute;
    inset-inline-end: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(15, 53, 96, 0.68);
    transition: transform 0.24s ease, color 0.24s ease;
}

.sk-nav .navigation > li.menu-item-has-children:hover > a::after,
.sk-nav .navigation > li.menu-item-has-children.active > a::after {
    transform: translateY(-50%) rotate(180deg);
    color: var(--sk-blue-800);
}

.sk-nav .navigation li .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    z-index: 40;
    min-width: 280px;
    margin: 0;
    list-style: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 64, 112, 0.14);
    box-shadow: var(--sk-shadow-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.sk-nav .navigation li .sub-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sk-nav .navigation li .sub-menu li a {
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sk-gray-800);
    line-height: 1.35;
}

.sk-header-actions {
    gap: 14px;
}

.sk-header-actions .sk-btn {
    min-height: 46px;
    padding: 12px 22px;
    letter-spacing: 0.05em;
}

.sk-nav .navigation li .sub-menu li:hover > a,
.sk-nav .navigation li .sub-menu li.active > a {
    background: rgba(17, 86, 144, 0.1);
    color: var(--sk-blue-800);
}

.sk-nav .navigation > li:hover > .sub-menu,
.sk-nav .navigation > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sk-nav .navigation li .sub-menu .sub-menu {
    left: calc(100% + 8px);
    top: 0;
}

.sk-nav .navigation .dropdown-btn {
    display: none !important;
}

.sk-btn {
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.sk-btn--primary {
    background: linear-gradient(130deg, #1b4d96 0%, #2f72b5 62%, #3c9bc8 100%);
    box-shadow: 0 16px 32px rgba(24, 75, 142, 0.34);
}

.sk-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(21, 69, 132, 0.4);
}

.sk-btn--outline {
    border-color: rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.06);
}

.sk-btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.16);
}

.sk-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 132px 0 132px;
    background:
        radial-gradient(circle at 12% 18%, rgba(59, 180, 213, 0.26), transparent 45%),
        radial-gradient(circle at 88% 26%, rgba(39, 88, 168, 0.44), transparent 48%),
        linear-gradient(148deg, #081937 0%, #0f2d65 58%, #1c4f93 100%);
}

.sk-hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.sk-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    filter: saturate(1.05) contrast(1.03);
}

.sk-hero__video-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 84% 20%, rgba(59, 180, 213, 0.16), transparent 30%),
        linear-gradient(115deg, rgba(4, 14, 37, 0.88) 0%, rgba(6, 24, 60, 0.78) 50%, rgba(11, 37, 87, 0.84) 100%);
}

.sk-hero .container {
    position: relative;
    z-index: 3;
}

.sk-hero::before {
    mix-blend-mode: screen;
    opacity: 0.2;
}

.sk-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 24% 64%, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px),
        radial-gradient(circle at 31% 58%, rgba(255, 255, 255, 0.13) 0 2px, transparent 2px),
        radial-gradient(circle at 36% 66%, rgba(255, 255, 255, 0.13) 0 2px, transparent 2px),
        linear-gradient(128deg, transparent 54%, rgba(255, 255, 255, 0.11) 54%, rgba(255, 255, 255, 0.11) 55%, transparent 55%),
        linear-gradient(40deg, transparent 49%, rgba(255, 255, 255, 0.09) 49%, rgba(255, 255, 255, 0.09) 50%, transparent 50%);
    background-size: auto, auto, auto, 220px 220px, 260px 260px;
    opacity: 0.34;
}

.sk-hero__layout {
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    align-items: end;
}

.sk-hero__content {
    max-width: 760px;
}

.sk-hero h1 {
    margin: 18px 0 20px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.98;
}

.sk-hero p {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.72;
    max-width: 680px;
}

.sk-hero__actions {
    margin-top: 38px;
    gap: 14px;
}

.sk-hero__panel {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(16px);
    box-shadow: var(--sk-shadow-lg);
    padding: 24px;
    color: rgba(255, 255, 255, 0.94);
}

.sk-hero__panel-head p {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}

.sk-hero__panel-head h3 {
    margin: 8px 0 16px;
    color: #fff;
    font-size: 24px;
}

.sk-hero__metrics {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sk-hero__metric {
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(6, 30, 56, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.sk-hero__metric strong {
    display: block;
    font-family: 'Urbanist', var(--heading-font);
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.sk-hero__metric span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.45;
}

.sk-hero__contacts {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.sk-hero__contacts a {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
    line-height: 1;
}

.sk-hero-strip {
    margin-top: -56px;
    position: relative;
    z-index: 4;
}

.sk-hero-strip__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sk-hero-strip .sk-stat-card {
    border-radius: 18px;
    padding: 18px 18px;
    border: 1px solid rgba(15, 67, 116, 0.16);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: var(--sk-shadow-md);
}

.sk-hero-strip .sk-stat-card h3 {
    font-size: clamp(24px, 2vw, 32px);
    margin: 0;
}

.sk-hero-strip .sk-stat-card p {
    margin-top: 6px;
}

.sk-hero-strip + .sk-section {
    padding-top: 72px;
}

.sk-section {
    padding: clamp(78px, 8vw, 102px) 0;
}

.sk-section--alt {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--sk-surface-2) 0%, var(--sk-surface-3) 100%);
}

.sk-section--alt::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    right: -120px;
    top: -140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 72, 126, 0.12), transparent 62%);
}

.sk-section--alt::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(30, 79, 157, 0.13) 1px, transparent 0);
    background-size: 30px 30px;
    opacity: 0.18;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
    pointer-events: none;
}

.sk-section--alt .container {
    position: relative;
    z-index: 1;
}

.sk-section-head {
    margin-bottom: 40px;
}

.sk-section-head h2 {
    font-size: clamp(32px, 4.1vw, 50px);
    margin-bottom: 12px;
}

.sk-section-head p {
    font-size: 17px;
    line-height: 1.78;
}

.sk-about-media img {
    border-radius: var(--sk-radius-xl);
    box-shadow: var(--sk-shadow-md);
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.sk-about-media {
    max-width: 510px;
    margin-inline-start: auto;
}

.sk-about-head {
    max-width: 100%;
}

.sk-about-insights {
    margin-top: 24px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sk-about-insight {
    border-radius: 14px;
    border: 1px solid rgba(30, 79, 157, 0.16);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.96));
    padding: 14px;
    box-shadow: 0 12px 22px rgba(14, 43, 84, 0.08);
}

.sk-about-insight h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.25;
}

.sk-about-insight p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--sk-gray-600);
}

.sk-about-contact {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sk-about-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(30, 79, 157, 0.22);
    background: rgba(255, 255, 255, 0.92);
    color: var(--sk-blue-800);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 14px;
}

.sk-about-contact a i {
    color: var(--sk-cyan-400);
}

.sk-card,
.sk-feature-card,
.sk-news-card,
.sk-partner-card,
.sk-timeline__item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(19, 72, 126, 0.12);
    box-shadow: var(--sk-shadow-sm);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.sk-card::before,
.sk-feature-card::before,
.sk-news-card::before,
.sk-partner-card::before,
.sk-timeline__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(140deg, rgba(22, 92, 150, 0.08), transparent 52%),
        linear-gradient(160deg, rgba(76, 142, 202, 0.13), transparent 64%);
    opacity: 0;
    transition: opacity 0.24s ease;
    pointer-events: none;
}

.sk-card:hover,
.sk-feature-card:hover,
.sk-news-card:hover,
.sk-partner-card:hover,
.sk-timeline__item:hover {
    transform: translateY(-6px);
    border-color: rgba(19, 72, 126, 0.26);
    box-shadow: var(--sk-shadow-md);
}

.sk-card:hover::before,
.sk-feature-card:hover::before,
.sk-news-card:hover::before,
.sk-partner-card:hover::before,
.sk-timeline__item:hover::before {
    opacity: 1;
}

.sk-card__icon,
.sk-feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(140deg, rgba(19, 72, 126, 0.16), rgba(76, 142, 202, 0.24));
    border: 1px solid rgba(19, 72, 126, 0.12);
}

.sk-card h3,
.sk-feature-card h3,
.sk-news-card h3 {
    font-size: 22px;
    line-height: 1.24;
}

.sk-card p,
.sk-feature-card p,
.sk-news-card p,
.sk-timeline__item p {
    color: var(--sk-gray-600);
}

.sk-card__media {
    margin-bottom: 18px;
}

.sk-card__media img,
.sk-news-card__thumb img {
    height: 232px;
}

.sk-link {
    margin-top: 14px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sk-link::after {
    content: '>>';
    font-weight: 700;
}

.sk-philosophy {
    border-radius: 26px;
    border: 1px solid rgba(16, 66, 115, 0.14);
    background: linear-gradient(155deg, #ffffff, #f2f8ff 55%, #ecf5ff 100%);
    box-shadow: var(--sk-shadow-sm);
    padding: clamp(28px, 4vw, 48px);
}

.sk-philosophy blockquote {
    color: var(--sk-blue-900);
    border-left: 4px solid var(--sk-teal-600);
}

.sk-timeline {
    gap: 18px;
}

.sk-timeline__item {
    padding: 22px;
}

.sk-timeline__num {
    width: 42px;
    height: 42px;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.sk-point {
    border-radius: 14px;
    border: 1px solid rgba(14, 60, 106, 0.14);
    box-shadow: 0 8px 18px rgba(10, 36, 66, 0.05);
}

.sk-point span {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 6px rgba(65, 173, 105, 0.16);
}

.sk-partner-card {
    min-height: 148px;
}

.sk-partner-card img {
    max-width: 128px;
    max-height: 62px;
}

.sk-cta {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(130deg, #0d2749, #146284),
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent);
    box-shadow: var(--sk-shadow-lg);
}

.sk-cta::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    right: -120px;
    top: -150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 64%);
}

.sk-cta > * {
    position: relative;
    z-index: 1;
}

.sk-news-card {
    padding: 0;
}

.sk-news-card__body {
    padding: 24px;
}

.sk-news-card__body span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.sk-news-card__body h3 {
    margin-bottom: 0;
}

.sk-news-card__body h3 a {
    color: var(--sk-gray-900);
}

.sk-contact-box,
.sk-form-box {
    border-radius: 22px;
    border: 1px solid rgba(12, 56, 99, 0.14);
    box-shadow: var(--sk-shadow-sm);
}

.sk-contact-box {
    background: linear-gradient(180deg, #ffffff, #f4f9ff);
}

.sk-form-box {
    background: linear-gradient(180deg, #ffffff, #f8fcff);
}

.sk-contact-box ul li {
    font-size: 14px;
}

.sk-form-box input,
.sk-form-box textarea,
.sk-form-box select {
    background: rgba(255, 255, 255, 0.84);
}

.sk-form-box .form-control:focus,
.sk-form-box .form-select:focus,
.sk-form-box .contact-form-input:focus,
.sk-form-box input:focus,
.sk-form-box textarea:focus,
.sk-form-box select:focus {
    border-color: rgba(19, 72, 126, 0.34);
    box-shadow: 0 0 0 3px rgba(19, 72, 126, 0.12);
}

.sk-footer {
    background: linear-gradient(160deg, #071a34, #0b2a4f) !important;
}

.sk-footer__top {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sk-footer__menu h3 {
    font-size: 17px;
    letter-spacing: 0.02em;
}

.sk-footer-links a {
    transition: color 0.24s ease, transform 0.24s ease;
}

.sk-footer-links a:hover {
    transform: translateX(3px);
}

@media (prefers-reduced-motion: no-preference) {
    .sk-grid > *:nth-child(1),
    .sk-grid > *:nth-child(2),
    .sk-grid > *:nth-child(3),
    .sk-grid > *:nth-child(4),
    .sk-grid > *:nth-child(5),
    .sk-grid > *:nth-child(6),
    .sk-grid > *:nth-child(7),
    .sk-grid > *:nth-child(8) {
        animation: sk-rise-in 0.7s ease both;
    }

    .sk-grid > *:nth-child(2) {
        animation-delay: 0.06s;
    }

    .sk-grid > *:nth-child(3) {
        animation-delay: 0.12s;
    }

    .sk-grid > *:nth-child(4) {
        animation-delay: 0.18s;
    }

    .sk-grid > *:nth-child(5) {
        animation-delay: 0.24s;
    }

    .sk-grid > *:nth-child(6) {
        animation-delay: 0.3s;
    }
}

@keyframes sk-rise-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1399px) {
    .sk-hero h1 {
        font-size: clamp(38px, 6vw, 64px);
    }

    .sk-header-main .container {
        padding: 0 24px;
    }

    .sk-header-main__inner {
        min-height: 86px;
        gap: 20px;
    }

    .sk-nav .navigation {
        gap: 6px;
    }

    .sk-nav .navigation > li > a {
        padding: 11px 14px;
        font-size: 14px;
    }

    .sk-nav .navigation > li.menu-item-has-children > a {
        padding-inline-end: 34px;
    }

    .sk-header-actions .sk-btn {
        padding: 11px 20px;
        min-height: 42px;
    }

    .sk-hero-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1199px) {
    .sk-header-main .container {
        border-radius: 18px;
        padding: 0 16px;
    }

    .sk-header-main__inner {
        min-height: 78px;
        gap: 14px;
    }

    .sk-nav .navigation > li > a {
        padding: 10px 12px;
        font-size: 13px;
    }

    .sk-nav .navigation > li.menu-item-has-children > a {
        padding-inline-end: 30px;
    }

    .sk-hero {
        padding: 116px 0 118px;
    }

    .sk-hero__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .sk-hero__panel {
        max-width: 520px;
    }

    .sk-about-media {
        max-width: 100%;
    }

    .sk-about-insights {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 991px) {
    .sk-header-main .container {
        background: #fff;
        backdrop-filter: none;
    }

    .sk-header-main {
        padding: 10px 0;
    }

    .sk-hero {
        padding: 110px 0 108px;
    }

    .sk-hero-strip {
        margin-top: -42px;
    }
}

@media (max-width: 767px) {
    .sk-header-main .container {
        border-radius: 16px;
        padding: 0 14px;
    }

    .sk-btn {
        width: 100%;
    }

    .sk-hero {
        padding: 100px 0 96px;
    }

    .sk-hero h1 {
        font-size: clamp(34px, 10.2vw, 48px);
    }

    .sk-hero__metrics {
        grid-template-columns: minmax(0, 1fr);
    }

    .sk-about-contact a {
        width: 100%;
        justify-content: flex-start;
    }

    .sk-hero-strip {
        margin-top: -30px;
    }

    .sk-hero-strip__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .sk-hero-strip + .sk-section {
        padding-top: 56px;
    }
}

.sk-reactive-inquiry {
    padding-top: 28px;
    background:
        radial-gradient(circle at 50% 0%, rgba(47, 114, 181, 0.1), transparent 36%),
        linear-gradient(180deg, var(--sk-surface-2), var(--sk-surface-1));
}

.sk-reactive-inquiry__lead-copy {
    max-width: 1040px;
    margin: 0 auto 18px;
    padding: 0 12px;
}

.sk-reactive-inquiry__lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--sk-gray-600);
}

.sk-reactive-steps {
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 215px) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 0 12px;
    max-width: 1040px;
    margin: 0 auto;
}

.sk-reactive-step {
    position: relative;
}

.sk-reactive-step__badge {
    position: absolute;
    top: -18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--sk-blue-950), var(--sk-blue-800));
    color: #fff;
    box-shadow: 0 12px 24px rgba(11, 31, 62, 0.2);
}

.sk-reactive-step__badge strong {
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
    margin-right: 14px;
    padding-right: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.sk-reactive-step__badge span {
    font-size: 13px;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.sk-reactive-step__badge--wide span {
    max-width: 170px;
}

.sk-reactive-step__panel {
    min-height: 410px;
    padding: 66px 14px 22px;
    background:
        linear-gradient(180deg, rgba(11, 36, 71, 0.97), rgba(18, 58, 104, 0.94)),
        linear-gradient(180deg, var(--sk-blue-900), var(--sk-blue-800));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.sk-reactive-step__panel--compact {
    min-height: 260px;
}

.sk-reactive-step__choices {
    background: #fff;
    border: 1px solid rgba(15, 44, 99, 0.12);
    box-shadow: 0 10px 28px rgba(11, 31, 62, 0.05);
}

.sk-reactive-choice {
    display: block;
    margin: 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(15, 44, 99, 0.12);
}

.sk-reactive-choice:last-child {
    border-bottom: 0;
}

.sk-reactive-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sk-reactive-choice span {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 38px;
    padding: 10px 14px;
    background: #fff;
    color: var(--sk-gray-900);
    font-size: 13px;
    line-height: 1.35;
}

.sk-reactive-choice span::before {
    content: '';
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1.5px solid rgba(15, 44, 99, 0.44);
    flex: 0 0 auto;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.sk-reactive-choice input:checked + span::before {
    border-color: var(--sk-teal-600);
    background: linear-gradient(135deg, var(--sk-blue-800), var(--sk-teal-600));
    box-shadow: inset 0 0 0 2px #fff;
}

.sk-reactive-choice:hover span {
    background: rgba(47, 114, 181, 0.06);
}

.sk-reactive-choice--product span {
    padding-left: 12px;
}

.sk-reactive-step__check {
    width: 78px;
    height: 78px;
    margin: 42px auto 0;
    border-radius: 50%;
    background: #fff;
    color: var(--sk-blue-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 14px 30px rgba(11, 31, 62, 0.16);
}

.sk-reactive-step__spec {
    min-height: 760px;
    padding: 68px 18px 18px;
    background: #fff;
    border: 1px solid rgba(15, 44, 99, 0.14);
    box-shadow: 0 20px 46px rgba(11, 31, 62, 0.07);
}

.sk-reactive-step__spec h3 {
    margin-bottom: 8px;
    font-size: 24px;
    color: var(--sk-blue-900);
}

.sk-reactive-step__spec > p {
    margin-bottom: 16px;
    color: var(--sk-gray-600);
    font-size: 15px;
    line-height: 1.6;
}

.sk-reactive-step__section h4,
.sk-reactive-step__group h5 {
    margin-bottom: 10px;
    color: var(--sk-blue-900);
    font-size: 16px;
    font-weight: 700;
}

.sk-reactive-step__section ul,
.sk-reactive-step__group ul {
    margin: 0 0 16px;
    padding-left: 18px;
    color: var(--sk-gray-700);
}

.sk-reactive-step__section li,
.sk-reactive-step__group li {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.sk-reactive-step__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 18px;
}

.sk-reactive-cta {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 14px 0 14px;
    border: 0;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--sk-blue-800), var(--sk-teal-600));
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(15, 44, 99, 0.16);
}

.sk-reactive-form-shell {
    display: none;
    margin-top: 16px;
}

.sk-reactive-form-shell.is-open {
    display: block;
}

.sk-reactive-form-shell__inner {
    padding: 18px;
    box-shadow: none;
    border: 0;
}

.sk-reactive-form-shell .sk-form-box {
    border-radius: 0;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.sk-reactive-form .form-grp {
    margin-bottom: 0;
}

.sk-reactive-form .form-control,
.sk-reactive-form .form-select {
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(15, 44, 99, 0.14);
    background: #fff;
    color: var(--sk-gray-900);
    box-shadow: none;
}

.sk-reactive-form .form-control:focus,
.sk-reactive-form .form-select:focus {
    border-color: rgba(47, 114, 181, 0.45);
    box-shadow: 0 0 0 4px rgba(47, 114, 181, 0.1);
}

.sk-reactive-form textarea.form-control {
    min-height: 114px;
}

.sk-reactive-form .sk-btn--primary {
    width: 100%;
    min-height: 40px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 1199px) {
    .sk-reactive-steps {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .sk-reactive-step__panel,
    .sk-reactive-step__panel--compact,
    .sk-reactive-step__spec {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .sk-reactive-steps {
        padding: 0 0 0 0;
    }

    .sk-reactive-step__badge {
        left: 12px;
        top: -14px;
        min-height: 44px;
        padding: 0 12px;
    }

    .sk-reactive-step__badge strong {
        font-size: 18px;
        margin-right: 10px;
        padding-right: 10px;
    }

    .sk-reactive-step__badge span {
        font-size: 11px;
    }

    .sk-reactive-step__panel,
    .sk-reactive-step__spec {
        padding-left: 10px;
        padding-right: 10px;
    }

    .sk-reactive-step__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
