/* ==========================================================================
   Sushka Page — Complete CSS
   WordPress template for "Просушка помещений"
   5 color schemes: green (default), blue, gray, orange, salad
   Applied via [data-scheme="X"] on .sushka-page wrapper
   ========================================================================== */


/* ==========================================================================
   1. CSS CUSTOM PROPERTIES — DEFAULT (GREEN) SCHEME
   ========================================================================== */

:root {
    /* Accent — green */
    --s-accent: #81d742;
    --s-accent-hover: #6aaa34;
    --s-accent-light: rgba(129, 215, 66, 0.1);
    --s-accent-glow: rgba(129, 215, 66, 0.3);

    /* Shared palette */
    --s-white: #fff;
    --s-bg: #fff;
    --s-bg-alt: #f7f7f7;
    --s-bg-alt2: #f9f9f9;
    --s-dark: #242424;
    --s-dark2: #393738;
    --s-text: #393738;
    --s-text-secondary: #54595F;
    --s-text-muted: #7A7A7A;
    --s-border: #e2e2e2;
    --s-border-light: #eee;
    --s-card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --s-card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
    --s-radius: 12px;
    --s-radius-sm: 8px;
    --s-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --s-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


/* ==========================================================================
   2. COLOR SCHEMES
   ========================================================================== */

/* --- BLUE --- */
.sushka-page[data-scheme="blue"] {
    --s-accent: #2196F3;
    --s-accent-hover: #1976D2;
    --s-accent-light: rgba(33, 150, 243, 0.1);
    --s-accent-glow: rgba(33, 150, 243, 0.3);
}

/* --- GRAY --- */
.sushka-page[data-scheme="gray"] {
    --s-accent: #607D8B;
    --s-accent-hover: #455A64;
    --s-accent-light: rgba(96, 125, 139, 0.1);
    --s-accent-glow: rgba(96, 125, 139, 0.3);
}

/* --- ORANGE --- */
.sushka-page[data-scheme="orange"] {
    --s-accent: #FF9800;
    --s-accent-hover: #F57C00;
    --s-accent-light: rgba(255, 152, 0, 0.1);
    --s-accent-glow: rgba(255, 152, 0, 0.3);
}

/* --- SALAD --- */
.sushka-page[data-scheme="salad"] {
    --s-accent: #8BC34A;
    --s-accent-hover: #7CB342;
    --s-accent-light: rgba(139, 195, 74, 0.1);
    --s-accent-glow: rgba(139, 195, 74, 0.3);
}


/* ==========================================================================
   2b. Интеграция в тему (Roofix и др.)
   Проблема на сторонних темах: .sushka-page попадает в узкий .container / .col-* или
   в блок с overflow-x: hidden — визуально «съедаются» боковые поля .s-container.
   Селекторы page-template-* работают только если совпадают class у body и разметка #content.
   ========================================================================== */

body.page-template-page-sushka-php #content.site-content,
body.page-template-page-sushka #content.site-content,
body.post-template-page-sushka-php #content.site-content,
body.post-template-page-sushka #content.site-content {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow-x: visible;
}

@supports selector(:has(*)) {
    body:has(.sushka-page) #content,
    body:has(.sushka-page) #content.site-content,
    body:has(.sushka-page) .site-content,
    body:has(.sushka-page) #primary,
    body:has(.sushka-page) #main,
    body:has(.sushka-page) main.site-main,
    body:has(.sushka-page) .content-area,
    body:has(.sushka-page) .site-main {
        max-width: none !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: visible !important;
    }

    body:has(.sushka-page) .container:has(.sushka-page),
    body:has(.sushka-page) .container-fluid:has(.sushka-page) {
        max-width: none !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: visible !important;
    }

    body:has(.sushka-page) .ast-container:has(.sushka-page),
    body:has(.sushka-page) #content.site-content > .ast-container:has(.sushka-page) {
        max-width: none !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: visible !important;
    }

    body:has(.sushka-page) .ast-container-fluid:has(.sushka-page) {
        max-width: none !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: visible !important;
    }

    body:has(.sushka-page) [class*="col-"]:has(.sushka-page) {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        overflow-x: visible !important;
    }

    body:has(.sushka-page) #page,
    body:has(.sushka-page) #page.site,
    body:has(.sushka-page) .site,
    body:has(.sushka-page) #wrapper,
    body:has(.sushka-page) .wrapper {
        overflow-x: visible !important;
    }
}

