/* Styles for template-sk-page.php */

.sk-container {
    padding: 0 3em;
    max-width: none;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

.sk-hero-section {
    padding-top: 48px;
    padding-bottom: 48px;
    position: relative;
    overflow-x: clip;
}

/* Rounded blue card for the hero section content */
.sk-hero-card {
    background-color: #4395f2;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    padding: 0;
    min-height: 560px;
    box-sizing: border-box;
    z-index: 1;
}

/* Left column content wrapper with left/top padding */
.sk-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    position: relative;
    z-index: 5;
    text-align: left;
    padding: 80px 0 80px 56px;
}

.sk-container .sk-hero-title {
    font-family: 'MuseoSansCyrl', sans-serif;
    font-size: 52px;
    line-height: 108%;
    color: #FFFFFF;
    font-weight: 900;
    margin: 0;
    letter-spacing: 0.52px;
}

.sk-hero-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 140%;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
}

/* Button & Free badge wrapper */
.sk-hero-btn-wrap {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-top: 12px;
    align-self: flex-start;
}

a.sk-hero-btn {
    display: inline-block;
    background-color: #FF9F00;
    padding: 20px 30px;
    border-radius: 100px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.32px;
    transition: background-color 0.3s;
}

a.sk-hero-btn:hover {
    background-color: #e68e00;
}

/* Red "безкоштовно" badge overlapping button */
.sk-hero-badge-free {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background-color: #E93C26;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    transform: rotate(-1deg);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.28px;
}

/* Right column graphic wrapper - in-flow aligned to bottom-right of card without gap */
.sk-hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 3;
    height: 100%;
}

.sk-hero-img {
    max-width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    object-position: bottom right;
    display: block;
}

/* Floating status/flag/graduation cap badges */
.sk-badge {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    user-select: none;
    box-sizing: border-box;
}

.sk-badge.badge-flag {
    background-color: #FF9F00;
    border-radius: 9.3px;
    width: 80px;
    height: 80px;
    font-size: 51px;
    transform: rotate(-13.35deg);
    left: 42px;
    top: 20px;
}

.sk-badge.badge-grad {
    background-color: #FFFFFF;
    border-radius: 7.4px;
    width: 66px;
    height: 66px;
    font-size: 46px;
    transform: rotate(11.99deg);
    left: 31.7%;
    bottom: 50px;
}

/* Section 2 (Advantages) styles */
.sk-advantages-section {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.sk-advantages-section .sk-container {
    position: relative;
}

.sk-container .sk-advantages-title {
    font-family: 'MuseoSansCyrl', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 108%;
    color: #090909;
    text-align: center;
    max-width: 894px;
    margin: 0 auto 60px auto;
}

/* Pencil Badge */
.sk-pencil-badge {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #090909;
    border-radius: 50%;
    z-index: 10;
    box-sizing: border-box;
    width: 101px;
    height: 101px;
    left: 86px;
    top: 0;
    transform: rotate(-6.86deg);
}

.sk-pencil-badge-inner {
    background-color: #4395F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 90%;
}

.sk-pencil-badge span {
    font-size: 48px;
    line-height: 1;
}

/* Grid layout */
.sk-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sk-card {
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
    min-height: 212px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.sk-card.card-blue {
    background-color: #EAF3FB;
}

.sk-card.card-gray {
    background-color: #F8F8F8;
}

/* Columns Spans */
.sk-card.sk-card-1 {
    grid-column: span 1;
}

.sk-card.sk-card-2 {
    grid-column: span 1;
}

.sk-card.sk-card-3 {
    grid-column: span 2;
    position: relative;
}

.sk-card.sk-card-4 {
    grid-column: span 1;
}

.sk-card.sk-card-5 {
    grid-column: span 2;
    position: relative;
    overflow: hidden;
}

.sk-card.sk-card-6 {
    grid-column: span 1;
}

.sk-card-content-wrap {
    max-width: 100%;
}

.sk-card.sk-card-3 .sk-card-content-wrap,
.sk-card.sk-card-5 .sk-card-content-wrap {
    max-width: 342px;
    /* leave room for right-aligned items */
}

.sk-container .sk-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #090909;
    line-height: 132%;
    margin: 0 0 16px 0;
}

.sk-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #090909;
    line-height: 144%;
    margin: 0;
}

/* Card 3 Floating tags (financial) */
.sk-card-3-tags-wrap {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 220px;
    height: calc(100% - 40px);
}

.sk-card-3-tag {
    position: absolute;
    background-color: #4395f2;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.28px;
}

.sk-card-3-tag.tag-1 {
    right: 70px;
    top: 34px;
    transform: rotate(6.43deg);
}

.sk-card-3-tag.tag-2 {
    right: 20px;
    top: 83px;
    transform: rotate(-4.79deg);
}

.sk-card-3-tag.tag-3 {
    right: 40px;
    top: 134px;
    transform: rotate(1.2deg);
}

.sk-card-3-money-badge {
    position: absolute;
    right: 10px;
    top: 0;
    background-color: #4395f2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    transform: rotate(6.43deg);
}

.sk-card-3-money-badge span {
    display: block;
    transform: rotate(-6.43deg);
}

/* Card 5 image wrapper */
.sk-card-5-image-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 264px;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
}

.sk-card-5-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section 3 (Who is it for) styles */
.sk-who-section {
    padding-top: 48px;
    padding-bottom: 48px;
    position: relative;
    z-index: 1;
}

.sk-who-card-bg {
    min-height: 800px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #EAF3FB;
    /* fallback color */
    padding: 28px;
    box-sizing: border-box;
    z-index: 1;
}

.sk-who-card {
    background-color: #EAF3FB;
    border-radius: 20px;
    padding: 40px 28px;
    width: 706px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-sizing: border-box;
    z-index: 5;
    position: relative;
}

.sk-container .sk-who-title {
    font-family: 'MuseoSansCyrl', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 116%;
    color: #090909;
    margin: 0;
}

.sk-who-content {
    color: #090909;
    font-family: 'Montserrat', sans-serif;
}

.sk-who-content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    margin: 0 0 16px 0;
}

.sk-who-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sk-who-content ul li {
    position: relative;
    padding-left: 36px;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 0;
}

.sk-who-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-color: #4395F2;
    border-radius: 50%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M3 6l2 2 4-4"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.sk-who-btn-wrap {
    display: flex;
}

a.sk-who-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4395F2;
    color: #FFFFFF !important;
    border-radius: 100px;
    padding: 20px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    letter-spacing: 0.32px;
    text-decoration: none;
    cursor: pointer;
}

/* Decorative absolute vector positioning */
.sk-vector-1772 {
    position: absolute;
    right: -65px;
    top: -29px;
    width: 238px;
    height: 190px;
    z-index: 2;
    pointer-events: none;
}

