/* Sky Training Bookings — Elementor Widgets */

/* ───────────── Course Booking Widget ───────────── */
.stb-el-booking { font-family: inherit; }

.stb-el-booking-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 20px;
}

.stb-el-no-dates {
    color: #666;
    font-style: italic;
    font-size: 14px;
}

/* Date Cards */
.stb-el-dates-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stb-el-date-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.stb-el-date-card:hover {
    border-color: var(--stb-el-accent, #2271b1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.stb-el-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    padding: 10px;
    background: var(--stb-el-accent, #2271b1);
    border-radius: 8px;
    color: #fff;
    text-align: center;
    flex-shrink: 0;
}

.stb-el-date-day {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.stb-el-date-month {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.stb-el-date-weekday {
    font-size: 11px;
    opacity: 0.85;
    margin-top: 2px;
}

.stb-el-date-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.stb-el-date-time {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.stb-el-date-venue {
    font-size: 13px;
    color: #888;
}

.stb-el-date-places {
    font-size: 13px;
    font-weight: 600;
    color: var(--stb-el-accent, #2271b1);
}

.stb-el-date-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.stb-el-date-price {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
}

.stb-el-book-btn {
    padding: 10px 28px;
    background: var(--stb-el-accent, #2271b1);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.2s;
    display: inline-block;
}

.stb-el-book-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* ── Light Mode ── */
.stb-el-booking-light .stb-el-booking-title {
    font-weight: 300; color: #0e2b3a;
}
.stb-el-booking-light .stb-el-date-card {
    background: #fff; border: 1px solid rgba(14,169,208,0.22);
    border-radius: 0;
}
.stb-el-booking-light .stb-el-date-card:hover {
    border-color: #0ea9d0;
    box-shadow: 0 1px 4px rgba(11,61,82,0.07), 0 4px 20px rgba(11,61,82,0.05);
}
.stb-el-booking-light .stb-el-date-badge {
    background: #0b3d52; border-radius: 0;
}
.stb-el-booking-light .stb-el-date-day { font-weight: 300; }
.stb-el-booking-light .stb-el-date-month { font-weight: 500; }
.stb-el-booking-light .stb-el-date-weekday { opacity: 0.7; }
.stb-el-booking-light .stb-el-date-time { color: #0e2b3a; font-weight: 500; }
.stb-el-booking-light .stb-el-date-venue { color: #7a9aaa; }
.stb-el-booking-light .stb-el-date-places { color: #0ea9d0; font-weight: 500; }
.stb-el-booking-light .stb-el-date-price { color: #0e2b3a; font-weight: 300; }
.stb-el-booking-light .stb-el-book-btn {
    background: #0ea9d0; border-radius: 0;
    font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 10px 20px;
}
.stb-el-booking-light .stb-el-book-btn:hover {
    background: #0888aa; filter: none;
}
.stb-el-booking-light .stb-el-no-dates {
    color: #7a9aaa; font-style: normal; font-weight: 300;
}

/* Request Form */
.stb-el-request-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stb-el-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stb-el-form-group.stb-el-full {
    grid-column: 1 / -1;
}

.stb-el-form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stb-el-form-group input,
.stb-el-form-group select,
.stb-el-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
    background: #fafafa;
    box-sizing: border-box;
}

.stb-el-form-group input:focus,
.stb-el-form-group select:focus,
.stb-el-form-group textarea:focus {
    border-color: var(--stb-el-accent, #2271b1);
    outline: none;
    background: #fff;
}

.stb-el-submit-btn {
    padding: 14px 40px;
    background: var(--stb-el-accent, #2271b1);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.stb-el-submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.stb-el-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.stb-el-form-message {
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.stb-el-form-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.stb-el-form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ───────────── Course Grid Widget ───────────── */

/* Filter bar — full width, sticky, scoped under .stb-cg-root */
.stb-cg-root .stb-cg-filter-bar {
    display: flex; align-items: center; gap: 0; overflow-x: auto;
    background: #fff; border-bottom: 1px solid rgba(14,169,208,0.14);
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(11,61,82,0.07), 0 4px 20px rgba(11,61,82,0.05);
    position: sticky; top: 0; z-index: 999;
    /* Break out of any container to full viewport width */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    -webkit-overflow-scrolling: touch;
}
/* Force Elementor containers to allow sticky to work */
.stb-cg-root,
.stb-cg-root .elementor-widget-container,
.elementor-element:has(.stb-cg-root),
.e-con:has(.stb-cg-root),
.elementor-section:has(.stb-cg-root),
.elementor-column:has(.stb-cg-root) .elementor-widget-wrap {
    overflow: visible !important;
}
.stb-cg-root .stb-cg-filter-btn,
.stb-cg-root button.stb-cg-filter-btn {
    flex-shrink: 0; padding: 16px 22px;
    border: none !important; border-bottom: 2px solid transparent !important;
    background: transparent !important; font-family: inherit;
    font-size: 12px !important; font-weight: 400; letter-spacing: 0.06em;
    text-transform: uppercase; color: #3d6070 !important;
    cursor: pointer; transition: all 0.2s; white-space: nowrap;
    border-radius: 0 !important; box-shadow: none !important; margin: 0;
    outline: none; text-decoration: none !important; line-height: 1.4;
    min-height: auto; height: auto;
}
.stb-cg-root .stb-cg-filter-btn:hover,
.stb-cg-root button.stb-cg-filter-btn:hover {
    color: #0e2b3a !important; border-bottom-color: rgba(14,169,208,0.22) !important;
    background: transparent !important;
}
.stb-cg-root .stb-cg-filter-btn.stb-cg-filter-on,
.stb-cg-root button.stb-cg-filter-btn.stb-cg-filter-on {
    color: #0ea9d0 !important; border-bottom-color: #0ea9d0 !important; font-weight: 500;
    background: transparent !important;
}
.stb-cg-root .stb-cg-filter-count {
    display: inline-block; font-size: 10px; background: #eef6fb;
    border: 1px solid rgba(14,169,208,0.22); color: #7a9aaa;
    padding: 1px 6px; margin-left: 5px; border-radius: 8px;
    vertical-align: middle; text-transform: none; letter-spacing: 0; font-weight: 400;
}
.stb-cg-root .stb-cg-filter-btn.stb-cg-filter-on .stb-cg-filter-count {
    background: rgba(14,169,208,0.09); color: #0ea9d0;
}

/* Featured ribbon */
.stb-cg-root .stb-cg-featured { border-color: #0ea9d0; }
.stb-cg-root .stb-cg-ribbon {
    position: absolute; top: -1px; left: 20px; z-index: 2;
    background: #0ea9d0; color: #fff;
    font-size: 9px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 4px 12px;
}

/* Level badge (top-right of image) */
.stb-cg-root .stb-cg-level {
    position: absolute; top: 12px; right: 12px;
    font-size: 9px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 4px 10px;
    background: rgba(14,169,208,0.15); color: #0ea9d0;
    border: 1px solid rgba(14,169,208,0.3); z-index: 1;
}

/* CPD badge (bottom-left of image) */
.stb-cg-root .stb-cg-cpd {
    position: absolute; bottom: 12px; left: 12px;
    background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.3);
    padding: 4px 8px; font-size: 9px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #0b3d52; z-index: 1;
}

/* Includes list */
.stb-cg-root .stb-cg-includes {
    display: flex; flex-direction: column; gap: 5px; margin-bottom: 20px;
}
.stb-cg-root .stb-cg-inc {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: #3d6070; font-weight: 300;
}
.stb-cg-root .stb-cg-inc::before {
    content: '✓'; color: #0ea9d0; font-size: 11px; font-weight: 500; flex-shrink: 0;
}

/* Grid layout */
.stb-cg-root .stb-cg-grid {
    display: grid;
    gap: 24px;
}
.stb-cg-root .stb-cg-cols-2 { grid-template-columns: repeat(2, 1fr); }
.stb-cg-root .stb-cg-cols-3 { grid-template-columns: repeat(3, 1fr); }
.stb-cg-root .stb-cg-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Card */
.stb-cg-root .stb-cg-card {
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(14,169,208,0.22);
    border-radius: 0;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.stb-cg-root .stb-cg-hover-shadow:hover,
.stb-cg-root .stb-cg-hover-shadow:focus-within {
    box-shadow: 0 2px 8px rgba(11,61,82,0.08), 0 8px 32px rgba(11,61,82,0.06);
}
.stb-cg-root .stb-cg-hover-lift:hover,
.stb-cg-root .stb-cg-hover-lift:focus-within {
    transform: translateY(-2px);
}

/* Featured card (accent border + "Most popular" label) */
.stb-cg-root .stb-cg-card.stb-cg-featured {
    border-color: #0ea9d0;
}
.stb-cg-root .stb-cg-featured-label {
    position: absolute;
    top: -1px;
    left: 24px;
    background: #0ea9d0;
    color: #fff;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    z-index: 3;
}

/* Image container — 16:9 aspect ratio */
.stb-cg-root .stb-cg-image-wrap {
    position: relative;
    overflow: hidden;
}
.stb-cg-root .stb-cg-image-link {
    display: block;
    text-decoration: none;
}
.stb-cg-root .stb-cg-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    background: #0b3d52;
}
.stb-cg-root .stb-cg-img,
.stb-cg-root .stb-cg-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    max-width: none;
}
.stb-cg-root .stb-cg-card:hover .stb-cg-img,
.stb-cg-root .stb-cg-card:focus-within .stb-cg-img {
    transform: scale(1.06);
}

/* Placeholder */
.stb-cg-root .stb-cg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b3d52;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(14,169,208,0.4);
}

/* Category badge — overlaid on image top-right */
.stb-cg-root .stb-cg-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 4px 10px;
    z-index: 2;
    border-radius: 0;
    line-height: 1.4;
    /* Default: beginner style */
    background: rgba(14,169,208,0.15);
    color: #0ea9d0;
    border: 1px solid rgba(14,169,208,0.3);
}

/* Card body */
.stb-cg-root .stb-cg-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
    gap: 0;
}

/* Category text above title */
.stb-cg-root .stb-cg-cat-text {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0ea9d0;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Title */
.stb-cg-root .stb-cg-title {
    font-size: 22px;
    font-weight: 300;
    color: #0e2b3a;
    margin: 0 0 10px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.stb-cg-root .stb-cg-title-link {
    text-decoration: none !important;
    color: inherit !important;
    transition: color 0.2s;
}
.stb-cg-root .stb-cg-title-link:hover,
.stb-cg-root .stb-cg-title-link:focus {
    color: #0ea9d0 !important;
    outline: none;
}
.stb-cg-root .stb-cg-title-link:focus-visible {
    outline: 2px solid #0ea9d0;
    outline-offset: 2px;
}

/* Excerpt */
.stb-cg-root .stb-cg-excerpt {
    font-size: 13px;
    color: #3d6070;
    line-height: 1.6;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Meta row */
.stb-cg-root .stb-cg-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: auto;
}
.stb-cg-root .stb-cg-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #7a9aaa;
    line-height: 1.4;
}
.stb-cg-root .stb-cg-meta-item svg {
    flex-shrink: 0;
    color: #0ea9d0;
}
/* Remove pill styles — flat meta items */
.stb-cg-root .stb-cg-meta-pill {
    background: none;
    padding: 0;
    border-radius: 0;
    font-weight: 400;
}
.stb-cg-root .stb-cg-meta-pill svg { opacity: 1; }
.stb-cg-root .stb-cg-meta-dates { background: none; color: #7a9aaa; }
.stb-cg-root .stb-cg-meta-dates svg { color: #0ea9d0; opacity: 1; }
.stb-cg-root .stb-cg-meta-location { background: none; color: #7a9aaa; }
.stb-cg-root .stb-cg-meta-location svg { color: #0ea9d0; opacity: 1; }

/* Footer — stacked: price row, then button row */
.stb-cg-root .stb-cg-footer {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: auto;
    border-top: 1px solid rgba(14,169,208,0.14);
    background: #eef6fb;
}

/* Price row — always full width on its own */
.stb-cg-root .stb-cg-price-row {
    padding: 16px 24px;
    text-align: center;
}

/* Button row container */
.stb-cg-root .stb-cg-btn-row {
    display: flex;
    gap: 10px;
    padding: 16px 24px;
}
/* Separator between price row and button row */
.stb-cg-root .stb-cg-price-row + .stb-cg-btn-row {
    border-top: 1px solid rgba(14,169,208,0.14);
}
/* Buttons fill the row */
.stb-cg-root .stb-cg-btn-row .stb-cg-btn {
    flex: 1;
    display: flex;
    text-align: center;
}

/* Price */
.stb-cg-root .stb-cg-price {
    font-size: 26px;
    font-weight: 300;
    color: #0e2b3a;
    line-height: 1;
    white-space: nowrap;
}
.stb-cg-root .stb-cg-price .woocommerce-Price-amount {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
.stb-cg-root .stb-cg-price .woocommerce-Price-currencySymbol {
    font-size: 0.7em;
    font-weight: 400;
    vertical-align: super;
    margin-right: 1px;
}
.stb-cg-root .stb-cg-price-note {
    font-size: 11px;
    color: #7a9aaa;
    margin-top: 2px;
}

/* Button */
.stb-cg-root .stb-cg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    background: #0ea9d0;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.stb-cg-root .stb-cg-btn svg {
    transition: transform 0.25s ease;
}
.stb-cg-root .stb-cg-btn:hover {
    background: #0888aa;
}
.stb-cg-root .stb-cg-btn:hover svg {
    transform: translateX(3px);
}
.stb-cg-root .stb-cg-btn:focus-visible {
    outline: 2px solid #0ea9d0;
    outline-offset: 2px;
}
.stb-cg-root .stb-cg-btn-full {
    width: 100%;
    text-align: center;
}

/* Book Now button — outline style */
.stb-cg-root .stb-cg-btn.stb-cg-btn-book {
    background: transparent;
    color: #0ea9d0 !important;
    border: 1px solid #0ea9d0;
}
.stb-cg-root .stb-cg-btn.stb-cg-btn-book:hover {
    background: #0e2b3a !important;
    color: #fff !important;
}

/* No courses */
.stb-cg-root .stb-cg-no-courses {
    color: #7a9aaa;
    font-style: italic;
    font-size: 14px;
    text-align: center;
    padding: 40px 20px;
}

/* ───────────── Service Cards Widget ───────────── */

.stb-sc-section {
    --stb-sc-accent: #0ea9d0;
    position: relative;
}

.stb-sc-inner {
    margin: 0;
}

/* Eyebrow */
.stb-sc-eyebrow {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stb-sc-accent);
    font-weight: 500;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.stb-sc-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--stb-sc-accent);
}

/* Heading */
.stb-sc-heading {
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #0e2b3a;
}

/* Subheading */
.stb-sc-subheading {
    font-size: 15px;
    color: #3d6070;
    max-width: 560px;
    line-height: 1.7;
    margin: 0;
}

/* Sky Title wrapper */
.stb-st-wrap {
    --stb-sc-accent: #0ea9d0;
    display: flex;
    flex-direction: column;
}
.stb-st-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.stb-st-wrap--has-btn {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

/*
 * Centering fix — .stb-st-text is display:flex column so align-items
 * controls horizontal alignment of children (eyebrow, heading, subheading).
 * The subheading has max-width so it naturally centres as a flex child.
 * Eyebrow ::before line also follows via justify-content on .stb-sc-eyebrow.
 */

/* Button wrapper */
.stb-st-btn-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4px;
}
.stb-st-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background-color: var(--stb-sc-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1.4;
    letter-spacing: 0.02em;
    box-sizing: border-box;
}
.stb-st-btn:hover {
    background-color: #0c8faf;
    color: #fff;
    transform: translateY(-1px);
}
.stb-st-btn:focus-visible {
    outline: 2px solid var(--stb-sc-accent);
    outline-offset: 2px;
}
/* Force icon size — Elementor renders full-size SVGs by default */
.stb-st-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    line-height: 1;
}
.stb-st-btn-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: block;
}
.stb-st-btn-icon i {
    font-size: 1em;
    line-height: 1;
}

@media (max-width: 767px) {
    .stb-st-wrap--has-btn {
        flex-direction: column;
        align-items: stretch;
    }
    .stb-st-btn-wrap {
        padding-bottom: 0;
        padding-top: 16px;
    }
}

/* Grid — bordered style (1px gap lines) */
.stb-sc-grid {
    display: grid;
}
.stb-sc-grid--bordered {
    gap: 1px;
    background: rgba(14,169,208,0.14);
    border: 1px solid rgba(14,169,208,0.22);
}
.stb-sc-grid--gap {
    gap: 24px;
    background: transparent;
    border: none;
}

/* Column classes */
.stb-sc-cols-1 { grid-template-columns: 1fr; }
.stb-sc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.stb-sc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.stb-sc-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Card */
.stb-sc-card {
    background: #fff;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    flex-direction: column;
}
.stb-sc-card:hover {
    background: #eef6fb;
}

/* Badge */
.stb-sc-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e0f5fc;
    border: 1px solid rgba(14,169,208,0.22);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stb-sc-accent);
    padding: 3px 8px;
    z-index: 2;
    line-height: 1.4;
    font-weight: 500;
}

/* Image wrap — aspect ratios */
.stb-sc-img-wrap {
    width: 100%;
    background: #eef6fb;
    border: 1px solid rgba(14,169,208,0.14);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.stb-sc-ratio-16-9 { aspect-ratio: 16 / 9; }
.stb-sc-ratio-4-3  { aspect-ratio: 4 / 3; }
.stb-sc-ratio-1-1  { aspect-ratio: 1 / 1; }
.stb-sc-ratio-3-4  { aspect-ratio: 3 / 4; }
.stb-sc-ratio-auto { aspect-ratio: auto; position: relative; }
.stb-sc-ratio-auto .stb-sc-img {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.stb-sc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}
.stb-sc-card:hover .stb-sc-img {
    transform: scale(1.06);
}

/* Placeholder icon */
.stb-sc-img-placeholder {
    color: var(--stb-sc-accent);
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Number */
.stb-sc-number {
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--stb-sc-accent);
    font-weight: 500;
    margin-bottom: 8px;
}

/* Title */
.stb-sc-title {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 8px;
    line-height: 1.2;
    color: #0e2b3a;
}

/* Tagline */
.stb-sc-tagline {
    font-size: 13px;
    color: #3d6070;
    line-height: 1.55;
    flex: 1;
    margin-bottom: 20px;
}

/* CTA link */
.stb-sc-cta {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stb-sc-accent);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}
.stb-sc-cta-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}
.stb-sc-card:hover .stb-sc-cta-arrow {
    transform: translateX(5px);
}

/* Scroll Reveal */
.stb-sc-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.stb-sc-reveal.stb-sc-visible {
    opacity: 1;
    transform: translateY(0);
}
/* In Elementor editor, always show */
.elementor-editor-active .stb-sc-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ───────────── Service Cards: Video ───────────── */

/* Video in standard image-wrap */
.stb-sc-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.stb-sc-card:hover .stb-sc-video {
    transform: scale(1.06);
}

/* YouTube iframe in standard wrap */
.stb-sc-video.stb-sc-youtube {
    border: 0;
    pointer-events: none;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
}

/* Video fallback image (sits behind) */
.stb-sc-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Hover-play: pause state */
.stb-sc-hover-play .stb-sc-video {
    /* Videos start paused via JS */
}

/* ───────────── Service Cards Carousel ───────────── */

/* Carousel wrapper — clip overflow */
.stb-sc-carousel-wrap {
    position: relative;
    overflow: hidden;
}

/* Disable overflow variant — slides peek outside container */
.stb-sc-carousel-no-overflow {
    overflow: visible;
}
.stb-sc-carousel-no-overflow .stb-sc-swiper {
    overflow: visible;
}

.stb-sc-swiper {
    overflow: hidden;
    position: relative;
}
.stb-sc-swiper .swiper-wrapper {
    align-items: stretch !important;
}

/* Slide card should fill height — equal height for all cards */
.stb-sc-slide {
    height: auto !important;
    display: flex;
    align-self: stretch;
}
.stb-sc-slide .stb-sc-card {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Pagination dots — positioned below swiper, inside carousel-wrap */
.stb-sc-swiper-pagination {
    position: relative;
    bottom: auto !important;
    top: auto !important;
    text-align: center;
    z-index: 5;
    padding-top: 20px;
}
.stb-sc-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(14,169,208,0.25);
    opacity: 1;
    border-radius: 50%;
    margin: 0 4px;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
    display: inline-block;
    cursor: pointer;
}
.stb-sc-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--stb-sc-accent, #0ea9d0);
    width: 24px;
    border-radius: 4px;
}

/* Navigation arrows — positioned relative to the full carousel-wrap */
.stb-sc-swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(14,169,208,0.22);
    color: #0e2b3a;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.stb-sc-swiper-nav:hover {
    background: #eef6fb;
    border-color: var(--stb-sc-accent, #0ea9d0);
    color: var(--stb-sc-accent, #0ea9d0);
}
.stb-sc-swiper-nav::after {
    display: none; /* Remove Swiper's default arrow text */
}
.stb-sc-swiper-nav.swiper-button-prev {
    left: -20px;
}
.stb-sc-swiper-nav.swiper-button-next {
    right: -20px;
}
.stb-sc-swiper-nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* In bordered grid style inside carousel, remove grid gap/border — use space-between instead */
.stb-sc-carousel-wrap .stb-sc-card {
    border: 1px solid rgba(14,169,208,0.22);
}

/* ───────────── Responsive — Tablet ───────────── */
@media (max-width: 1024px) and (min-width: 601px) {
    .stb-cg-root .stb-cg-grid.stb-cg-tcols-1 { grid-template-columns: 1fr; }
    .stb-cg-root .stb-cg-grid.stb-cg-tcols-2 { grid-template-columns: repeat(2, 1fr); }
    .stb-cg-root .stb-cg-grid.stb-cg-tcols-3 { grid-template-columns: repeat(3, 1fr); }

    /* Service Cards tablet */
    .stb-sc-grid.stb-sc-tcols-1 { grid-template-columns: 1fr; }
    .stb-sc-grid.stb-sc-tcols-2 { grid-template-columns: repeat(2, 1fr); }
    .stb-sc-grid.stb-sc-tcols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ───────────── Responsive — Mobile ───────────── */
@media (max-width: 600px) {
    .stb-el-form-grid { grid-template-columns: 1fr; }

    .stb-el-date-card {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
        padding: 14px;
    }

    .stb-el-date-badge {
        flex-direction: column;
        min-width: 56px;
        padding: 8px;
        font-size: 12px;
    }
    .stb-el-date-day { font-size: 1.4rem; }
    .stb-el-date-month { font-size: 10px; }
    .stb-el-date-weekday { font-size: 9px; }

    .stb-el-date-details {
        flex: 1;
        min-width: 0;
        align-items: flex-start;
    }
    .stb-el-date-time { font-size: 13px; }
    .stb-el-date-venue { font-size: 12px; }
    .stb-el-date-places { font-size: 12px; }

    .stb-el-date-action {
        flex-direction: row;
        align-items: center;
        width: 100%;
        gap: 10px;
        padding-top: 8px;
        border-top: 1px solid #eee;
    }
    .stb-el-date-price { font-size: 13px; }
    .stb-el-book-btn {
        flex: 1;
        text-align: center;
        padding: 10px 16px;
        font-size: 13px;
    }
    .stb-el-submit-btn { width: 100%; }

    /* Course Grid — single column on mobile */
    .stb-cg-root .stb-cg-filter-bar { margin-bottom: 16px; }
    .stb-cg-root .stb-cg-filter-btn { padding: 12px 16px; font-size: 11px; }
    .stb-cg-root .stb-cg-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .stb-cg-root .stb-cg-body { padding: 18px; }
    .stb-cg-title { font-size: 18px; }
    .stb-cg-excerpt { font-size: 12px; -webkit-line-clamp: 2; margin-bottom: 14px; }
    .stb-cg-meta-item { font-size: 11px; }
    .stb-cg-price { font-size: 22px; }
    .stb-cg-root .stb-cg-price-row { padding: 14px 18px; }
    .stb-cg-btn { padding: 10px 16px; font-size: 10px; }

    /* Service Cards mobile */
    .stb-sc-grid.stb-sc-mcols-1 { grid-template-columns: 1fr !important; }
    .stb-sc-grid.stb-sc-mcols-2 { grid-template-columns: repeat(2, 1fr) !important; }
    .stb-sc-card { padding: 24px 18px; }
    .stb-sc-title { font-size: 18px; }
    .stb-sc-tagline { font-size: 12px; margin-bottom: 14px; }
    .stb-sc-heading { font-size: clamp(28px, 6vw, 36px); }

    /* Mobile video: show fallback by default, JS promotes video when it can play */
    .stb-sc-video-fallback { z-index: 1; }
    .stb-sc-video { z-index: 0; }
    .stb-sc-video.stb-vid-ready { z-index: 2; }
    .stb-sc-video-fallback.stb-vid-hidden { z-index: -1; }

    /* Nav arrows inside container on mobile */
    .stb-sc-swiper-nav.swiper-button-prev { left: 4px; }
    .stb-sc-swiper-nav.swiper-button-next { right: 4px; }
}

/* ═══════════════════════════════════════════════════════════════════
 *  SKY STEPS WIDGET
 * ═══════════════════════════════════════════════════════════════════ */

.stb-ss-grid {
    --stb-ss-accent: #0ea9d0;
    display: grid;
}

/* Grid styles */
.stb-ss-grid--bordered {
    gap: 1px;
    background: rgba(14,169,208,0.14);
    border: 1px solid rgba(14,169,208,0.22);
}
.stb-ss-grid--gap {
    gap: 24px;
    background: transparent;
    border: none;
}

/* Column classes */
.stb-ss-cols-1 { grid-template-columns: 1fr; }
.stb-ss-cols-2 { grid-template-columns: repeat(2, 1fr); }
.stb-ss-cols-3 { grid-template-columns: repeat(3, 1fr); }
.stb-ss-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Panel */
.stb-ss-panel {
    background: #fff;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}
.stb-ss-panel:hover {
    background: #eef6fb;
}

/* Accent line on hover (left edge) */
.stb-ss-panel.stb-ss-has-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--stb-ss-accent);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.stb-ss-panel.stb-ss-has-line:hover::before {
    height: 100%;
}

/* On touch / mobile: scroll-linked accent line (real element) */
.stb-ss-line-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0%;
    background: var(--stb-ss-accent);
    pointer-events: none;
    z-index: 2;
    transition: none;
    will-change: height;
    border-radius: 1px;
}
/* Hide ::before on touch so it doesn't double up */
.stb-touch .stb-ss-panel.stb-ss-has-line::before {
    display: none;
}
.stb-touch .stb-ss-panel.stb-ss-has-line:hover::before {
    display: none;
}

/* Watermark number */
.stb-ss-watermark {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 80px;
    font-weight: 300;
    line-height: 1;
    color: rgba(14,169,208,0.08);
    user-select: none;
    pointer-events: none;
    transition: color 0.3s ease;
}
.stb-ss-panel:hover .stb-ss-watermark {
    color: rgba(14,169,208,0.15);
}

/* Icon box */
.stb-ss-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    border: 1px solid rgba(14,169,208,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stb-ss-accent);
    font-size: 18px;
    flex-shrink: 0;
}
.stb-ss-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.stb-ss-icon i {
    font-size: inherit;
    line-height: 1;
}

/* Title */
.stb-ss-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #0e2b3a;
}

/* Description */
.stb-ss-desc {
    font-size: 14px;
    color: #3d6070;
    line-height: 1.75;
    margin-bottom: 20px;
}

/* Tag */
.stb-ss-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stb-ss-accent);
    border: 1px solid rgba(14,169,208,0.25);
    padding: 4px 12px;
    line-height: 1.4;
    font-weight: 500;
    margin-top: auto;
}

/* Scroll Reveal */
.stb-ss-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.stb-ss-reveal.stb-ss-visible {
    opacity: 1;
    transform: translateY(0);
}
.elementor-editor-active .stb-ss-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ── Sky Steps Responsive — Tablet ── */
@media (max-width: 1024px) and (min-width: 601px) {
    .stb-ss-grid.stb-ss-tcols-1 { grid-template-columns: 1fr; }
    .stb-ss-grid.stb-ss-tcols-2 { grid-template-columns: repeat(2, 1fr); }
    .stb-ss-grid.stb-ss-tcols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ── Sky Steps Responsive — Mobile ── */
@media (max-width: 600px) {
    .stb-ss-grid.stb-ss-mcols-1 { grid-template-columns: 1fr !important; }
    .stb-ss-grid.stb-ss-mcols-2 { grid-template-columns: repeat(2, 1fr) !important; }
    .stb-ss-panel { padding: 40px 28px; }
    .stb-ss-title { font-size: 20px; }
    .stb-ss-desc { font-size: 13px; }
    .stb-ss-watermark { font-size: 56px; top: 16px; right: 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
 *  SKY TRAINING STEPS WIDGET
 * ═══════════════════════════════════════════════════════════════════ */
.stb-ts-wrap {
    display: flex;
    flex-direction: column;
}
.stb-ts-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(14,169,208,0.15);
    transition: background 0.2s;
}
.stb-ts-step:first-child {
    padding-top: 0;
}
.stb-ts-step.stb-ts-last {
    border-bottom: none;
}
.stb-ts-num {
    font-size: 36px;
    font-weight: 300;
    color: #0ea9d0;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    min-width: 40px;
    text-align: right;
}
.stb-ts-content {
    flex: 1;
    min-width: 0;
}
.stb-ts-title {
    font-size: 14px;
    font-weight: 500;
    color: #0e2b3a;
    margin-bottom: 6px;
}
.stb-ts-desc {
    font-size: 13px;
    color: #3d6070;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
 *  SKY CONDITION CARDS WIDGET
 * ═══════════════════════════════════════════════════════════════════ */
.stb-cc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    background: rgba(14,169,208,0.12);
    border: 1px solid rgba(14,169,208,0.2);
}
.stb-cc-card {
    background: #0b3d52;
    padding: 28px 16px;
    text-align: center;
    transition: background 0.25s;
    cursor: default;
}
.stb-cc-card:hover {
    background: #0d4a62;
}
.stb-cc-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 1px solid rgba(14,169,208,0.25);
    display: block;
}
.stb-cc-name {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
}
.stb-cc-note {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
}

/* Condition Cards Responsive */
@media (max-width: 1024px) {
    .stb-cc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .stb-cc-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════
 *  SKY INFO BANNER WIDGET
 * ═══════════════════════════════════════════════════════════════════ */
.stb-ib-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 32px;
    background: rgba(14,169,208,0.08);
    border: 1px solid rgba(14,169,208,0.18);
}
.stb-ib-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}
.stb-ib-icon svg {
    width: 100%;
    height: 100%;
}
.stb-ib-icon i {
    font-size: inherit;
}
.stb-ib-text {
    flex: 1;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    min-width: 200px;
}
.stb-ib-text strong {
    color: #ffffff;
}
.stb-ib-text p {
    margin: 0;
}
.stb-ib-text p + p {
    margin-top: 8px;
}
.stb-ib-btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 12px 28px;
    background: #0ea9d0;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.stb-ib-btn:hover {
    background: #0888aa;
}

/* Info Banner Responsive */
@media (max-width: 600px) {
    .stb-ib-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .stb-ib-btn {
        width: 100%;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════
 *  SKY DEVICE SHOWCASE WIDGET
 * ═══════════════════════════════════════════════════════════════════ */
.stb-ds-wrap {
    position: relative;
    overflow: visible;
    width: 100%;
    height: 420px;
    border: 1px solid rgba(14,169,208,0.22);
    box-shadow: 0 2px 12px rgba(11,61,82,0.1), 0 8px 40px rgba(11,61,82,0.07);
}
.stb-ds-media-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.stb-ds-media {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}
/* Badge — top left */
.stb-ds-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #0b3d52;
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    z-index: 2;
    white-space: nowrap;
}
/* Stat box — bottom right */
.stb-ds-stat {
    position: absolute;
    bottom: -16px;
    right: 24px;
    background: #ffffff;
    border: 1px solid rgba(14,169,208,0.22);
    box-shadow: 0 1px 4px rgba(11,61,82,0.07), 0 4px 16px rgba(11,61,82,0.05);
    padding: 14px 18px;
    z-index: 2;
}
.stb-ds-stat-num {
    font-size: 28px;
    font-weight: 300;
    color: #0ea9d0;
    line-height: 1;
}
.stb-ds-stat-lbl {
    font-size: 10px;
    color: #7a9aaa;
    margin-top: 3px;
}

/* Device Showcase Responsive */
@media (max-width: 1024px) {
    .stb-ds-wrap { height: 360px; }
}
@media (max-width: 600px) {
    .stb-ds-wrap { height: 280px; }
    .stb-ds-badge {
        top: -10px;
        left: 16px;
        font-size: 9px;
        padding: 5px 12px;
    }
    .stb-ds-stat {
        bottom: -12px;
        right: 16px;
        padding: 10px 14px;
    }
    .stb-ds-stat-num {
        font-size: 22px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
 *  SKY CONTACT LIST WIDGET
 * ═══════════════════════════════════════════════════════════════════ */
.stb-cl-wrap {
    display: flex;
    flex-direction: column;
}
.stb-cl-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(14,169,208,0.15);
    text-decoration: none;
    transition: opacity 0.2s;
}
.stb-cl-item:first-child {
    padding-top: 0;
}
a.stb-cl-item:hover {
    opacity: 0.75;
}
.stb-cl-item.stb-cl-no-border {
    border-bottom: none;
}
.stb-cl-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(14,169,208,0.22);
    border-radius: 6px;
}
.stb-cl-icon svg {
    width: 18px;
    height: 18px;
    fill: #0ea9d0;
}
.stb-cl-icon i {
    font-size: 18px;
    color: #0ea9d0;
}
.stb-cl-text {
    flex: 1;
    min-width: 0;
}
.stb-cl-title {
    font-size: 13px;
    font-weight: 500;
    color: #0e2b3a;
    margin-bottom: 4px;
}
.stb-cl-sub {
    font-size: 13px;
    color: #3d6070;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════
 *  SKY FINANCE CALCULATOR WIDGET
 * ═══════════════════════════════════════════════════════════════════ */
.stb-fc-wrap {
    --fc-a: #0ea9d0; --fc-ah: #0888aa; --fc-dk: #0b3d52; --fc-pale: #eef6fb;
    --fc-b: rgba(14,169,208,0.14); --fc-bm: rgba(14,169,208,0.22); --fc-bd: rgba(14,169,208,0.35);
    --fc-tx: #0e2b3a; --fc-ts: #3d6070; --fc-tm: #7a9aaa;
}
.stb-fc-layout {
    display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start;
}
.stb-fc-card, .stb-fc-results {
    background: #fff; border: 1px solid var(--fc-bm);
    box-shadow: 0 1px 4px rgba(11,61,82,0.07), 0 4px 20px rgba(11,61,82,0.05);
}
.stb-fc-card-head {
    padding: 24px 28px; border-bottom: 1px solid var(--fc-b);
    display: flex; align-items: center; gap: 12px;
}
.stb-fc-card-icon {
    width: 36px; height: 36px; border: 1px solid var(--fc-bm); background: var(--fc-pale);
    display: flex; align-items: center; justify-content: center; color: var(--fc-a); flex-shrink: 0;
}
.stb-fc-card-title { font-size: 20px; font-weight: 300; color: var(--fc-tx); }
.stb-fc-section { padding: 28px; border-top: 1px solid var(--fc-b); }
.stb-fc-section:first-of-type { border-top: none; }
.stb-fc-step-label {
    font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--fc-ts); margin-bottom: 16px;
}

/* Product grid */
.stb-fc-prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 20px; }
.stb-fc-prod {
    background: #fff; border: 1px solid var(--fc-b); padding: 14px 10px; text-align: center;
    cursor: pointer; transition: all 0.2s; position: relative;
}
.stb-fc-prod:hover { border-color: var(--fc-bm); background: var(--fc-pale); }
.stb-fc-prod.stb-fc-sel { border-color: var(--fc-a); background: rgba(14,169,208,0.1); }
.stb-fc-prod.stb-fc-sel::before {
    content: '✓'; position: absolute; top: 6px; right: 8px; font-size: 10px; color: var(--fc-a); font-weight: 500;
}
.stb-fc-prod-tag { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fc-a); margin-bottom: 6px; font-weight: 500; }
.stb-fc-prod-name { font-size: 15px; font-weight: 300; color: var(--fc-tx); margin-bottom: 4px; }
.stb-fc-prod-price { font-size: 12px; color: var(--fc-ts); }

/* Or divider */
.stb-fc-or {
    display: flex; align-items: center; gap: 12px; margin: 20px 0; font-size: 12px; color: var(--fc-tm);
}
.stb-fc-or::before, .stb-fc-or::after { content: ''; flex: 1; height: 1px; background: var(--fc-b); }

/* Inputs */
.stb-fc-field-wrap { display: flex; flex-direction: column; gap: 6px; }
.stb-fc-label { font-size: 11px; font-weight: 500; color: var(--fc-ts); letter-spacing: 0.04em; text-transform: uppercase; }
.stb-fc-input {
    padding: 11px 14px; background: var(--fc-pale); border: 1px solid var(--fc-bm);
    color: var(--fc-tx); font-size: 14px; outline: none; transition: border-color 0.2s; width: 100%;
    font-family: inherit;
}
.stb-fc-input:focus { border-color: var(--fc-a); background: #fff; }
.stb-fc-input::placeholder { color: var(--fc-tm); }
.stb-fc-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.stb-fc-hint { font-size: 11px; color: var(--fc-tm); line-height: 1.4; margin-top: 8px; }

/* Slider */
.stb-fc-slider-row { display: flex; align-items: center; gap: 12px; }
.stb-fc-slider {
    -webkit-appearance: none; appearance: none; flex: 1; height: 4px;
    background: var(--fc-pale); outline: none; border-radius: 2px;
}
.stb-fc-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
    background: var(--fc-a); cursor: pointer; border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(14,169,208,0.4); transition: transform 0.15s;
}
.stb-fc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.stb-fc-slider::-moz-range-thumb {
    width: 18px; height: 18px; border-radius: 50%; background: var(--fc-a);
    cursor: pointer; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(14,169,208,0.4);
}
.stb-fc-slider-val { font-size: 22px; font-weight: 300; color: var(--fc-a); min-width: 56px; text-align: right; }

/* Term pills */
.stb-fc-term-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.stb-fc-pill {
    padding: 9px 18px; border: 1px solid var(--fc-bm); background: #fff;
    font-size: 13px; color: var(--fc-ts); cursor: pointer; transition: all 0.2s;
}
.stb-fc-pill:hover { border-color: var(--fc-bd); color: var(--fc-tx); }
.stb-fc-pill.stb-fc-sel { border-color: var(--fc-a); background: rgba(14,169,208,0.1); color: var(--fc-a); font-weight: 500; }

/* Calculate button */
.stb-fc-calc-btn {
    width: 100%; padding: 16px; background: var(--fc-a); color: #fff; border: none;
    font-size: 13px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
    cursor: pointer; transition: background 0.25s; margin-top: 24px; font-family: inherit;
}
.stb-fc-calc-btn:hover { background: var(--fc-ah); }

/* Disclaimer */
.stb-fc-disclaimer {
    background: var(--fc-pale); border: 1px solid var(--fc-bm); padding: 20px 26px; margin-top: 28px;
}
.stb-fc-disclaimer p { font-size: 12px; color: var(--fc-tm); line-height: 1.7; margin-bottom: 6px; }
.stb-fc-disclaimer p:last-child { margin-bottom: 0; }
.stb-fc-disclaimer strong { color: var(--fc-ts); }

/* Results panel */
.stb-fc-results.stb-fc-sticky { position: sticky; top: 92px; }
.stb-fc-results { box-shadow: 0 2px 12px rgba(11,61,82,0.1), 0 8px 40px rgba(11,61,82,0.08); }

.stb-fc-placeholder { padding: 40px 26px; text-align: center; color: var(--fc-tm); }
.stb-fc-ph-icon {
    margin: 0 auto 16px; width: 48px; height: 48px; border: 1px solid var(--fc-bm);
    display: flex; align-items: center; justify-content: center; color: var(--fc-a);
}
.stb-fc-ph-title { font-size: 20px; font-weight: 300; color: var(--fc-ts); margin-bottom: 8px; }
.stb-fc-ph-sub { font-size: 13px; color: var(--fc-tm); line-height: 1.6; }

/* Result head */
.stb-fc-rp-head { background: var(--fc-dk); padding: 22px 26px; }
.stb-fc-rp-ey { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fc-a); font-weight: 500; margin-bottom: 8px; }
.stb-fc-rp-product { font-size: 22px; font-weight: 300; color: #fff; line-height: 1.2; }
.stb-fc-rp-product span { font-style: italic; color: rgba(255,255,255,0.5); font-size: 14px; display: block; margin-top: 3px; }

/* Main monthly */
.stb-fc-rp-main { padding: 24px 26px; border-bottom: 1px solid var(--fc-b); text-align: center; background: var(--fc-pale); }
.stb-fc-main-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fc-tm); margin-bottom: 8px; }
.stb-fc-main-val { font-size: 56px; font-weight: 300; color: var(--fc-a); line-height: 1; }
.stb-fc-main-sub { font-size: 12px; color: var(--fc-ts); margin-top: 6px; }
.stb-fc-main-note { font-size: 11px; color: var(--fc-tm); margin-top: 4px; font-style: italic; }