/* ==========================================================================
   3. RESET & BASE
   ========================================================================== */

.sushka-page *,
.sushka-page *::before,
.sushka-page *::after {
    box-sizing: border-box;
}

.sushka-page {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    --s-container: 1200px;
    margin: 0;
    padding: 0;
    background: var(--s-bg);
    font-family: var(--s-font);
    color: var(--s-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sushka-page img {
    max-width: 100%;
    height: auto;
}

.sushka-page a {
    text-decoration: none;
    color: var(--s-accent);
    transition: color var(--s-transition);
}

.sushka-page a:hover {
    color: var(--s-accent-hover);
}

.s-container {
    width: 100%;
    max-width: var(--s-container);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.s-section {
    padding: 80px 0;
    position: relative;
}

.s-section--white {
    background: var(--s-bg);
}

.s-section--gray {
    background: var(--s-bg-alt);
}

.s-section--dark {
    background: var(--s-dark);
    color: var(--s-white);
}

/* Accent section — gradient per scheme */
.s-section--accent {
    background: linear-gradient(135deg, #73c35c 0%, var(--s-accent) 50%, #61CE70 100%);
    color: var(--s-white);
}

.sushka-page[data-scheme="blue"] .s-section--accent {
    background: linear-gradient(135deg, #1e88e5 0%, #2196F3 50%, #42a5f5 100%);
}

.sushka-page[data-scheme="gray"] .s-section--accent {
    background: linear-gradient(135deg, #546e7a 0%, #607D8B 50%, #78909c 100%);
}

.sushka-page[data-scheme="orange"] .s-section--accent {
    background: linear-gradient(135deg, #fb8c00 0%, #FF9800 50%, #ffa726 100%);
}

.sushka-page[data-scheme="salad"] .s-section--accent {
    background: linear-gradient(135deg, #7cb342 0%, #8BC34A 50%, #9ccc65 100%);
}

/* Labels, titles, subtitles */
.s-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--s-accent);
    margin-bottom: 12px;
}

.s-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--s-text);
    line-height: 1.2;
    margin: 0 0 16px;
}

.s-subtitle {
    font-size: 17px;
    color: var(--s-text-muted);
    max-width: 640px;
    margin: 0 0 48px;
    line-height: 1.7;
}

.s-title--center,
.s-subtitle--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.s-section--dark .s-title,
.s-section--accent .s-title {
    color: var(--s-white);
}

.s-section--dark .s-subtitle,
.s-section--accent .s-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.s-section--dark .s-label {
    color: var(--s-accent);
}

.s-section--accent .s-label {
    color: rgba(255, 255, 255, 0.7);
}


/* ==========================================================================
   4. BUTTONS
   ========================================================================== */

.s-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--s-font);
    border-radius: var(--s-radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--s-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.s-btn--primary {
    background: var(--s-accent);
    color: var(--s-white);
    box-shadow: 0 4px 16px var(--s-accent-glow);
}

.s-btn--primary:hover {
    background: var(--s-accent-hover);
    color: var(--s-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--s-accent-glow);
}

.s-btn--outline {
    background: transparent;
    color: var(--s-text);
    border: 2px solid var(--s-border);
}

.s-btn--outline:hover {
    border-color: var(--s-accent);
    color: var(--s-accent);
}

.s-btn--white {
    background: var(--s-white);
    color: var(--s-dark);
}

.s-btn--white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.s-btn--outline-white {
    background: transparent;
    color: var(--s-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.s-btn--outline-white:hover {
    border-color: var(--s-white);
    color: var(--s-white);
}


/* ==========================================================================
   5. HERO
   ========================================================================== */

.s-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #f0fbe8 0%, #e8f9dd 40%, var(--s-bg-alt) 100%);
    overflow: hidden;
    padding: 100px 0 80px;
}

/* Hero background per scheme */
.sushka-page[data-scheme="blue"] .s-hero {
    background: linear-gradient(160deg, #e8f4fd 0%, #d6ecfa 40%, var(--s-bg-alt) 100%);
}

.sushka-page[data-scheme="gray"] .s-hero {
    background: linear-gradient(160deg, #eceff1 0%, #e0e4e7 40%, var(--s-bg-alt) 100%);
}

.sushka-page[data-scheme="orange"] .s-hero {
    background: linear-gradient(160deg, #fff8e8 0%, #fff3d6 40%, var(--s-bg-alt) 100%);
}

.sushka-page[data-scheme="salad"] .s-hero {
    background: linear-gradient(160deg, #f1f8e9 0%, #e8f5e1 40%, var(--s-bg-alt) 100%);
}

/* Hero ::before radial gradient — green default */
.s-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(129, 215, 66, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sushka-page[data-scheme="blue"] .s-hero::before {
    background: radial-gradient(circle, rgba(33, 150, 243, 0.12) 0%, transparent 70%);
}

.sushka-page[data-scheme="gray"] .s-hero::before {
    background: radial-gradient(circle, rgba(96, 125, 139, 0.12) 0%, transparent 70%);
}

.sushka-page[data-scheme="orange"] .s-hero::before {
    background: radial-gradient(circle, rgba(255, 152, 0, 0.12) 0%, transparent 70%);
}

.sushka-page[data-scheme="salad"] .s-hero::before {
    background: radial-gradient(circle, rgba(139, 195, 74, 0.12) 0%, transparent 70%);
}

.s-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.s-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--s-accent-light);
    color: var(--s-accent-hover);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.s-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--s-accent);
    border-radius: 50%;
    animation: s-pulse 2s ease-in-out infinite;
}

@keyframes s-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.s-hero__title {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 800;
    color: var(--s-text);
    line-height: 1.15;
    margin: 0 0 20px;
}

.s-hero__title span {
    color: var(--s-accent);
}

.s-hero__desc {
    font-size: 18px;
    color: var(--s-text-muted);
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 520px;
}

.s-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.s-hero__phone {
    display: flex;
    align-items: center;
    gap: 14px;
}

.s-hero__phone-icon {
    width: 48px;
    height: 48px;
    background: var(--s-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.s-hero__phone-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--s-accent);
}

.s-hero__phone-label {
    font-size: 13px;
    color: var(--s-text-muted);
}

.s-hero__phone-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--s-text);
    display: block;
}

.s-hero__phone-number:hover {
    color: var(--s-accent);
}

/* Hero image column */
.s-hero__img {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: flex-end;
}

.s-hero__img img {
    max-width: 95%;
    width: 95%;
    object-fit: contain;
    margin-bottom: -80px;
}

/* Hero form card */
.s-hero__form-card {
    background: var(--s-white);
    border: 1px solid var(--s-border-light);
    border-radius: var(--s-radius);
    padding: 40px;
    box-shadow: var(--s-card-shadow);
    position: relative;
    overflow: hidden;
}

/* Gradient bar on top — per scheme */
.s-hero__form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #73c35c, var(--s-accent), #61CE70);
}

.sushka-page[data-scheme="blue"] .s-hero__form-card::before {
    background: linear-gradient(90deg, #1e88e5, #2196F3, #42a5f5);
}

.sushka-page[data-scheme="gray"] .s-hero__form-card::before {
    background: linear-gradient(90deg, #546e7a, #607D8B, #78909c);
}

.sushka-page[data-scheme="orange"] .s-hero__form-card::before {
    background: linear-gradient(90deg, #fb8c00, #FF9800, #ffa726);
}

.sushka-page[data-scheme="salad"] .s-hero__form-card::before {
    background: linear-gradient(90deg, #7cb342, #8BC34A, #9ccc65);
}

.s-hero__form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--s-text);
    margin: 0 0 8px;
}

.s-hero__form-desc {
    font-size: 14px;
    color: var(--s-text-muted);
    margin: 0 0 24px;
}

/* Discount badge */
.s-discount {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 16px;
    background: var(--s-accent-light);
    border-radius: var(--s-radius-sm);
    border: 1px solid rgba(129, 215, 66, 0.2);
}

.sushka-page[data-scheme="blue"] .s-discount {
    border-color: rgba(33, 150, 243, 0.2);
}

.sushka-page[data-scheme="gray"] .s-discount {
    border-color: rgba(96, 125, 139, 0.2);
}

.sushka-page[data-scheme="orange"] .s-discount {
    border-color: rgba(255, 152, 0, 0.2);
}

.sushka-page[data-scheme="salad"] .s-discount {
    border-color: rgba(139, 195, 74, 0.2);
}

.s-discount__badge {
    background: var(--s-accent);
    color: var(--s-white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.s-discount__text {
    font-size: 14px;
    color: var(--s-text-secondary);
}


/* ==========================================================================
   6. ADVANTAGES
   ========================================================================== */

.s-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.s-adv {
    background: var(--s-white);
    border: 1px solid var(--s-border-light);
    border-radius: var(--s-radius);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--s-transition);
}

.s-adv:hover {
    transform: translateY(-6px);
    box-shadow: var(--s-card-shadow-hover);
    border-color: var(--s-accent);
}

.s-adv__icon {
    width: 72px;
    height: 72px;
    background: var(--s-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--s-transition);
}

.s-adv:hover .s-adv__icon {
    background: var(--s-accent);
}

.s-adv__icon svg {
    width: 32px;
    height: 32px;
    fill: var(--s-accent);
    transition: fill var(--s-transition);
}

.s-adv:hover .s-adv__icon svg {
    fill: var(--s-white);
}

.s-adv__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--s-text);
    margin: 0 0 12px;
}

.s-adv__text {
    font-size: 14px;
    color: var(--s-text-muted);
    line-height: 1.6;
    margin: 0;
}


/* ==========================================================================
   7. BEFORE / AFTER SLIDER
   ========================================================================== */

.s-ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.s-ba-card {
    border-radius: var(--s-radius);
    overflow: hidden;
    box-shadow: var(--s-card-shadow);
    background: var(--s-white);
    border: 1px solid var(--s-border-light);
}

.s-ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
}

.s-ba-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.s-ba-slider .s-ba-after {
    clip-path: inset(0 0 0 50%);
}

.s-ba-slider .s-ba-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--s-white);
    z-index: 3;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.s-ba-slider .s-ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--s-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-ba-slider .s-ba-handle::before,
.s-ba-slider .s-ba-handle::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
}

.s-ba-slider .s-ba-handle::before {
    border-width: 6px 8px 6px 0;
    border-color: transparent var(--s-accent) transparent transparent;
    left: 6px;
}

.s-ba-slider .s-ba-handle::after {
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent var(--s-accent);
    right: 6px;
}

.s-ba-slider .s-ba-tag {
    position: absolute;
    bottom: 12px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--s-font);
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.s-ba-slider .s-ba-tag--before {
    left: 12px;
}

.s-ba-slider .s-ba-tag--after {
    right: 12px;
}

.s-ba-card__title {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    color: var(--s-text);
}


/* ==========================================================================
   8. SERVICE CARDS
   ========================================================================== */

.s-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.s-svc {
    background: var(--s-white);
    border: 1px solid var(--s-border-light);
    border-radius: var(--s-radius);
    padding: 36px 28px;
    transition: all var(--s-transition);
    position: relative;
}

.s-svc:hover {
    transform: translateY(-4px);
    box-shadow: var(--s-card-shadow-hover);
    border-color: rgba(129, 215, 66, 0.4);
}

.sushka-page[data-scheme="blue"] .s-svc:hover {
    border-color: rgba(33, 150, 243, 0.4);
}

.sushka-page[data-scheme="gray"] .s-svc:hover {
    border-color: rgba(96, 125, 139, 0.4);
}

.sushka-page[data-scheme="orange"] .s-svc:hover {
    border-color: rgba(255, 152, 0, 0.4);
}

.sushka-page[data-scheme="salad"] .s-svc:hover {
    border-color: rgba(139, 195, 74, 0.4);
}

/* Featured card */
.s-svc--feat {
    border-color: var(--s-accent);
    box-shadow: 0 4px 24px rgba(129, 215, 66, 0.12);
}

.sushka-page[data-scheme="blue"] .s-svc--feat {
    box-shadow: 0 4px 24px rgba(33, 150, 243, 0.12);
}

.sushka-page[data-scheme="gray"] .s-svc--feat {
    box-shadow: 0 4px 24px rgba(96, 125, 139, 0.12);
}

.sushka-page[data-scheme="orange"] .s-svc--feat {
    box-shadow: 0 4px 24px rgba(255, 152, 0, 0.12);
}

.sushka-page[data-scheme="salad"] .s-svc--feat {
    box-shadow: 0 4px 24px rgba(139, 195, 74, 0.12);
}

.s-svc--feat::before {
    content: 'Популярно';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--s-accent);
    color: var(--s-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

.s-svc__icon {
    width: 56px;
    height: 56px;
    background: var(--s-accent-light);
    border-radius: var(--s-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.s-svc__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--s-accent);
}

.s-svc__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--s-text);
    margin: 0 0 12px;
}

.s-svc__text {
    font-size: 14px;
    color: var(--s-text-muted);
    line-height: 1.6;
    margin: 0 0 20px;
}

.s-svc__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.s-svc__price-from {
    font-size: 14px;
    color: var(--s-text-muted);
}

.s-svc__price-val {
    font-size: 32px;
    font-weight: 800;
    color: var(--s-accent);
}

.s-svc__price-unit {
    font-size: 14px;
    color: var(--s-text-muted);
}

.s-svc__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.s-svc__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--s-text-secondary);
    border-bottom: 1px solid var(--s-border-light);
}