.sk-vector-1772 img,
.sk-vector-1725 img {
    width: 100%;
    height: 100%;
    display: block;
}

.sk-vector-1725 {
    position: absolute;
    left: unset;
    right: -33px;
    top: unset;
    bottom: -98px;
    width: 580px;
    height: 258px;
    z-index: 2;
    pointer-events: none;
}

/* Section 4 (Admission Steps) styles */
.sk-steps-section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.sk-steps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
}

.sk-steps-header-left {
    width: 634px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sk-steps-badge-wrap {
    display: flex;
}

.sk-steps-badge {
    background-color: #e93c26;
    color: #FFFFFF;
    font-family: 'MuseoSansCyrl', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 8px;
    line-height: normal;
    display: inline-block;
}

.sk-container .sk-steps-title {
    font-family: 'MuseoSansCyrl', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 108%;
    color: #090909;
    margin: 0;
}

.sk-steps-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #090909;
    margin: 0;
}

.sk-steps-header-right {
    width: 580px;
    display: flex;
    justify-content: flex-end;
}

.sk-steps-graphic {
    width: 100%;
    height: auto;
    max-width: 580px;
    display: block;
}

.sk-steps-graphic-placeholder {
    width: 580px;
    height: 280px;
    background-color: #F7F6F4;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(9, 9, 9, 0.4);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    gap: 12px;
}

.sk-steps-placeholder-icon {
    font-size: 40px;
}

/* Steps Carousel cells spacing */
.sk-steps-carousel-wrap {
    position: relative;
    width: 100%;
}

.sk-steps-carousel {
    width: 100%;
}

.sk-step-cell {
    width: calc(33.333% - 13.333px);
    margin-right: 20px;
}

.sk-step-card {
    background-color: #F7F6F4;
    border-radius: 20px;
    padding: 20px;
    height: 206px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.sk-step-number-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sk-step-dashed-circle {
    position: absolute;
    inset: 3px;
    border: 1.5px dashed rgba(9, 9, 9, 0.15);
    border-radius: 50%;
}

.sk-step-inner-circle {
    position: relative;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.sk-step-inner-circle.bg-orange {
    background-color: #FFA500;
}

.sk-step-inner-circle.bg-red {
    background-color: #E93C26;
}

.sk-step-inner-circle.bg-blue {
    background-color: #4395F2;
}

.sk-step-inner-circle span {
    color: #FFFFFF;
    font-family: 'MuseoSansCyrl', sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 100%;
}

.sk-step-card-title {
    font-family: 'MuseoSansCyrl', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 136%;
    color: #090909;
    margin: 0;
}

.sk-step-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 144%;
    color: #090909;
    margin: 0;
}

/* Custom Navigation buttons below */
.sk-steps-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 20px;
}

.sk-steps-btn,
.sk-steps-btn:hover,
.sk-steps-btn:focus {
    background: none;
    border: none;
    outline: none;
    padding: 0;
    color: #FFA500;
    width: 28px;
    height: 44px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-shadow: none;
}

.sk-steps-btn:hover {
    opacity: 0.8;
}

.sk-steps-btn svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Section 5 (Consultation Booking Form) styles */
.sk-booking-section {
    padding: 60px 0;
    overflow: visible;
    position: relative;
}

.sk-booking-card-bg {
    background-color: #e93c26;
    border-radius: 28px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: visible;
    z-index: 1;
}