/* Breakdown rows */
.stb-fc-rp-rows { padding: 18px 26px; border-bottom: 1px solid var(--fc-b); }
.stb-fc-rp-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--fc-b); }
.stb-fc-rp-row:last-of-type { border-bottom: none; }
.stb-fc-row-l { font-size: 13px; color: var(--fc-ts); }
.stb-fc-row-v { font-size: 14px; font-weight: 500; color: var(--fc-tx); }
.stb-fc-row-v.stb-fc-accent { color: var(--fc-a); }
.stb-fc-total-row { display: flex; justify-content: space-between; padding: 14px 0 0; border-top: 2px solid var(--fc-bm); margin-top: 4px; }
.stb-fc-total-l { font-size: 13px; font-weight: 500; color: var(--fc-tx); }
.stb-fc-total-v { font-size: 24px; font-weight: 300; color: var(--fc-dk); }

/* ROI */
.stb-fc-rp-roi { padding: 18px 26px; background: rgba(11,61,82,0.03); border-bottom: 1px solid var(--fc-b); }
.stb-fc-roi-title { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fc-a); font-weight: 500; margin-bottom: 12px; }
.stb-fc-roi-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
.stb-fc-roi-row:last-of-type { margin-bottom: 0; }
.stb-fc-roi-l { font-size: 12px; color: var(--fc-ts); }
.stb-fc-roi-v { font-size: 13px; font-weight: 500; color: var(--fc-dk); }