.s-svc__features li:last-child {
    border-bottom: none;
}

/* Checkmark — default green SVG */
.s-svc__features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--s-accent-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2381d742'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 14px no-repeat;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Checkmark overrides per scheme */
.sushka-page[data-scheme="blue"] .s-svc__features li::before {
    background: var(--s-accent-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232196F3'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.sushka-page[data-scheme="gray"] .s-svc__features li::before {
    background: var(--s-accent-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23607D8B'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.sushka-page[data-scheme="orange"] .s-svc__features li::before {
    background: var(--s-accent-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF9800'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.sushka-page[data-scheme="salad"] .s-svc__features li::before {
    background: var(--s-accent-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238BC34A'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center / 14px no-repeat;
}


/* ==========================================================================
   9. PRICING TABLE
   ========================================================================== */

.s-ptable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--s-white);
    border-radius: var(--s-radius);
    overflow: hidden;
    border: 1px solid var(--s-border-light);
    box-shadow: var(--s-card-shadow);
}

.s-ptable thead th {
    background: var(--s-bg-alt);
    padding: 18px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: var(--s-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.s-ptable tbody td {
    padding: 16px 24px;
    font-size: 15px;
    color: var(--s-text-secondary);
    border-bottom: 1px solid var(--s-border-light);
}

.s-ptable tbody tr:last-child td {
    border-bottom: none;
}

.s-ptable tbody tr:hover {
    background: var(--s-accent-light);
}

.s-ptable .pv {
    font-weight: 700;
    color: var(--s-accent);
}

.s-ptable .s-btn {
    padding: 10px 20px;
    font-size: 13px;
}


/* ==========================================================================
   10. STEPS
   ========================================================================== */

.s-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.s-steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--s-accent), rgba(129, 215, 66, 0.2));
    z-index: 0;
}

.sushka-page[data-scheme="blue"] .s-steps-grid::before {
    background: linear-gradient(90deg, var(--s-accent), rgba(33, 150, 243, 0.2));
}

.sushka-page[data-scheme="gray"] .s-steps-grid::before {
    background: linear-gradient(90deg, var(--s-accent), rgba(96, 125, 139, 0.2));
}

.sushka-page[data-scheme="orange"] .s-steps-grid::before {
    background: linear-gradient(90deg, var(--s-accent), rgba(255, 152, 0, 0.2));
}

.sushka-page[data-scheme="salad"] .s-steps-grid::before {
    background: linear-gradient(90deg, var(--s-accent), rgba(139, 195, 74, 0.2));
}

.s-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.s-step__num {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    background: var(--s-white);
    border: 2px solid var(--s-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--s-accent);
    transition: all var(--s-transition);
    box-shadow: var(--s-card-shadow);
}

.s-step:hover .s-step__num {
    background: var(--s-accent);
    color: var(--s-white);
}

.s-step__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--s-text);
    margin: 0 0 10px;
}