/* Corner Grid Texture */
.sk-booking-texture {
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.sk-booking-texture img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Pushpin badge positioning */
.sk-booking-pushpin {
    position: absolute;
    right: 28px;
    top: -53px;
    width: 120px;
    height: 120px;
    z-index: 10;
}

.sk-booking-pushpin img {
    width: 100%;
    height: 100%;
    display: block;
}

.sk-booking-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.sk-container .sk-booking-title {
    font-family: 'MuseoSansCyrl', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 116%;
    color: #FFFFFF;
    margin: 0;
}

.sk-booking-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.sk-booking-tags-label {
    font-family: 'MuseoSansCyrl', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    text-transform: uppercase;
    white-space: nowrap;
}

.sk-booking-tag {
    background-color: #ff9f00;
    border-radius: 8px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
}

.sk-booking-tag svg {
    width: 14px;
    height: 14px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.sk-booking-tag span {
    font-family: 'MuseoSansCyrl', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Right Form box wrapper */
.sk-booking-form-wrap {
    background-color: #ed5b49;
    border-radius: 20px;
    padding: 44px 28px;
    flex: 1;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* Form layouts */
.sk-booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.sk-booking-form-wrap .wpcf7-not-valid-tip {
    color: #fff;
}

.sk-booking-form-wrap input[type="text"],
.sk-booking-form-wrap input[type="tel"],
.sk-booking-form-wrap select {
    width: 100% !important;
    height: 58px !important;
    background-color: #FFFFFF !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0 20px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #090909 !important;
    box-sizing: border-box !important;
}

.sk-booking-form-wrap input::placeholder {
    color: #090909 !important;
    opacity: 1 !important;
}

.sk-booking-form-wrap select {
    opacity: 1 !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23090909"><path d="M7 10l5 5 5-5H7z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    background-size: 16px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.sk-booking-form-wrap input[type="submit"] {
    width: 100% !important;
    height: 58px !important;
    background-color: #FF9F00 !important;
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.32px !important;
    border: none !important;
    border-radius: 100px !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: none !important;
    outline: none !important;
}

.sk-booking-form-wrap input[type="submit"]:hover {
    background-color: #E08B00 !important;
    opacity: 0.9 !important;
}

/* Fix for WPCF7 spans */
.sk-booking-form-wrap .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Styling for CF7 row-based column structures */
.camp-booking-cf7 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.camp-booking-cf7-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

.camp-booking-cf7-column {
    flex: 1;
    min-width: 0;
}

.sk-booking-submit-wrap p {
    margin-bottom: 0;
}

/* Section 6 (Pricing / Packages) styles */
.sk-prices-section {
    background-color: #F7F6F4;
    padding: 140px 0;
    margin-top: 100px;
    position: relative;
}

.sk-prices-section::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,100 L1440,100 L1440,0 C1080,100 360,100 0,0 Z' fill='%23F7F6F4'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}

.sk-prices-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    text-align: center;
}

.sk-prices-badge-wrap {
    display: flex;
}

.sk-prices-badge {
    background-color: #4395F2;
    color: #FFFFFF;
    font-family: 'MuseoSansCyrl', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 8px;
    line-height: normal;
    display: inline-block;
}

.sk-container .sk-prices-title {
    font-family: 'MuseoSansCyrl', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 108%;
    color: #090909;
    margin: 0;
    max-width: 894px;
}

.sk-prices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

/* Price Card layout */
.sk-price-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Card Header */
.sk-price-header-wrap {
    height: 160px;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.sk-price-header-texture {
    position: absolute;
    right: -124px;
    top: -31%;
    width: 438px;
    height: 438px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.pkg-basic .sk-price-header-wrap {
    background-color: #4395F2;
}

.pkg-premium .sk-price-header-wrap {
    background-color: #E93D28;
}

.sk-price-badge {
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 6px 12px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.sk-price-badge span {
    color: #FFFFFF;
    font-family: 'MuseoSansCyrl', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

.sk-price-value {
    position: absolute;
    left: 20px;
    top: 89px;
    z-index: 2;
}

.sk-price-value span {
    color: #FFFFFF;
    font-family: 'MuseoSansCyrl', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 116%;
}

/* Header Floating Tags Decorations */
.sk-price-decorations {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 120px;
    z-index: 3;
    pointer-events: none;
}

.sk-price-decor-tag {
    position: absolute;
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
}

.sk-price-decor-tag span {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 140%;
}

.sk-price-decor-emoji {
    position: absolute;
    background-color: #FF9F00;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-price-decor-emoji span {
    font-size: 38px;
    line-height: 1;
}

/* Basic decorations positions */
.pkg-basic .decor-orange {
    background-color: #FF9F00;
    right: 35px;
    top: 40px;
}

.pkg-basic .decor-red {
    background-color: #E93D28;
    right: 32px;
    top: 75px;
}

.pkg-basic .sk-price-decor-emoji {
    right: 120px;
    top: 15px;
}

/* Premium decorations positions */
.pkg-premium .decor-blue {
    background-color: #4395F2;
    right: 83px;
    top: 25px;
}

.pkg-premium .decor-orange-dark {
    background-color: #FF9F00;
    right: 38px;
    top: 60px;
}

.pkg-premium .sk-price-decor-emoji {
    right: 125px;
    top: 45px;
}

/* Card Body */
.sk-price-body-wrap {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    box-sizing: border-box;
}

.sk-price-content {
    font-family: 'Montserrat', sans-serif;
    color: #090909;
    font-size: 16px;
    line-height: 144%;
    margin-bottom: 28px;
}

.sk-price-content strong {
    font-size: 18px;
    font-weight: 600;
}

.sk-price-content p {
    font-weight: 500;
    font-size: 16px;
    line-height: 144%;
    margin: 0 0 16px 0;
}

.sk-price-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sk-price-content ul li {
    position: relative;
    padding-left: 24px;
    font-weight: 500;
}

.sk-price-content ul li::before {
    content: "\2726";
    position: absolute;
    left: 0;
    top: 1px;
    color: #FF9F00;
    font-size: 20px;
    line-height: 1;
}

/* Card buttons */
.sk-price-actions {
    display: flex;
    gap: 24px;
    width: 100%;
}

.sk-price-btn-more {
    display: none;
    /* hidden as per request */
    flex: 1;
    height: 58px;
    border: 2px solid;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #090909;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.pkg-basic .sk-price-btn-more {
    border-color: #4395F2;
}

.pkg-premium .sk-price-btn-more {
    border-color: #E93D28;
}

.sk-price-btn-more:hover {
    opacity: 0.8;
}

.sk-price-btn-cta {
    flex: 1;
    height: 58px;
    background-color: #FF9F00;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.32px;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    text-align: center;
}

.sk-price-btn-cta:hover {
    background-color: #E08B00;
    color: #fff !important;
}

/* Section 7 (Consultation Card) styles */
.sk-consult-section {
    margin-top: 100px;
    margin-bottom: 100px;
    position: relative;
}

.sk-consult-card {
    background-color: #eaf3fb;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 472px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 28px;
    box-sizing: border-box;
}

.sk-consult-info {
    background-color: #ffefed;
    border-radius: 20px;
    padding: 40px 28px;
    width: 706px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-sizing: border-box;
    z-index: 5;
    position: relative;
}

.sk-consult-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.sk-container .sk-consult-title {
    font-family: 'MuseoSansCyrl', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 116%;
    color: #090909;
    margin: 0;
    width: 100%;
}

.sk-consult-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    color: #090909;
    margin: 0;
    width: 100%;
}

.sk-consult-btn {
    height: 58px;
    background-color: #e93d28;
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
    align-self: flex-start;
    letter-spacing: 0.32px;
    box-sizing: border-box;
    border: none;
}

.sk-consult-btn:hover {
    background-color: #ff9f00;
    color: #FFFFFF !important;
}

/* Floating Curve Vectors Positions */
.sk-consult-vector-1725,
.sk-consult-vector-1772 {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

.sk-consult-vector-1725 img,
.sk-consult-vector-1772 img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Vector 1772: left curve */
.sk-consult-vector-1772 {
    bottom: -26.73px;
    right: 258.44px;
    width: 286.56px;
    height: 130.73px;
}

/* Vector 1725: right curve */
.sk-consult-vector-1725 {
    bottom: -66.8px;
    right: -54.06px;
    width: 381.06px;
    height: 623.8px;
}

/* Section 8 (Popular Directions) styles */
.sk-directions-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sk-directions-inner {
    max-width: 1129px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.sk-directions-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    text-align: center;
}

.sk-directions-badge-wrap {
    display: flex;
}

.sk-directions-badge {
    background-color: #4395F2;
    color: #FFFFFF;
    font-family: 'MuseoSansCyrl', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 8px;
    line-height: normal;
    display: inline-block;
}

.sk-container .sk-directions-title {
    font-family: 'MuseoSansCyrl', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 108%;
    color: #090909;
    margin: 0;
    max-width: 894px;
}

.sk-directions-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    color: #090909;
    max-width: 628px;
    margin: 12px 0 0 0;
}

.sk-directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.sk-direction-pill {
    border-radius: 100px;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #090909;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.04);
}

.sk-direction-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
}

/* Decorative Emojis styles */
.sk-decor-emoji {
    position: absolute;
    pointer-events: none;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
}

.sk-decor-emoji-rotate {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-decor-emoji-inner {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-decor-emoji-inner span {
    font-size: 34px;
    line-height: 1;
}

/* Desktop Emoji Positions */
.sk-directions-section .emoji-1 {
    top: 175px;
}

.sk-directions-section .emoji-1 .sk-decor-emoji-rotate {
    transform: rotate(-8deg);
}

.sk-directions-section .emoji-2 {
    top: 175px;
    right: 20px;
}

.sk-directions-section .emoji-2 .sk-decor-emoji-rotate {
    transform: rotate(8deg);
}

.sk-directions-section .emoji-3 {
    bottom: -58px;
    right: calc(50% - 240px);
}

.sk-directions-section .emoji-3 .sk-decor-emoji-rotate {
    transform: rotate(-5deg);
}

.sk-directions-section .mobile-top-only {
    display: none;
}

/* Section 9 (Universities Carousel) styles */
.course-section-6 {
    padding: 140px 0;
    background: #F7F6F4;
    position: relative;
    border-bottom-left-radius: 50% 100px;
    border-bottom-right-radius: 50% 100px;
}

.course-section-6 .sk-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.course-section-6 .sec7-pretitle {
    max-width: 350px;
}

.course-section-6 .sec7-top-block {
    margin-bottom: 8px;
}

.course-section-6 .sec7-top-block .sec7-title {
    color: #090909;
    text-align: center;
    font-family: "MuseoSansCyrl";
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 108%;
    /* 51.84px */
}

.course-section-6 .university-main-block {
    width: 100%;
}

.university-carousel {
    width: 100%;
    height: 700px;
}

.university-item {
    width: calc(50% - 20px);
    height: 100%;
    margin-bottom: 40px;
    margin-right: 20px;

    background: #fff;
    padding: 16px 16px 24px 16px;
    border-radius: 20px;

    overflow-y: auto;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.university-item .ui-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
}

.university-item .ui-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.university-item .ui-content-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 120%;

    color: #090909;
}

.university-item .ui-content-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.university-item .ui-content-meta .ui-meta-item {
    padding: 8px;
    border-radius: 8px;
    display: flex;
    gap: 5px;

    background: #FFEFED;
}

.university-item .ui-content-meta .ui-meta-item:nth-child(2) {
    background: #EAF3FB;
}

.university-item .ui-content-meta .ui-meta-item svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.university-item .ui-content-meta .ui-meta-item span {
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;

    color: #090909;
}

.university-item .ui-tabs {
    display: flex;
    flex-direction: column;
}

.university-item .ui-tab-item {
    padding: 12px 0;

    border-top: 1px solid #0909091A;
    border-bottom: 1px solid #0909091A;

    display: flex;
    flex-direction: column;
    gap: 12px;

    cursor: pointer;
}

.university-item .ui-tab-item .tab-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.university-item .ui-tab-item .tab-item-header h3 {
    margin: 0;

    font-size: 18px;
    font-weight: 600;
    line-height: 100%;

    color: #090909;
}

.university-item .ui-tab-item .tab-item-content p,
.university-item .ui-tab-item .tab-item-content span {
    margin: 0;

    font-size: 16px;
    font-weight: 500;
    line-height: 140%;

    color: #090909;
}

.university-item .ui-tab-item .tab-item-content p {
    margin-bottom: 5px;
}

/* Tab collapsed/expanded states */
.ui-tab-item .tab-item-content {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ui-tab-item.active .tab-item-content {
    display: block;
    max-height: 500px;
}

.tab-arrow {
    transition: transform 0.3s ease;
}

.ui-tab-item.active .tab-arrow {
    transform: rotate(180deg);
}

.university-carousel .flickity-prev-next-button svg {
    display: none;
}

.university-carousel .flickity-prev-next-button,
.university-carousel .flickity-prev-next-button:hover,
.university-carousel .flickity-prev-next-button:focus {
    width: 40px;
    height: 40px;
    background: transparent;
    box-shadow: none;
    border: none;
}

.university-carousel .flickity-prev-next-button.previous {
    background: url('https://dyvys.org/wp-content/uploads/2026/04/arr-prev.svg') center/contain no-repeat;
    left: -35px;
}

.university-carousel .flickity-prev-next-button.next {
    background: url('https://dyvys.org/wp-content/uploads/2026/04/arr-next.svg') center/contain no-repeat;
    right: -35px;
}

.university-carousel .flickity-page-dots {
    display: none;
}


/* Section 10 (Student Budget) styles */
.sk-budget-section {
    background-color: #FFFFFF;
    padding: 120px 0;
    margin-top: 60px;
    position: relative;
}

.sk-budget-section::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,100 L1440,100 L1440,0 C1080,100 360,100 0,0 Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    transform: scaleX(-1);
}

.sk-budget-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.sk-budget-badge-wrap {
    display: flex;
    justify-content: center;
}

.sk-budget-badge {
    background-color: #e93d28;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-family: "MuseoSansCyrl", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
}

.sk-budget-title {
    color: #090909;
    text-align: center;
    font-family: "MuseoSansCyrl", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 108%;
    margin: 0;
}

.sk-budget-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px auto 0 auto;
    width: 100%;
}

.sk-budget-card {
    background-color: #f7f6f4;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
}

.sk-budget-card.card-wide {
    grid-column: span 3;
}

.sk-budget-card-inner {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.sk-budget-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 6.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sk-budget-icon-wrap span {
    font-size: 44px;
    line-height: 1.16;
}

.sk-budget-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.sk-budget-label {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.44;
    color: #090909;
    margin: 0;
}

.sk-budget-value {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #090909;
    margin: 0;
}

.sk-budget-card.card-wide .sk-budget-value {
    font-size: 20px;
}

.sk-budget-desc {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.44;
    color: #090909;
    margin: 4px 0 0 0;
}


/* Section 11 (Team & Stats) styles */
.sk-team-section {
    background-color: #FFFFFF;
    padding: 0;
    padding-bottom: 60px;
    position: relative;
}

.sk-team-promo-card {
    background-color: #ff9f00;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.sk-team-promo-inner {
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: space-between;
    padding: 28px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.sk-team-text-card {
    width: calc(55% - 15px);
    background: #ffeed6;
    border-radius: 20px;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sk-team-title {
    font-family: "MuseoSansCyrl", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.16;
    color: #090909;
    margin: 0;
}

.sk-team-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sk-team-subtitle {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: #090909;
    margin: 0;
}

.sk-team-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sk-team-check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sk-team-check-icon {
    width: 24px;
    height: 24px;
    border-radius: 100px;
    background-color: #e93d28;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sk-team-check-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: #090909;
    margin: 0;
}

.sk-team-image-wrap {
    width: calc(45% - 15px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: -28px;
    margin-right: -28px;
    align-self: flex-end;
    height: 422px;
}

.sk-team-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.sk-team-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 40px;
}

.sk-stat-card {
    background-color: #f7f6f4;
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.sk-stat-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 54px;
}

.sk-stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sk-stat-number {
    font-family: "MuseoSansCyrl", sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 100%;
    color: #090909;
    margin: 0;
}

.sk-stat-desc {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.32;
    color: #090909;
    margin: 0;
}


/* Section 12 (FAQ Accordion) styles */
.sk-faq-section {
    background-color: #FFFFFF;
    padding: 120px 0;
    position: relative;
}

.sk-faq-star-badge {
    position: absolute;
    top: -60px;
    right: 60px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
}

.sk-faq-star-badge-outer {
    width: 90px;
    height: 90px;
    border: 1.5px dashed #090909;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(6.7deg);
}

.sk-faq-star-badge-inner {
    width: 78px;
    height: 78px;
    background: #E93D28;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-faq-star-badge-star {
    font-size: 48px;
    line-height: 1;
    text-align: center;
    display: inline-block;
}

.sk-faq-title {
    font-family: "MuseoSansCyrl", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.08;
    text-align: center;
    color: #090909;
    margin: 0 0 40px 0;
}

.sk-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.sk-faq-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sk-faq-item {
    background-color: #f7f6f4;
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sk-faq-item:hover {
    background-color: #efeeea;
}

.sk-faq-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.sk-faq-item-q-left {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex: 1;
}

.sk-faq-item-icon {
    font-size: 28px;
    line-height: 1;
    margin-top: -2px;
    flex-shrink: 0;
}

.sk-faq-item-question {
    font-family: "MuseoSansCyrl", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #090909;
    margin: 0;
}

.sk-faq-item-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.sk-faq-item.active .sk-faq-item-arrow {
    transform: rotate(180deg);
}

.sk-faq-item-answer {
    display: none;
    padding-top: 20px;
}

.sk-faq-item-answer p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #090909;
    margin: 0;
}


/* Section 13 (Final Consult) styles */
.sk-final-section {
    background-color: #FFFFFF;
    padding: 0 0 40px 0;
    position: relative;
}

.sk-final-box {
    background-color: #4395f2;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 60px 56px;
}

.sk-final-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 5;
}

.sk-final-title {
    font-family: "MuseoSansCyrl", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.16;
    color: #FFFFFF;
    margin: 0;
}

.sk-final-desc {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0;
}

.sk-final-btn {
    background-color: #ff9f00;
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    padding: 0 40px;
    width: fit-content;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sk-final-btn:hover {
    background-color: #e08b00;
    color: #FFFFFF;
}

.sk-final-desktop-graphic {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 546px;
    height: 546px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 2;
    pointer-events: none;
}

.sk-final-desktop-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}


/* ==========================================================================
   RESPONSIVENESS AND MEDIA QUERIES (Grouped at the bottom)
   ========================================================================== */

@media (max-width: 1024px) {
    .sk-hero-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .sk-hero-card {
        grid-template-columns: 1fr;
        padding: 0;
        border-radius: 28px;
        text-align: center;
    }

    .sk-hero-content {
        align-items: center;
        text-align: center;
        padding: 80px 40px 0 40px;
    }

    .sk-container .sk-hero-title {
        font-size: 48px;
    }

    .sk-hero-btn-wrap {
        align-self: center;
    }

    .sk-hero-image-wrap {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        width: 100%;
        margin-top: 40px;
    }

    .sk-hero-img {
        max-width: unset;
        max-height: unset;
        width: 100%;
        height: auto;
        display: block;
        transform: none;
    }

    /* Reposition badges for tablet layout flanking the text content */
    .sk-badge.badge-flag {
        left: 40px;
        top: 336px;
        width: 66px;
        height: 66px;
        font-size: 42px;
    }

    .sk-badge.badge-grad {
        left: auto;
        right: 40px;
        bottom: auto;
        top: 330px;
        width: 66px;
        height: 66px;
        font-size: 42px;
    }

    /* Section 2 (Advantages) tablet styles */
    .sk-advantages-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .sk-container .sk-advantages-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .sk-pencil-badge {
        width: 90px;
        height: 90px;
        left: auto;
        right: 40px;
        top: -185px;
        transform: rotate(-6.86deg);
    }

    .sk-pencil-badge span {
        font-size: 40px;
    }

    .sk-advantages-grid {
        grid-template-columns: 1fr;
    }

    .sk-card.sk-card-1,
    .sk-card.sk-card-2,
    .sk-card.sk-card-3,
    .sk-card.sk-card-4,
    .sk-card.sk-card-5,
    .sk-card.sk-card-6 {
        grid-column: span 1;
    }

    .sk-card.sk-card-3 .sk-card-content-wrap,
    .sk-card.sk-card-5 .sk-card-content-wrap {
        max-width: 360px;
    }

    /* Section 3 (Who is it for) tablet styles */
    .sk-who-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .sk-who-card-bg {
        padding: 28px;
        min-height: 1100px;
    }

    .sk-who-card {
        width: 632px;
    }

    .sk-container .sk-who-title {
        font-size: 36px;
    }

    .sk-vector-1772 {
        right: auto;
        left: auto;
        right: 608px;
        /* positioned left-ish relative to container width */
        top: 758px;
        width: 144px;
        height: 235px;
        transform: rotate(216deg);
    }

    .sk-vector-1725 {
        left: auto;
        right: -105px;
        top: 915px;
        width: 580px;
        height: 258px;
    }

    /* Section 4 (Admission Steps) tablet styles */
    .sk-steps-section {
        padding: 40px 0;
    }

    .sk-steps-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .sk-steps-header-left {
        width: 100%;
        align-items: center;
    }

    .sk-steps-badge {
        font-size: 16px;
    }

    .sk-container .sk-steps-title {
        font-size: 40px;
        text-align: center;
    }

    .sk-steps-desc {
        text-align: center;
    }

    .sk-steps-header-right {
        width: 100%;
        justify-content: center;
    }

    .sk-steps-graphic {
        max-width: 620px;
    }

    .sk-steps-graphic-placeholder {
        width: 100%;
        max-width: 620px;
        height: 280px;
    }

    .sk-step-cell {
        width: calc(50% - 10px);
    }

    .sk-step-card-title {
        font-size: 18px;
    }

    .sk-step-card-desc {
        font-size: 16px;
    }

    /* Section 5 (Consultation Booking Form) tablet styles */
    .sk-booking-section {
        padding: 40px 0;
    }

    .sk-booking-card-bg {
        grid-template-columns: 1fr;
        padding: 44px 28px;
        gap: 36px;
    }

    .sk-booking-texture {
        display: none;
        /* hidden on tablet/mobile as per request */
    }

    .sk-booking-content {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .sk-container .sk-booking-title {
        font-size: 32px;
        text-align: center;
    }

    .sk-booking-tags-wrap {
        justify-content: center;
    }

    .sk-booking-form-wrap {
        width: 100%;
    }

    .sk-booking-pushpin {
        right: 16px;
        top: -45px;
        width: 100px;
        height: 100px;
    }

    /* Section 6 (Pricing / Packages) tablet styles */
    .sk-prices-section {
        padding: 100px 0 60px 0;
        margin-top: 60px;
    }

    .sk-prices-section::before {
        height: 60px;
    }

    .sk-prices-header {
        margin-bottom: 30px;
    }

    .sk-container .sk-prices-title {
        font-size: 38px;
    }

    .sk-prices-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 600px;
        margin: 0 auto;
    }

    .sk-price-header-wrap {
        height: 140px;
    }

    .sk-price-header-texture {
        width: 320px;
        height: 320px;
        right: -160px;
    }

    .sk-price-value {
        top: 75px;
    }

    .sk-price-value span {
        font-size: 36px;
    }

    /* Section 7 (Consultation Card) tablet styles */
    .sk-consult-section {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .sk-consult-card {
        min-height: 560px;
    }

    .sk-consult-info {
        width: 632px;
    }

    .sk-container .sk-consult-title {
        font-size: 36px;
    }

    .sk-consult-vector-1772 {
        bottom: -80.8px;
        right: 539.04px;
        width: 240.96px;
        height: 308.8px;
        transform: rotate(45deg);
    }

    .sk-consult-vector-1725 {
        bottom: -168.58px;
        right: -173.36px;
        width: 629.36px;
        height: 407.58px;
        transform: rotate(51deg);
    }

    /* Section 8 (Popular Directions) tablet styles */
    .sk-directions-section {
        padding: 60px 0;
    }

    .sk-container .sk-directions-title {
        font-size: 38px;
    }

    .sk-directions-desc {
        font-size: 16px;
    }

    .sk-directions-section .emoji-1 {
        top: 217px;
        right: 11px;
    }

    .sk-directions-section .emoji-2 {
        left: -14px;
        top: 211px;
    }

    .sk-directions-section .emoji-3 {
        bottom: -38px;
        left: 0;
    }

    /* Section 9 (Universities Carousel) tablet styles */
    .course-section-6 {
        padding: 60px 0;
    }

    .course-section-6 .sk-container {
        gap: 12px;
    }

    .university-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .university-item .ui-image img {
        height: 200px;
    }

    .university-carousel .flickity-prev-next-button {
        top: auto;
        bottom: -65px;
        transform: translateY(0);
    }

    .university-carousel .flickity-prev-next-button.previous {
        left: calc(50% - 50px);
    }

    .university-carousel .flickity-prev-next-button.next {
        right: auto;
        left: calc(50% + 10px);
    }

    .course-section-6 .sec7-top-block .sec7-title {
        font-size: 40px;
    }

    /* Section 10 (Student Budget) tablet overrides */
    .sk-budget-section {
        padding: 60px 0;
        margin-top: 60px;
    }

    .sk-budget-section::before {
        height: 60px;
    }

    .sk-budget-title {
        font-size: 40px;
    }

    .sk-budget-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sk-budget-card:nth-child(5),
    .sk-budget-card.card-wide {
        grid-column: 1 / -1;
    }

    /* Section 11 (Team & Stats) tablet overrides */
    .sk-team-section {
        padding: 0;
        padding-bottom: 40px;
    }

    .sk-team-promo-inner {
        flex-direction: column;
        gap: 28px;
        padding: 20px 20px 0 20px;
    }

    .sk-team-text-card {
        width: 100%;
    }

    .sk-team-image-wrap {
        width: 100%;
        margin: 0;
        height: 492px;
    }

    .sk-team-title {
        font-size: 36px;
    }

    .sk-team-stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Section 12 (FAQ Accordion) tablet overrides */
    .sk-faq-section {
        padding: 60px 0;
    }

    .sk-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sk-faq-star-badge {
        right: 16px;
    }

    /* Section 13 (Final Consult) tablet overrides */
    .sk-final-section {
        padding: 60px 0;
    }

    .sk-final-box {
        flex-direction: column;
        text-align: center;
        padding: 68px 44px;
        min-height: auto;
        align-items: center;
        justify-content: center;
    }

    .sk-final-content {
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .sk-final-title {
        font-size: 40px;
        text-align: center;
    }

    .sk-final-desc {
        font-size: 18px;
        text-align: center;
    }

    .sk-final-btn {
        align-self: center;
    }

    .sk-final-tablet-graphic {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        pointer-events: none;
        z-index: 3;
    }

    .sk-final-badge {
        position: absolute;
        color: #FFFFFF;
        font-family: "MuseoSansCyrl", sans-serif;
        font-weight: 700;
        font-size: 16px;
        text-transform: uppercase;
        padding: 8px 12px;
        border-radius: 8px;
        line-height: 1;
    }

    .sk-final-badge.badge-orange {
        background-color: #ff9f00;
        left: calc(50% + 110px);
        top: 316px;
        transform: rotate(-15.18deg);
    }

    .sk-final-badge.badge-red {
        background-color: #e93d28;
        left: calc(50% + 100px);
        top: 348px;
        transform: rotate(-16.28deg);
    }

    .sk-final-arrow {
        position: absolute;
        left: 95px;
        top: 333px;
    }

    .sk-final-desktop-graphic {
        display: none;
    }
}

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

    .sk-hero-card {
        padding: 0;
        border-radius: 16px;
        gap: 32px;
        background-size: 100px 100px;
    }

    .sk-hero-content {
        padding: 44px 16px 0 16px;
        gap: 20px;
    }

    .sk-container .sk-hero-title {
        font-size: 32px;
        letter-spacing: 0.32px;
    }

    .sk-hero-desc {
        font-size: 15px;
    }

    a.sk-hero-btn {
        font-size: 14px;
        padding: 16px 24px;
        letter-spacing: 0.28px;
    }

    .sk-hero-badge-free {
        font-size: 12px;
        bottom: -12px;
        right: 15px;
    }

    .sk-hero-image-wrap {
        margin-top: 0;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        overflow: hidden;
    }

    .sk-hero-img {
        max-width: unset;
        width: 100%;
        height: auto;
        display: block;
    }

    /* Reposition badges for mobile layout */
    .sk-badge.badge-flag {
        left: 13px;
        top: 17px;
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    .sk-badge.badge-grad {
        top: auto;
        right: 18px;
        bottom: 262px;
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    /* Section 2 (Advantages) mobile styles */
    .sk-advantages-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .sk-container .sk-advantages-title {
        font-size: 26px;
        width: 100%;
        margin-bottom: 28px;
    }

    .sk-pencil-badge {
        width: 52px;
        height: 52px;
        left: auto;
        right: 16px;
        top: -86px;
        transform: rotate(-6.86deg);
    }

    .sk-pencil-badge span {
        font-size: 24px;
    }

    .sk-card {
        padding: 16px;
        min-height: auto;
    }

    .sk-card.sk-card-3 .sk-card-content-wrap,
    .sk-card.sk-card-5 .sk-card-content-wrap {
        max-width: 100%;
    }

    .sk-container .sk-card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .sk-card-desc {
        font-size: 15px;
    }

    /* Card 3 Mobile floating tags redesign */
    .sk-card-3-tags-wrap {
        position: relative;
        right: auto;
        top: auto;
        width: 290px;
        height: 110px;
        margin: 20px auto 0 auto;
    }

    .sk-card-3-tag.tag-1 {
        left: 28px;
        right: auto;
        top: 4px;
        font-size: 13px;
        transform: rotate(-0.1deg);
    }

    .sk-card-3-tag.tag-2 {
        left: 0;
        right: auto;
        top: 40px;
        font-size: 13px;
        transform: rotate(-4.79deg);
    }

    .sk-card-3-tag.tag-3 {
        left: 122px;
        right: auto;
        top: 70px;
        font-size: 13px;
        transform: rotate(1.2deg);
    }

    .sk-card-3-money-badge {
        left: 220px;
        right: auto;
        top: 0;
    }

    /* Card 5 Mobile image wrap redesign */
    .sk-card-5-image-wrap {
        position: relative;
        right: auto;
        top: auto;
        width: 264px;
        height: auto;
        margin: 20px auto -15px auto;
        display: flex;
        justify-content: center;
    }

    /* Section 3 (Who is it for) mobile styles */
    .sk-who-section {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .sk-who-card-bg {
        border-radius: 16px;
        padding: 16px;
        min-height: auto;
        padding-bottom: 200px;
        /* leaves room for background view below card */
    }

    .sk-who-card {
        padding: 28px 12px;
        width: 100%;
        gap: 24px;
    }

    .sk-container .sk-who-title {
        font-size: 22px;
    }

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

    .sk-who-content ul {
        gap: 8px;
    }

    .sk-who-content ul li {
        padding-left: 32px;
        font-size: 15px;
    }

    .sk-who-content ul li::before {
        width: 20px;
        height: 20px;
        top: 1px;
        background-size: 8px;
    }

    a.sk-who-btn {
        width: 100%;
        font-size: 14px;
        padding: 16px 24px;
        letter-spacing: 0.28px;
    }

    .sk-vector-1772 {
        right: auto;
        left: -51px;
        top: auto;
        bottom: 41px;
        width: 97px;
        height: 159px;
        transform: rotate(225deg);
    }

    .sk-vector-1725 {
        left: auto;
        right: -108px;
        top: auto;
        bottom: -64px;
        width: 392px;
        height: 174px;
    }

    /* Section 4 (Admission Steps) mobile styles */
    .sk-steps-section {
        padding: 24px 0;
    }

    .sk-steps-header {
        gap: 24px;
    }

    .sk-steps-header-left {
        gap: 16px;
    }

    .sk-steps-badge {
        font-size: 12px;
    }

    .sk-container .sk-steps-title {
        font-size: 26px;
    }

    .sk-steps-desc {
        font-size: 16px;
    }

    .sk-steps-graphic {
        max-width: 300px;
    }

    .sk-steps-graphic-placeholder {
        max-width: 300px;
        height: 180px;
    }

    .sk-step-cell {
        width: 100%;
        margin-right: 16px;
    }

    .sk-step-card {
        padding: 16px;
        height: auto;
        min-height: 220px;
    }

    .sk-steps-btn {
        width: 22px;
        height: 36px;
    }

    /* Section 5 (Consultation Booking Form) mobile styles */
    .sk-booking-section {
        padding: 42px 0;
    }

    .sk-booking-card-bg {
        padding: 32px 16px;
        gap: 28px;
        border-radius: 20px;
    }

    .sk-container .sk-booking-title {
        font-size: 26px;
    }

    .sk-booking-tags-wrap {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .sk-booking-tags-label {
        font-size: 14px;
    }

    .sk-booking-tag span {
        font-size: 14px;
    }

    .sk-booking-form-wrap {
        padding: 24px 16px;
    }

    .sk-booking-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .sk-booking-form-wrap input[type="text"],
    .sk-booking-form-wrap input[type="tel"],
    .sk-booking-form-wrap select,
    .sk-booking-form-wrap input[type="submit"] {
        height: 50px !important;
        font-size: 16px !important;
    }

    .camp-booking-cf7-row {
        flex-direction: column;
        gap: 12px;
    }

    .sk-booking-pushpin {
        right: 16px;
        top: -55px;
        width: 81px;
        height: 81px;
    }

    .wpcf7 form .wpcf7-response-output {
        margin-top: 5px;
    }

    /* Section 6 (Pricing / Packages) mobile styles */
    .sk-prices-section {
        padding: 70px 0 40px 0;
        margin-top: 40px;
    }

    .sk-prices-section::before {
        height: 40px;
    }

    .sk-prices-header {
        margin-bottom: 24px;
    }

    .sk-container .sk-prices-title {
        font-size: 26px;
    }

    .sk-prices-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }

    .sk-price-header-wrap {
        height: 120px;
        padding: 16px;
    }

    .sk-price-header-texture {
        width: 260px;
        height: 260px;
        right: -130px;
    }

    .sk-price-badge span {
        font-size: 16px;
    }

    .sk-price-value {
        left: 16px;
        top: 65px;
    }

    .sk-price-value span {
        font-size: 32px;
    }

    .sk-price-decorations {
        right: 16px;
        width: 160px;
        height: 100px;
    }

    .sk-price-decor-tag span {
        font-size: 12px;
    }

    .sk-price-decor-emoji {
        width: 45px;
        height: 45px;
    }

    .sk-price-decor-emoji span {
        font-size: 26px;
    }

    /* Basic decorations positions mobile */
    .pkg-basic .decor-orange {
        right: 10px;
        top: 30px;
    }

    .pkg-basic .decor-red {
        right: 5px;
        top: 55px;
    }

    .pkg-basic .sk-price-decor-emoji {
        right: 90px;
        top: 15px;
    }

    /* Premium decorations positions mobile */
    .pkg-premium .decor-blue {
        right: 60px;
        top: 15px;
    }

    .pkg-premium .decor-orange-dark {
        right: 20px;
        top: 45px;
    }

    .pkg-premium .sk-price-decor-emoji {
        right: 95px;
        top: 35px;
    }

    .sk-price-body-wrap {
        padding: 16px;
    }

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

    .sk-price-content ul li {
        font-size: 15px;
    }

    .sk-price-btn-cta {
        height: 50px;
        font-size: 15px;
    }

    /* Section 7 (Consultation Card) mobile styles */
    .sk-consult-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .sk-consult-card {
        padding: 16px 16px 200px 16px;
        border-radius: 16px;
        min-height: auto;
    }

    .sk-consult-info {
        width: 100%;
        padding: 28px 12px;
        gap: 24px;
    }

    .sk-container .sk-consult-title {
        font-size: 24px;
    }

    .sk-consult-desc {
        font-size: 16px;
    }

    .sk-consult-btn {
        width: 100%;
        height: 52px;
        font-size: 14px;
        letter-spacing: 0.28px;
    }

    .sk-consult-vector-1772 {
        bottom: -23.93px;
        left: -36px;
        right: auto;
        width: 127.17px;
        height: 160.93px;
        transform: rotate(46deg);
    }

    .sk-consult-vector-1725 {
        bottom: -81.85px;
        right: -112.49px;
        width: 420.49px;
        height: 254.85px;
        transform: rotate(54eg);
    }

    /* Section 8 (Popular Directions) mobile styles */
    .sk-directions-section {
        padding: 40px 0 80px 0;
    }

    .sk-directions-header {
        margin-bottom: 28px;
    }

    .sk-container .sk-directions-title {
        font-size: 26px;
    }

    .sk-directions-desc {
        font-size: 15px;
        margin-top: 8px;
    }

    .sk-directions-grid {
        gap: 8px;
    }

    .sk-direction-pill {
        padding: 8px 16px;
        font-size: 12px;
        height: 32px;
        display: inline-flex;
        align-items: center;
    }

    .sk-directions-section .sk-decor-emoji {
        width: 48px;
        height: 48px;
    }

    .sk-directions-section .sk-decor-emoji-inner {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }

    .sk-directions-section .sk-decor-emoji-inner span {
        font-size: 24px;
    }

    /* Handshake top-right above heading */
    .sk-directions-section .mobile-top-only {
        display: flex;
        position: absolute;
        top: -56px;
        right: 16px;
    }

    .sk-directions-section .hide-mobile {
        display: none;
    }

    /* Laptop and books bottom left/right */
    .sk-directions-section .emoji-2 {
        bottom: -46px;
        left: 16px;
        right: unset;
        top: unset;
    }

    .sk-directions-section .emoji-3 {
        bottom: -46px;
        right: 16px;
        left: unset;
        top: unset;
    }

    /* Section 9 (Universities Carousel) mobile styles */
    .course-section-6 {
        padding: 70px 0;
        padding-bottom: 0px;
        border-bottom-left-radius: 50% 40px;
        border-bottom-right-radius: 50% 40px;
    }

    .course-section-6 .sk-container {
        gap: 12px;
    }

    .university-main-block {
        margin-bottom: 80px;
    }

    .university-carousel {
        height: 550px;
    }

    .university-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .university-item .ui-image img {
        height: 155px;
    }

    .university-item .ui-content-title {
        font-size: 20px;
    }

    .university-item .ui-content-meta .ui-meta-item span {
        font-size: 15px;
    }

    .university-item .ui-tab-item .tab-item-header h3 {
        font-size: 16px;
    }

    .university-item .ui-tab-item .tab-item-content p,
    .university-item .ui-tab-item .tab-item-content span {
        font-size: 15px;
    }

    .university-carousel .flickity-prev-next-button {
        top: auto;
        bottom: -65px;
        transform: translateY(0);
    }

    .university-carousel .flickity-prev-next-button.previous {
        left: calc(50% - 50px);
    }

    .university-carousel .flickity-prev-next-button.next {
        right: auto;
        left: calc(50% + 10px);
    }

    .university-item .ui-content-meta .ui-meta-item {
        display: grid;
        grid-template-columns: calc(20px) 1fr;
        gap: 8px;
    }

    .course-section-6 .sec7-top-block .sec7-title {
        font-size: 26px;
    }

    /* Section 10 (Student Budget) mobile overrides */
    .sk-budget-section {
        padding: 40px 0 80px 0;
        margin-top: 40px;
    }

    .sk-budget-section::before {
        height: 40px;
    }

    .sk-budget-badge {
        font-size: 12px;
    }

    .sk-budget-title {
        font-size: 26px;
    }

    .sk-budget-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .sk-budget-card:nth-child(5),
    .sk-budget-card.card-wide {
        grid-column: auto;
    }

    .sk-budget-card-inner {
        align-items: flex-start;
    }

    .sk-budget-card.card-wide .sk-budget-value {
        font-size: 18px;
    }

    .sk-budget-desc {
        font-size: 16px;
    }

    /* Section 11 (Team & Stats) mobile overrides */
    .sk-team-section {
        padding: 0;
        padding-bottom: 40px;
    }

    .sk-team-promo-inner {
        padding: 16px 16px 0 16px;
        gap: 16px;
    }

    .sk-team-text-card {
        padding: 28px 12px;
        border-radius: 20px;
        gap: 24px;
    }

    .sk-team-title {
        font-size: 24px;
    }

    .sk-team-subtitle {
        font-size: 16px;
    }

    .sk-team-check-text {
        font-size: 15px;
    }

    .sk-team-image-wrap {
        height: 240px;
    }

    .sk-stat-card {
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 12px 16px;
        padding: 24px 16px;
    }

    .sk-stat-icon-wrap {
        width: 60px;
        height: 60px;
        font-size: 45px;
        grid-column: 1;
        grid-row: 1;
    }

    .sk-stat-content {
        display: contents;
    }

    .sk-stat-number {
        grid-column: 2;
        grid-row: 1;
        font-size: 50px;
        align-self: center;
    }

    .sk-stat-desc {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 16px;
    }

    /* Section 12 (FAQ Accordion) mobile overrides */
    .sk-faq-section {
        padding: 40px 0;
    }

    .sk-faq-title {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .sk-faq-item {
        padding: 16px;
        border-radius: 16px;
    }

    .sk-faq-item-icon {
        font-size: 24px;
    }

    .sk-faq-item-question {
        font-size: 18px;
    }

    .sk-faq-star-badge {
        width: 68px;
        height: 68px;
        right: 10px;
    }

    .sk-faq-star-badge-outer {
        width: 61px;
        height: 61px;
    }

    .sk-faq-star-badge-inner {
        width: 53px;
        height: 53px;
    }

    .sk-faq-star-badge-star {
        font-size: 32px;
    }

    /* Section 13 (Final Consult) mobile overrides */
    .sk-final-section {
        padding: 40px 0;
    }

    .sk-final-box {
        padding: 40px 16px 80px 16px;
        border-radius: 16px;
    }

    .sk-final-title {
        font-size: 26px;
    }

    .sk-final-desc {
        font-size: 16px;
    }

    .sk-final-btn {
        width: 100%;
        font-size: 14px;
        height: 52px;
        padding: 0 20px;
    }

    .sk-final-badge {
        font-size: 12px;
        padding: 6px 8px;
    }

    .sk-final-badge.badge-orange {
        left: calc(50% + 20px);
        top: 342px;
        transform: rotate(-1.1deg);
    }

    .sk-final-badge.badge-red {
        left: calc(50% + 15px);
        top: 364px;
        transform: rotate(-2.2deg);
    }

    .sk-final-arrow {
        left: 18px;
        top: 338px;
    }

    .sk-final-arrow svg {
        width: 26px;
        height: 26px;
    }

    .sk-final-desktop-graphic {
        display: none;
    }
}