/* Payback bar */
.stb-fc-bar-wrap { margin-top: 12px; }
.stb-fc-bar-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--fc-tm); margin-bottom: 5px; }
.stb-fc-bar-bg { height: 6px; background: var(--fc-pale); border-radius: 3px; overflow: hidden; }
.stb-fc-bar-fill { height: 100%; background: var(--fc-a); border-radius: 3px; transition: width 0.8s cubic-bezier(0.4,0,0.2,1); }

/* CTA strip */
.stb-fc-rp-cta { padding: 20px 26px; background: var(--fc-pale); }
.stb-fc-cta-btn {
    display: block; width: 100%; padding: 14px; background: var(--fc-a); color: #fff; border: none;
    font-size: 12px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
    cursor: pointer; text-decoration: none; text-align: center; transition: background 0.2s; margin-bottom: 8px;
    font-family: inherit;
}
.stb-fc-cta-btn:hover { background: var(--fc-ah); }
.stb-fc-cta-ghost {
    display: block; width: 100%; padding: 14px; background: transparent;
    border: 1px solid var(--fc-bd); color: var(--fc-ts); font-size: 12px; font-weight: 500;
    letter-spacing: 0.09em; text-transform: uppercase; cursor: pointer; text-decoration: none;
    text-align: center; transition: all 0.2s; font-family: inherit;
}
.stb-fc-cta-ghost:hover { border-color: var(--fc-a); color: var(--fc-a); }
.stb-fc-rp-disc { font-size: 10px; color: var(--fc-tm); line-height: 1.5; margin-top: 10px; text-align: center; }