.s-step__text {
    font-size: 14px;
    color: var(--s-text-muted);
    line-height: 1.6;
    margin: 0;
}


/* ==========================================================================
   11. OSUSHENIE BLOCK (text + image)
   ========================================================================== */

.s-osush-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.s-osush-img {
    border-radius: var(--s-radius);
    overflow: hidden;
}

.s-osush-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s-osush-text h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--s-text);
    margin: 0 0 20px;
    line-height: 1.3;
}

.s-osush-text p {
    font-size: 16px;
    color: var(--s-text-muted);
    line-height: 1.8;
    margin: 0 0 16px;
}

.s-osush-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.s-osush-text ul li {
    position: relative;
    padding: 6px 0 6px 28px;
    font-size: 15px;
    color: var(--s-text-secondary);
    line-height: 1.7;
}

.s-osush-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--s-accent);
    border-radius: 50%;
}


/* ==========================================================================
   12. WHY US
   ========================================================================== */

.s-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.s-why {
    display: flex;
    gap: 20px;
    background: var(--s-white);
    border: 1px solid var(--s-border-light);
    border-radius: var(--s-radius);
    padding: 28px;
    transition: all var(--s-transition);
}

.s-why:hover {
    transform: translateY(-3px);
    box-shadow: var(--s-card-shadow-hover);
    border-color: rgba(129, 215, 66, 0.3);
}

.sushka-page[data-scheme="blue"] .s-why:hover {
    border-color: rgba(33, 150, 243, 0.3);
}

.sushka-page[data-scheme="gray"] .s-why:hover {
    border-color: rgba(96, 125, 139, 0.3);
}

.sushka-page[data-scheme="orange"] .s-why:hover {
    border-color: rgba(255, 152, 0, 0.3);
}

.sushka-page[data-scheme="salad"] .s-why:hover {
    border-color: rgba(139, 195, 74, 0.3);
}

.s-why__icon {
    width: 56px;
    height: 56px;
    background: var(--s-accent-light);
    border-radius: var(--s-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.s-why__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--s-accent);
}

.s-why__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--s-text);
    margin: 0 0 8px;
}

.s-why__text {
    font-size: 14px;
    color: var(--s-text-muted);
    line-height: 1.6;
    margin: 0;
}


/* ==========================================================================
   13. STATS
   ========================================================================== */

.s-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.s-stat {
    text-align: center;
    padding: 32px 16px;
}

.s-stat__val {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--s-white);
    line-height: 1;
    margin-bottom: 8px;
}

.s-stat__label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}


/* ==========================================================================
   14. TILES (All Services)
   ========================================================================== */

.s-tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.s-tile {
    background: var(--s-white);
    border: 1px solid var(--s-border-light);
    border-radius: var(--s-radius);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--s-transition);
    cursor: pointer;
}