/* Finance Calculator Responsive */
@media (max-width: 1024px) {
    .stb-fc-layout { grid-template-columns: 1fr; }
    .stb-fc-results.stb-fc-sticky { position: static; }
}
@media (max-width: 600px) {
    .stb-fc-prod-grid { grid-template-columns: 1fr 1fr; }
    .stb-fc-row-2 { grid-template-columns: 1fr; }
    .stb-fc-main-val { font-size: 42px; }
}



/* ═══════════════════════════════════════════════════════════════════
 *  SKY FAQ WIDGETS — scoped under .stb-faq-root to beat theme styles
 * ═══════════════════════════════════════════════════════════════════ */

/* ── FAQ Accordion ── */
.stb-faq-root .stb-faq-accordion { display: flex; flex-direction: column; gap: 0; }

.stb-faq-root .stb-faq-section { margin-bottom: 0; }
.stb-faq-root .stb-faq-section + .stb-faq-section { margin-top: 32px; }

.stb-faq-root .stb-faq-sec-head {
    display: flex; align-items: center; gap: 14px;
    padding: 0 0 24px; margin: 0 0 2px; border: none; background: none;
}
.stb-faq-root .stb-faq-sec-icon {
    width: 44px; height: 44px; min-width: 44px;
    border: 1px solid rgba(14,169,208,0.22);
    background: #eef6fb;
    display: flex; align-items: center; justify-content: center;
    color: #0ea9d0; flex-shrink: 0;
    border-radius: 0; padding: 0;
}
.stb-faq-root .stb-faq-sec-icon svg { width: 20px; height: 20px; }
.stb-faq-root .stb-faq-sec-title {
    font-size: 28px; font-weight: 300;
    color: #0e2b3a; line-height: 1.1;
    margin: 0; padding: 0; text-transform: none; letter-spacing: 0;
    font-family: inherit; border: none; background: none;
}
.stb-faq-root .stb-faq-sec-sub {
    font-size: 13px; color: #7a9aaa; margin-top: 2px;
    text-transform: none; letter-spacing: 0; font-weight: 400;
}