.s-tile:hover {
    border-color: var(--s-accent);
    transform: translateY(-3px);
    box-shadow: var(--s-card-shadow-hover);
}

.s-tile__icon {
    width: 44px;
    height: 44px;
    background: var(--s-accent-light);
    border-radius: var(--s-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.s-tile__icon svg {
    width: 22px;
    height: 22px;
    fill: var(--s-accent);
}

.s-tile__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--s-text);
    line-height: 1.3;
}


/* ==========================================================================
   15. REVIEWS
   ========================================================================== */

.s-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.s-review {
    background: var(--s-white);
    border: 1px solid var(--s-border-light);
    border-radius: var(--s-radius);
    padding: 32px;
    transition: all var(--s-transition);
}

.s-review:hover {
    transform: translateY(-4px);
    box-shadow: var(--s-card-shadow-hover);
}

.s-review__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.s-review__stars svg {
    width: 18px;
    height: 18px;
    fill: #f1c40f;
}

.s-review__text {
    font-size: 15px;
    color: var(--s-text-secondary);
    line-height: 1.7;
    margin: 0 0 20px;
    font-style: italic;
}

.s-review__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.s-review__avatar {
    width: 44px;
    height: 44px;
    background: var(--s-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--s-accent);
    flex-shrink: 0;
}

.s-review__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--s-text);
}

.s-review__city {
    font-size: 13px;
    color: var(--s-text-muted);
}


/* ==========================================================================
   16. SEO CONTENT
   ========================================================================== */

.s-content {
    max-width: var(--s-container);
    margin: 0 auto;
}

.s-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--s-text);
    margin: 48px 0 20px;
    line-height: 1.3;
}

.s-content h2:first-child {
    margin-top: 0;
}

.s-content p {
    font-size: 16px;
    color: var(--s-text-muted);
    line-height: 1.8;
    margin: 0 0 16px;
}

.s-content ul {
    padding-left: 0;
    list-style: none;
    margin: 0 0 16px;
}

.s-content ul li {
    position: relative;
    padding: 6px 0 6px 28px;
    font-size: 16px;
    color: var(--s-text-muted);
    line-height: 1.7;
}

.s-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--s-accent);
    border-radius: 50%;
}