/* FAQ Items */
.stb-faq-root .stb-faq-item {
    background: #fff; border: 1px solid rgba(14,169,208,0.22);
    margin: 0 0 6px; padding: 0; border-radius: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: none;
}
.stb-faq-root .stb-faq-item:hover {
    border-color: rgba(14,169,208,0.22);
    box-shadow: 0 1px 4px rgba(11,61,82,0.07), 0 4px 20px rgba(11,61,82,0.05);
}
.stb-faq-root .stb-faq-item.stb-faq-open {
    border-color: #0ea9d0;
    box-shadow: 0 1px 4px rgba(11,61,82,0.07), 0 4px 20px rgba(11,61,82,0.05);
}
.stb-faq-root .stb-faq-item.stb-faq-hidden { display: none; }

/* Question button — reset all theme button styles */
.stb-faq-root .stb-faq-q,
.stb-faq-root button.stb-faq-q {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 18px 22px; cursor: pointer; user-select: none;
    background: none; border: none; width: 100%;
    text-align: left; font-family: inherit; margin: 0;
    border-radius: 0; box-shadow: none; outline: none;
    text-transform: none; letter-spacing: 0;
    font-size: 14px; font-weight: 500; color: #0e2b3a; line-height: 1.45;
}
.stb-faq-root .stb-faq-q:hover,
.stb-faq-root .stb-faq-q:focus {
    background: none; border: none; box-shadow: none; outline: none;
}
.stb-faq-root .stb-faq-q-text {
    font-size: 14px; font-weight: 500; color: #0e2b3a; line-height: 1.45; flex: 1;
    margin: 0; padding: 0; text-transform: none; letter-spacing: 0;
}
.stb-faq-root .stb-faq-item.stb-faq-open .stb-faq-q-text { color: #0ea9d0; }

/* Chevron */
.stb-faq-root .stb-faq-chev {
    flex-shrink: 0; width: 28px; height: 28px; min-width: 28px;
    border: 1px solid rgba(14,169,208,0.22);
    display: flex; align-items: center; justify-content: center;
    color: #7a9aaa; transition: all 0.3s;
    background: #eef6fb; border-radius: 0; padding: 0; margin: 0;
}
.stb-faq-root .stb-faq-item.stb-faq-open .stb-faq-chev {
    background: #0ea9d0; border-color: #0ea9d0;
    color: #fff; transform: rotate(180deg);
}

/* Answer */
.stb-faq-root .stb-faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.stb-faq-root .stb-faq-item.stb-faq-open .stb-faq-a { max-height: 800px; }
.stb-faq-root .stb-faq-a-inner {
    padding: 0 22px 20px; border-top: 1px solid rgba(14,169,208,0.14);
}
.stb-faq-root .stb-faq-a-inner p {
    font-size: 14px; color: #3d6070;
    line-height: 1.75; font-weight: 300; margin: 0 0 10px;
    text-transform: none; letter-spacing: 0;
}
.stb-faq-root .stb-faq-a-inner p:last-child { margin-bottom: 0; }
.stb-faq-root .stb-faq-a-inner ul { padding-left: 18px; margin: 8px 0; list-style: disc; }
.stb-faq-root .stb-faq-a-inner li {
    font-size: 14px; color: #3d6070; line-height: 1.75; font-weight: 300; margin-bottom: 4px;
}
.stb-faq-root .stb-faq-a-inner a { color: #0ea9d0; text-decoration: none; font-weight: 500; }
.stb-faq-root .stb-faq-a-inner a:hover { text-decoration: underline; }

/* Empty state */
.stb-faq-root .stb-faq-empty { padding: 56px 24px; text-align: center; color: #7a9aaa; display: none; }
.stb-faq-root .stb-faq-empty-icon {
    margin: 0 auto 16px; width: 48px; height: 48px;
    border: 1px solid rgba(14,169,208,0.22);
    display: flex; align-items: center; justify-content: center; color: #0ea9d0;
}
.stb-faq-root .stb-faq-empty-title { font-size: 22px; font-weight: 300; color: #3d6070; margin-bottom: 8px; }
.stb-faq-root .stb-faq-empty-sub { font-size: 13px; line-height: 1.6; }
.stb-faq-root .stb-faq-empty-sub a { color: #0ea9d0; text-decoration: none; }

/* Section animation */
@keyframes stb-faq-fi { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.stb-faq-root .stb-faq-section { animation: stb-faq-fi 0.3s ease forwards; }

/* ── FAQ Category Nav ── */
.stb-faq-root .stb-faq-nav.stb-faq-sticky { position: sticky; top: 88px; }
.stb-faq-root .stb-faq-nav-title {
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    color: #7a9aaa; font-weight: 500; margin-bottom: 14px; padding: 0 2px;
}
.stb-faq-root .stb-faq-nav-list {
    display: flex; flex-direction: column; gap: 2px;
    list-style: none; margin: 0; padding: 0;
}
/* Category nav buttons — full reset */
.stb-faq-root .stb-faq-nav-btn,
.stb-faq-root button.stb-faq-nav-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: transparent; cursor: pointer;
    font-family: inherit; font-size: 13px; color: #3d6070;
    text-align: left; width: 100%;
    transition: all 0.2s;
    border: none; border-left: 2px solid transparent;
    border-radius: 0; box-shadow: none; margin: 0;
    text-transform: none; letter-spacing: 0;
    font-weight: 400; line-height: 1.4;
    outline: none; text-decoration: none;
    min-height: auto; height: auto;
}
.stb-faq-root .stb-faq-nav-btn:hover,
.stb-faq-root button.stb-faq-nav-btn:hover {
    color: #0e2b3a; background: #eef6fb;
    border-left-color: rgba(14,169,208,0.22);
    border-right: none; border-top: none; border-bottom: none;
}
.stb-faq-root .stb-faq-nav-btn.stb-faq-on,
.stb-faq-root button.stb-faq-nav-btn.stb-faq-on {
    color: #0ea9d0; background: rgba(14,169,208,0.09);
    border-left-color: #0ea9d0; font-weight: 500;
    border-right: none; border-top: none; border-bottom: none;
}
.stb-faq-root .stb-faq-nav-btn svg { flex-shrink: 0; }
.stb-faq-root .stb-faq-nav-count {
    margin-left: auto; font-size: 10px; background: #eef6fb;
    border: 1px solid rgba(14,169,208,0.22); color: #7a9aaa;
    padding: 1px 7px; border-radius: 10px; min-width: 22px;
    text-align: center; font-weight: 400;
    text-transform: none; letter-spacing: 0;
}
.stb-faq-root .stb-faq-nav-btn.stb-faq-on .stb-faq-nav-count {
    background: rgba(14,169,208,0.09); border-color: rgba(14,169,208,0.22); color: #0ea9d0;
}

@media (max-width: 1024px) {
    .stb-faq-root .stb-faq-nav.stb-faq-sticky { position: static; }
    .stb-faq-root .stb-faq-nav { background: #fff; border: 1px solid rgba(14,169,208,0.22); padding: 16px; }
    .stb-faq-root .stb-faq-nav-list { flex-direction: row; flex-wrap: wrap; gap: 8px; }
    .stb-faq-root .stb-faq-nav-btn,
    .stb-faq-root button.stb-faq-nav-btn {
        width: auto; border: 1px solid rgba(14,169,208,0.22);
        padding: 7px 14px; font-size: 12px;
    }
    .stb-faq-root .stb-faq-nav-btn.stb-faq-on,
    .stb-faq-root button.stb-faq-nav-btn.stb-faq-on { border-color: #0ea9d0; }
}

/* ── FAQ Search ── */
.stb-faq-root .stb-faq-search-wrap { max-width: 580px; }
.stb-faq-root .stb-faq-search-inner { position: relative; }
.stb-faq-root .stb-faq-search-input,
.stb-faq-root input.stb-faq-search-input {
    width: 100%; padding: 16px 56px 16px 20px;
    font-family: inherit; font-size: 15px;
    color: #0e2b3a; background: #fff;
    border: 1px solid transparent; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    border-radius: 0; box-shadow: none; margin: 0;
    text-transform: none; letter-spacing: 0;
    height: auto; min-height: auto;
}
.stb-faq-root .stb-faq-search-input:focus {
    border-color: #0ea9d0;
    box-shadow: 0 0 0 3px rgba(14,169,208,0.12);
}
.stb-faq-root .stb-faq-search-input::placeholder { color: #7a9aaa; }
.stb-faq-root .stb-faq-search-icon {
    position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
    color: #7a9aaa; pointer-events: none;
}
.stb-faq-root .stb-faq-search-count { margin-top: 10px; font-size: 12px; min-height: 18px; }

/* ── FAQ Help Card ── */
.stb-faq-root .stb-faq-help {
    background: #0b3d52; padding: 40px; margin-top: 40px;
    border-radius: 0; border: none;
}
.stb-faq-root .stb-faq-help-title {
    font-size: 28px; font-weight: 300;
    color: #fff; margin: 0 0 10px;
    text-transform: none; letter-spacing: 0; line-height: 1.2;
}
.stb-faq-root .stb-faq-help-sub {
    font-size: 14px; color: rgba(255,255,255,0.52);
    line-height: 1.7; font-weight: 300; margin: 0 0 28px; max-width: 480px;
    text-transform: none; letter-spacing: 0;
}
.stb-faq-root .stb-faq-help-options {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    list-style: none; margin: 0; padding: 0;
}
.stb-faq-root .stb-faq-help-opt {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    padding: 20px; transition: background 0.2s; border-radius: 0;
    display: flex; flex-direction: column;
}
.stb-faq-root .stb-faq-help-opt:hover { background: rgba(255,255,255,0.1); }
.stb-faq-root .stb-faq-help-icon {
    color: #0ea9d0; margin-bottom: 10px;
    display: flex; align-items: center;
}
.stb-faq-root .stb-faq-help-icon svg {
    width: 22px; height: 22px; fill: none; stroke: currentColor;
    stroke-width: 1.3; stroke-linecap: round;
}
.stb-faq-root .stb-faq-help-icon i { font-size: 22px; color: #0ea9d0; }
.stb-faq-root .stb-faq-help-opt-title {
    font-size: 13px; font-weight: 500; color: #fff; margin: 0 0 4px;
    text-transform: none; letter-spacing: 0; line-height: 1.3;
}
.stb-faq-root .stb-faq-help-opt-sub {
    font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.4;
    margin: 0; text-transform: none; letter-spacing: 0;
}
.stb-faq-root .stb-faq-help-link {
    display: block; margin-top: 10px; font-size: 11px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase; color: #0ea9d0;
    text-decoration: none; transition: color 0.2s; line-height: 1.3;
}
.stb-faq-root .stb-faq-help-link:hover { color: #fff; text-decoration: none; }

@media (max-width: 768px) {
    .stb-faq-root .stb-faq-help { padding: 28px 20px; margin-top: 28px; }
    .stb-faq-root .stb-faq-help-title { font-size: 24px; }
    .stb-faq-root .stb-faq-help-sub { font-size: 13px; margin-bottom: 20px; }
    .stb-faq-root .stb-faq-help-options { grid-template-columns: 1fr; gap: 10px; }
    .stb-faq-root .stb-faq-help-opt { padding: 16px; }
}

/* ═══════════════════════════════════════════════════════════════════
 *  SKY WHAT YOU GET WIDGET — scoped under .stb-wyg-root
 * ═══════════════════════════════════════════════════════════════════ */
.stb-wyg-root .stb-wyg-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
    background: rgba(14,169,208,0.12); border: 1px solid rgba(14,169,208,0.2);
}
.stb-wyg-root .stb-wyg-item {
    background: #0b3d52; padding: 36px 28px;
    transition: background 0.25s; cursor: default;
}
.stb-wyg-root .stb-wyg-item:hover { background: #0d4a62; }
.stb-wyg-root .stb-wyg-icon {
    width: 44px; height: 44px; min-width: 44px;
    border: 1px solid rgba(14,169,208,0.25);
    background: rgba(14,169,208,0.07);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; transition: background 0.25s;
    color: rgba(14,169,208,0.85);
}
.stb-wyg-root .stb-wyg-item:hover .stb-wyg-icon { background: rgba(14,169,208,0.15); }
.stb-wyg-root .stb-wyg-icon svg {
    width: 20px; height: 20px; fill: currentColor;
}
.stb-wyg-root .stb-wyg-icon i { font-size: 20px; color: inherit; }
.stb-wyg-root .stb-wyg-title {
    font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 8px;
    text-transform: none; letter-spacing: 0;
}
.stb-wyg-root .stb-wyg-desc {
    font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.65; font-weight: 300;
}
.stb-wyg-root .stb-wyg-note {
    font-size: 11px; color: rgba(14,169,208,0.7); margin-top: 8px; font-style: italic;
}

/* Responsive */
@media (max-width: 1100px) {
    .stb-wyg-root .stb-wyg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .stb-wyg-root .stb-wyg-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
 *  SKY PROVIDER CARDS WIDGET — scoped under .stb-pv-root
 * ═══════════════════════════════════════════════════════════════════ */
.stb-pv-root .stb-pv-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: rgba(14,169,208,0.14); border: 1px solid rgba(14,169,208,0.22);
}
.stb-pv-root .stb-pv-card {
    background: #fff; display: flex; flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative; overflow: hidden;
}
.stb-pv-root .stb-pv-card:hover {
    box-shadow: 0 4px 16px rgba(11,61,82,0.1), 0 12px 48px rgba(11,61,82,0.09);
    transform: translateY(-2px); z-index: 2;
}
/* Left accent line on hover */
.stb-pv-root .stb-pv-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: #0ea9d0;
    transform: scaleY(0); transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.stb-pv-root .stb-pv-card:hover::before { transform: scaleY(1); }

/* Card top */
.stb-pv-root .stb-pv-top {
    padding: 28px 28px 20px; border-bottom: 1px solid rgba(14,169,208,0.14); flex: 1;
}
.stb-pv-root .stb-pv-num {
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: #0ea9d0; font-weight: 500; margin-bottom: 12px;
}
.stb-pv-root .stb-pv-name {
    font-size: 26px; font-weight: 300; color: #0e2b3a;
    margin: 0 0 8px; line-height: 1.15;
    text-transform: none; letter-spacing: 0;
}
.stb-pv-root .stb-pv-contact {
    font-size: 12px; color: #3d6070; line-height: 1.55; font-weight: 300; margin-bottom: 16px;
}
.stb-pv-root .stb-pv-contact strong {
    color: #0e2b3a; font-weight: 500; display: block; margin-bottom: 2px;
}
.stb-pv-root .stb-pv-url {
    color: #0ea9d0; text-decoration: none; font-size: 12px;
}
.stb-pv-root .stb-pv-url:hover { text-decoration: underline; }
.stb-pv-root .stb-pv-desc {
    background: #eef6fb; border: 1px solid rgba(14,169,208,0.14);
    padding: 10px 14px; font-size: 12px; color: #3d6070;
    line-height: 1.5; font-weight: 300;
}
.stb-pv-root .stb-pv-desc strong { color: #0e2b3a; font-weight: 500; }

/* Card footer */
.stb-pv-root .stb-pv-footer {
    padding: 16px 28px; background: #eef6fb;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    border-top: 1px solid rgba(14,169,208,0.14);
}
.stb-pv-root .stb-pv-tel {
    font-size: 13px; font-weight: 500; color: #0e2b3a;
    text-decoration: none; display: flex; align-items: center; gap: 7px;
    transition: color 0.2s;
}
.stb-pv-root .stb-pv-tel:hover { color: #0ea9d0; }
.stb-pv-root .stb-pv-tel svg { color: #0ea9d0; flex-shrink: 0; }
.stb-pv-root .stb-pv-web {
    font-size: 11px; font-weight: 500; letter-spacing: 0.07em;
    text-transform: uppercase; color: #0ea9d0; text-decoration: none;
    display: flex; align-items: center; gap: 5px; transition: color 0.2s; white-space: nowrap;
}
.stb-pv-root .stb-pv-web:hover { color: #0888aa; }
.stb-pv-root .stb-pv-web svg { flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
    .stb-pv-root .stb-pv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .stb-pv-root .stb-pv-grid { grid-template-columns: 1fr; }
    .stb-pv-root .stb-pv-top { padding: 20px; }
    .stb-pv-root .stb-pv-footer { padding: 14px 20px; flex-wrap: wrap; }
    .stb-pv-root .stb-pv-name { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════════════════
 *  SKY CPD TRAINING NOTE
 * ═══════════════════════════════════════════════════════════════════ */
.stb-cpdn-root .stb-cpdn-wrap {
    background: #eef6fb; border: 1px solid rgba(14,169,208,0.22);
    padding: 18px 22px; display: flex; align-items: center; gap: 18px;
}
.stb-cpdn-root .stb-cpdn-img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.stb-cpdn-root .stb-cpdn-title { font-size: 13px; font-weight: 500; color: #0e2b3a; margin-bottom: 3px; }
.stb-cpdn-root .stb-cpdn-desc { font-size: 12px; color: #3d6070; font-weight: 300; line-height: 1.55; }
@media (max-width: 600px) {
    .stb-cpdn-root .stb-cpdn-wrap { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px; }
}

/* ═══════════════════════════════════════════════════════════════════
 *  SKY INTERFACE MODES
 * ═══════════════════════════════════════════════════════════════════ */
.stb-im-root .stb-im-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stb-im-root .stb-im-card {
    background: #fff; border: 1px solid rgba(14,169,208,0.22);
    overflow: hidden; display: flex; flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}
.stb-im-root .stb-im-card:hover { box-shadow: 0 4px 16px rgba(11,61,82,0.1), 0 12px 48px rgba(11,61,82,0.08); transform: translateY(-2px); }
.stb-im-root .stb-im-img-wrap {
    width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; background: #0b3d52;
}
.stb-im-root .stb-im-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.stb-im-root .stb-im-card:hover .stb-im-img-wrap img { transform: scale(1.04); }
.stb-im-root .stb-im-badge {
    position: absolute; top: 16px; left: 16px;
    font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 4px 12px; background: #0ea9d0; color: #fff;
}
.stb-im-root .stb-im-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.stb-im-root .stb-im-label {
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: #0ea9d0; font-weight: 500; margin-bottom: 8px;
}
.stb-im-root .stb-im-title { font-size: 26px; font-weight: 300; color: #0e2b3a; margin-bottom: 12px; line-height: 1.2; }
.stb-im-root .stb-im-desc { font-size: 14px; color: #3d6070; line-height: 1.75; font-weight: 300; margin-bottom: 18px; flex: 1; }
.stb-im-root .stb-im-points { display: flex; flex-direction: column; gap: 7px; }
.stb-im-root .stb-im-mp {
    display: flex; align-items: center; gap: 9px; font-size: 13px; color: #3d6070; font-weight: 300;
}
.stb-im-root .stb-im-mp::before { content: '✓'; color: #0ea9d0; font-size: 11px; font-weight: 500; flex-shrink: 0; }
.stb-im-root .stb-im-footer {
    background: #0b3d52; padding: 22px 28px; margin-top: 20px;
    font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.6; font-weight: 300;
}
.stb-im-root .stb-im-footer strong { color: #fff; font-weight: 500; display: block; margin-bottom: 4px; }
@media (max-width: 1024px) { .stb-im-root .stb-im-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════
 *  SKY WAVELENGTH CARDS
 * ═══════════════════════════════════════════════════════════════════ */
.stb-wl-root .stb-wl-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: rgba(14,169,208,0.12); border: 1px solid rgba(14,169,208,0.2);
}
.stb-wl-root .stb-wl-card {
    background: #0b3d52; padding: 44px 36px; position: relative; overflow: hidden;
    transition: background 0.3s; cursor: default;
}
.stb-wl-root .stb-wl-card:hover { background: #0d4a62; }
.stb-wl-root .stb-wl-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    transition: height 0.3s;
}
.stb-wl-root .stb-wl-card:hover .stb-wl-accent { height: 5px; }
.stb-wl-root .stb-wl-nm { font-size: 72px; font-weight: 300; line-height: 0.92; margin-bottom: 4px; letter-spacing: -0.02em; }
.stb-wl-root .stb-wl-unit { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.4); }
.stb-wl-root .stb-wl-type { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; color: rgba(255,255,255,0.55); margin-bottom: 14px; margin-top: 6px; }
.stb-wl-root .stb-wl-title { font-size: 22px; font-weight: 300; color: #fff; margin-bottom: 12px; line-height: 1.25; }
.stb-wl-root .stb-wl-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }
.stb-wl-root .stb-wl-targets { display: flex; flex-direction: column; gap: 7px; }
.stb-wl-root .stb-wl-target {
    display: flex; align-items: center; gap: 9px; font-size: 12px; color: rgba(255,255,255,0.62); font-weight: 300;
}
.stb-wl-root .stb-wl-target::before { content: ''; flex-shrink: 0; width: 12px; height: 1px; background: var(--wl-c, #0ea9d0); }
.stb-wl-root .stb-wl-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; opacity: 0.2; }
.stb-wl-root .stb-wl-note {
    margin-top: 28px; background: rgba(14,169,208,0.08); border: 1px solid rgba(14,169,208,0.2);
    padding: 20px 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.stb-wl-root .stb-wl-note svg { flex-shrink: 0; }
.stb-wl-root .stb-wl-note-text { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 300; line-height: 1.6; }
.stb-wl-root .stb-wl-note-text strong { color: #fff; font-weight: 500; }
@media (max-width: 1024px) { .stb-wl-root .stb-wl-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .stb-wl-root .stb-wl-card { padding: 32px 24px; }
    .stb-wl-root .stb-wl-nm { font-size: 56px; }
    .stb-wl-root .stb-wl-note { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
 *  SKY WHAT IS CRYOTHERAPY WIDGET — scoped under .stb-crw-root
 * ═══════════════════════════════════════════════════════════════════ */
.stb-crw-root {
    --crw-a: #0ea9d0; --crw-ad: #0888aa; --crw-dk: #0b3d52;
    --crw-tx: #0e2b3a; --crw-ts: #3d6070; --crw-pale: #eef6fb;
    --crw-b: rgba(14,169,208,0.14); --crw-bm: rgba(14,169,208,0.22);
    background: #fff; border-top: 1px solid var(--crw-b); border-bottom: 1px solid var(--crw-b);
}
.stb-crw-root .stb-crw-inner { max-width: 1240px; margin: 0 auto; padding: 96px 52px; }

/* top: eyebrow + heading + intro */
.stb-crw-root .stb-crw-top { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 64px; }
.stb-crw-root .stb-crw-ey {
    font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--crw-a);
    font-weight: 500; margin-bottom: 13px; display: flex; align-items: center; gap: 10px;
}
.stb-crw-root .stb-crw-ey::before { content: ''; width: 20px; height: 1px; background: var(--crw-a); display: block; }
.stb-crw-root .stb-crw-h {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(38px, 4.5vw, 62px); font-weight: 300; line-height: 1.04;
    letter-spacing: -.015em; color: var(--crw-tx); margin-bottom: 0;
}
.stb-crw-root .stb-crw-h em { font-style: italic; color: var(--crw-a); }
.stb-crw-root .stb-crw-intro { font-size: 15px; color: var(--crw-ts); line-height: 1.8; font-weight: 300; }
.stb-crw-root .stb-crw-intro p { margin-bottom: 14px; }
.stb-crw-root .stb-crw-intro p:last-child { margin-bottom: 0; }

/* body: split layout */
.stb-crw-root .stb-crw-body {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    background: var(--crw-b); border: 1px solid var(--crw-bm);
}

/* visual panel */
.stb-crw-root .stb-crw-visual {
    background: var(--crw-dk); padding: 52px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; position: relative; overflow: hidden; min-height: 480px;
}
.stb-crw-root .stb-crw-visual::before {
    content: ''; position: absolute; right: -60px; bottom: -60px; width: 260px; height: 260px;
    border-radius: 50%; background: rgba(14,169,208,0.07); pointer-events: none;
}
.stb-crw-root .stb-crw-visual::after {
    content: ''; position: absolute; left: -40px; top: -40px; width: 180px; height: 180px;
    border-radius: 50%; background: rgba(14,169,208,0.05); pointer-events: none;
}
.stb-crw-root .stb-crw-temp {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(64px, 8vw, 112px); font-weight: 300; color: var(--crw-a);
    line-height: .95; letter-spacing: -.03em; position: relative; z-index: 1; text-align: center;
}
.stb-crw-root .stb-crw-temp-unit { font-size: .32em; color: rgba(255,255,255,0.5); vertical-align: super; }
.stb-crw-root .stb-crw-temp-label {
    font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase;
    letter-spacing: .12em; margin-top: 10px; text-align: center; position: relative; z-index: 1;
}
.stb-crw-root .stb-crw-visual-divider {
    width: 40px; height: 1px; background: rgba(14,169,208,0.3); margin: 28px auto; position: relative; z-index: 1;
}
.stb-crw-root .stb-crw-stats { display: flex; flex-direction: column; gap: 2px; width: 100%; position: relative; z-index: 1; }
.stb-crw-root .stb-crw-stat {
    background: rgba(14,169,208,0.08); border: 1px solid rgba(14,169,208,0.18);
    padding: 14px 20px; display: flex; align-items: center; gap: 16px; transition: background .25s;
}
.stb-crw-root .stb-crw-stat:hover { background: rgba(14,169,208,0.14); }
.stb-crw-root .stb-crw-stat-n {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px; font-weight: 300; color: var(--crw-a); line-height: 1; flex-shrink: 0; min-width: 56px; text-align: right;
}
.stb-crw-root .stb-crw-stat-divider { width: 1px; height: 28px; background: rgba(14,169,208,0.25); flex-shrink: 0; }
.stb-crw-root .stb-crw-stat-text { font-size: 12px; color: rgba(255,255,255,0.58); font-weight: 300; line-height: 1.55; }
.stb-crw-root .stb-crw-stat-text strong { color: rgba(255,255,255,0.85); font-weight: 500; display: block; margin-bottom: 1px; }

/* single-column fallback when one panel is hidden */
.stb-crw-root .stb-crw-body--single { grid-template-columns: 1fr; }

/* explanation panel */
.stb-crw-root .stb-crw-explain { background: #fff; padding: 52px; }
.stb-crw-root .stb-crw-explain-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px; font-weight: 300; color: var(--crw-tx); margin-bottom: 24px;
}
.stb-crw-root .stb-crw-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.stb-crw-root .stb-crw-step {
    display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--crw-b);
}
.stb-crw-root .stb-crw-step:first-child { padding-top: 0; }
.stb-crw-root .stb-crw-step:last-child { border-bottom: none; padding-bottom: 0; }
.stb-crw-root .stb-crw-step-n {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px; font-weight: 300; color: var(--crw-a); line-height: 1; flex-shrink: 0; width: 38px; text-align: right;
}
.stb-crw-root .stb-crw-step-title { font-size: 13px; font-weight: 500; color: var(--crw-tx); margin-bottom: 5px; }
.stb-crw-root .stb-crw-step-desc { font-size: 13px; color: var(--crw-ts); line-height: 1.68; font-weight: 300; }

/* vs comparison */
.stb-crw-root .stb-crw-vs {
    background: var(--crw-pale); border: 1px solid var(--crw-bm); padding: 20px 22px;
}
.stb-crw-root .stb-crw-vs-label {
    font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--crw-a);
    font-weight: 500; margin-bottom: 12px;
}
.stb-crw-root .stb-crw-vs-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 9px; }
.stb-crw-root .stb-crw-vs-row:last-child { margin-bottom: 0; }
.stb-crw-root .stb-crw-vs-icon {
    width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 10px; font-weight: 600; flex-shrink: 0; margin-top: 1px;
}
.stb-crw-root .stb-crw-vs-icon.yes { background: rgba(14,169,208,0.15); color: var(--crw-a); }
.stb-crw-root .stb-crw-vs-icon.no { background: rgba(160,30,30,0.1); color: #a01e1e; }
.stb-crw-root .stb-crw-vs-text { font-size: 12px; color: var(--crw-ts); line-height: 1.55; font-weight: 300; }
.stb-crw-root .stb-crw-vs-text strong { color: var(--crw-tx); font-weight: 500; }

/* conditions strip */
.stb-crw-root .stb-crw-conditions {
    background: var(--crw-dk); padding: 36px 52px; border-top: 2px solid rgba(14,169,208,0.2);
}
.stb-crw-root .stb-crw-cond-label {
    font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); font-weight: 500; margin-bottom: 20px; text-align: center;
}
.stb-crw-root .stb-crw-cond-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
    background: rgba(14,169,208,0.12); border: 1px solid rgba(14,169,208,0.18);
}
.stb-crw-root .stb-crw-cond {
    background: var(--crw-dk); padding: 18px 14px; display: flex; flex-direction: column;
    align-items: center; gap: 10px; transition: background .2s; cursor: default;
}
.stb-crw-root .stb-crw-cond:hover { background: #0d4a62; }
.stb-crw-root .stb-crw-cond-img {
    width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
    border: 1px solid rgba(14,169,208,0.25); flex-shrink: 0;
}
.stb-crw-root .stb-crw-cond-name { font-size: 11px; color: rgba(255,255,255,0.65); text-align: center; font-weight: 400; }

/* CTA strip */
.stb-crw-root .stb-crw-cta-strip {
    display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
    padding: 28px 52px; background: var(--crw-pale); border-top: 1px solid var(--crw-bm);
}
.stb-crw-root .stb-crw-cta-text { font-size: 15px; color: var(--crw-ts); font-weight: 300; line-height: 1.6; }
.stb-crw-root .stb-crw-cta-text strong { color: var(--crw-tx); font-weight: 500; display: block; margin-bottom: 2px; }
.stb-crw-root .stb-crw-cta-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.stb-crw-root .stb-crw-btn-p {
    font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
    padding: 12px 28px; background: var(--crw-a); color: #fff; text-decoration: none;
    display: inline-block; transition: background .2s; border: none;
}
.stb-crw-root .stb-crw-btn-p:hover { background: var(--crw-ad); }
.stb-crw-root .stb-crw-btn-o {
    font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
    padding: 11px 28px; border: 1px solid var(--crw-bm); color: var(--crw-ts);
    text-decoration: none; display: inline-block; transition: all .2s;
}
.stb-crw-root .stb-crw-btn-o:hover { border-color: var(--crw-a); color: var(--crw-a); }

/* responsive */
@media (max-width: 1024px) {
    .stb-crw-root .stb-crw-top { grid-template-columns: 1fr; gap: 24px; }
    .stb-crw-root .stb-crw-body { grid-template-columns: 1fr; }
    .stb-crw-root .stb-crw-visual { min-height: 320px; padding: 40px 36px; }
    .stb-crw-root .stb-crw-cond-grid { grid-template-columns: repeat(3, 1fr); }
    .stb-crw-root .stb-crw-cta-strip { padding: 24px 32px; }
}
@media (max-width: 768px) {
    .stb-crw-root .stb-crw-inner { padding: 64px 20px; }
    .stb-crw-root .stb-crw-explain { padding: 36px 20px; }
    .stb-crw-root .stb-crw-conditions { padding: 28px 20px; }
    .stb-crw-root .stb-crw-cond-grid { grid-template-columns: repeat(3, 1fr); }
    .stb-crw-root .stb-crw-cta-strip { padding: 20px; }
}
@media (max-width: 480px) {
    .stb-crw-root .stb-crw-cond-grid { grid-template-columns: repeat(2, 1fr); }
    .stb-crw-root .stb-crw-cta-btns { flex-direction: column; }
    .stb-crw-root .stb-crw-btn-p, .stb-crw-root .stb-crw-btn-o { text-align: center; }
}