.s-content--collapsed {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.s-content--collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.95) 100%);
    pointer-events: none;
}

.s-content--expanded {
    max-height: none;
}

.s-content--expanded::after {
    display: none;
}

.s-read-more {
    text-align: center;
    margin-top: 24px;
}


/* ==========================================================================
   17. CTA
   ========================================================================== */

.s-cta {
    text-align: center;
    padding: 64px 40px;
}

.s-cta__title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--s-white);
    margin: 0 0 16px;
}

.s-cta__text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.s-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ==========================================================================
   18. BOTTOM FORM
   ========================================================================== */

.s-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.s-form-card {
    background: var(--s-white);
    border: 1px solid var(--s-border-light);
    border-radius: var(--s-radius);
    padding: 40px;
    box-shadow: var(--s-card-shadow);
}


/* ==========================================================================
   19. FAQ
   ========================================================================== */

.s-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.s-faq-item {
    background: var(--s-white);
    border: 1px solid var(--s-border-light);
    border-radius: var(--s-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--s-transition);
}

.s-faq-item--active {
    border-color: rgba(129, 215, 66, 0.4);
    box-shadow: 0 4px 16px rgba(129, 215, 66, 0.08);
}

.sushka-page[data-scheme="blue"] .s-faq-item--active {
    border-color: rgba(33, 150, 243, 0.4);
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.08);
}

.sushka-page[data-scheme="gray"] .s-faq-item--active {
    border-color: rgba(96, 125, 139, 0.4);
    box-shadow: 0 4px 16px rgba(96, 125, 139, 0.08);
}

.sushka-page[data-scheme="orange"] .s-faq-item--active {
    border-color: rgba(255, 152, 0, 0.4);
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.08);
}

.sushka-page[data-scheme="salad"] .s-faq-item--active {
    border-color: rgba(139, 195, 74, 0.4);
    box-shadow: 0 4px 16px rgba(139, 195, 74, 0.08);
}

.s-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--s-text);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--s-font);
    cursor: pointer;
    text-align: left;
    transition: color var(--s-transition);
}

.s-faq-q:hover {
    color: var(--s-accent);
}

.s-faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    fill: var(--s-text-muted);
    transition: transform var(--s-transition);
}

.s-faq-item--active .s-faq-icon {
    transform: rotate(180deg);
    fill: var(--s-accent);
}

.s-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.s-faq-item--active .s-faq-a {
    max-height: 600px;
}

.s-faq-a-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--s-text-muted);
    line-height: 1.7;
}


/* ==========================================================================
   20. MODAL
   ========================================================================== */

.s-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.s-modal-overlay.active {
    display: flex;
}

.s-modal {
    background: var(--s-white);
    border-radius: var(--s-radius);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    animation: s-modal-in 0.3s ease;
}

@keyframes s-modal-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.sushka-page .s-modal__close,
.sushka-page .s-modal__close:link,
.sushka-page .s-modal__close:visited,
.sushka-page .s-modal__close:active {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #f7f7f7 !important;
    background-color: #f7f7f7 !important;
    border: none !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background var(--s-transition) !important;
    color: transparent !important;
    text-decoration: none !important;
    line-height: 1 !important;
}

.sushka-page .s-modal__close:hover,
.sushka-page .s-modal__close:focus {
    background: #e2e2e2 !important;
    background-color: #e2e2e2 !important;
}

.sushka-page .s-modal__close svg {
    width: 18px !important;
    height: 18px !important;
    fill: #7A7A7A !important;
    display: block !important;
}

.s-modal__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--s-text);
    margin: 0 0 8px;
}

.s-modal__desc {
    font-size: 14px;
    color: var(--s-text-muted);
    margin: 0 0 24px;
}


/* ==========================================================================
   21. FORMS
   ========================================================================== */

.s-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.s-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--s-text-secondary);
    display: block;
    margin-bottom: 4px;
}

.s-form input,
.s-form textarea,
.s-form select {
    width: 100%;
    background: var(--s-bg-alt);
    border: 1px solid var(--s-border);
    border-radius: var(--s-radius-sm);
    color: var(--s-text);
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--s-font);
    transition: border-color var(--s-transition);
    outline: none;
}

/* Focus — green default */
.s-form input:focus,
.s-form textarea:focus,
.s-form select:focus {
    border-color: var(--s-accent);
    box-shadow: 0 0 0 3px rgba(129, 215, 66, 0.15);
}

/* Focus per scheme */
.sushka-page[data-scheme="blue"] .s-form input:focus,
.sushka-page[data-scheme="blue"] .s-form textarea:focus,
.sushka-page[data-scheme="blue"] .s-form select:focus {
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.15);
}

.sushka-page[data-scheme="gray"] .s-form input:focus,
.sushka-page[data-scheme="gray"] .s-form textarea:focus,
.sushka-page[data-scheme="gray"] .s-form select:focus {
    box-shadow: 0 0 0 3px rgba(96, 125, 139, 0.15);
}

.sushka-page[data-scheme="orange"] .s-form input:focus,
.sushka-page[data-scheme="orange"] .s-form textarea:focus,
.sushka-page[data-scheme="orange"] .s-form select:focus {
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15);
}

.sushka-page[data-scheme="salad"] .s-form input:focus,
.sushka-page[data-scheme="salad"] .s-form textarea:focus,
.sushka-page[data-scheme="salad"] .s-form select:focus {
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.15);
}

.s-form textarea {
    resize: vertical;
    min-height: 80px;
}

.s-form button[type="submit"] {
    background: var(--s-accent);
    color: var(--s-white);
    border: none;
    border-radius: var(--s-radius-sm);
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--s-font);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--s-transition);
    width: 100%;
}

.s-form button[type="submit"]:hover {
    background: var(--s-accent-hover);
    transform: translateY(-2px);
}

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


/* ==========================================================================
   22. ANIMATIONS
   ========================================================================== */

.s-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.s-anim--visible {
    opacity: 1;
    transform: translateY(0);
}

.s-anim--d1 { transition-delay: 0.1s; }
.s-anim--d2 { transition-delay: 0.2s; }
.s-anim--d3 { transition-delay: 0.3s; }
.s-anim--d4 { transition-delay: 0.4s; }


/* ==========================================================================
   23. RESPONSIVE — 1024px
   ========================================================================== */

@media (max-width: 1024px) {
    .s-section {
        padding: 60px 0;
    }

    .s-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .s-hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .s-adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .s-ba-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .s-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .s-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .s-steps-grid::before {
        display: none;
    }

    .s-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .s-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .s-form-grid,
    .s-osush-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .s-tiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ==========================================================================
   24. RESPONSIVE — 768px
   ========================================================================== */

@media (max-width: 768px) {
    .s-section {
        padding: 48px 0;
    }

    .s-container {
        padding: 0 16px;
    }

    .s-hero {
        padding: 60px 0 48px;
    }

    .s-hero__title {
        font-size: 28px;
    }

    .s-hero__form-card {
        padding: 28px 20px;
    }

    .s-hero__actions {
        flex-direction: column;
    }

    .s-btn {
        width: 100%;
        justify-content: center;
    }

    .s-adv-grid,
    .s-services-grid,
    .s-why-grid,
    .s-reviews-grid,
    .s-ba-grid {
        grid-template-columns: 1fr;
    }

    .s-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .s-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .s-step {
        display: flex;
        text-align: left;
        gap: 20px;
        align-items: flex-start;
    }

    .s-step__num {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin: 0;
        flex-shrink: 0;
    }

    .s-cta {
        padding: 48px 20px;
    }

    .s-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .s-ptable {
        display: block;
    }

    .s-ptable thead {
        display: none;
    }

    .s-ptable tbody,
    .s-ptable tr {
        display: block;
    }

    .s-ptable td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px !important;
    }

    .s-ptable td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--s-text);
        font-size: 14px;
    }

    .s-ptable tr {
        margin-bottom: 12px;
        border: 1px solid var(--s-border-light);
        border-radius: var(--s-radius-sm);
        background: var(--s-white);
    }

    .s-ptable td:last-child {
        display: none;
    }

    .s-form-card {
        padding: 28px 20px;
    }

    .s-form .form-row {
        grid-template-columns: 1fr;
    }

    .s-modal {
        padding: 28px 20px;
    }
}


/* ==========================================================================
   25. RESPONSIVE — 480px
   ========================================================================== */

@media (max-width: 480px) {
    .s-hero__phone-number {
        font-size: 18px;
    }

    .s-title {
        font-size: 24px;
    }

    .s-stat__val {
        font-size: 32px;
    }
}
