/* ============================================
   Design System — Grinevich School
   ============================================ */

:root {
    /* Colors */
    --color-primary: #a30000;
    --color-primary-light: #d94444;
    --color-primary-dark: #7a0000;

    --color-accent: #c9a961;
    --color-accent-light: #e5d4a1;

    --color-dark: #1a1a1a;
    --color-dark-soft: #2d2d2d;
    --color-gray: #6b6b6b;
    --color-gray-light: #a0a0a0;
    --color-light: #f8f8f8;
    --color-white: #ffffff;
    --color-soft: #fcfaf7;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, #d4b87a 100%);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(163, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   Reset & Base
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

/* Background */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at center, #2a0a0a 0%, #000000 100%);
    opacity: 0.8;
}

/* Overlay */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle texture or secondary gradient */
    background: linear-gradient(135deg, rgba(163, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

/* Content */
.hero__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: var(--space-lg);
    text-align: center;
    color: var(--color-white);
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gray-light);
    margin-bottom: var(--space-lg);
    animation: fadeInDown 0.8s ease;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent);
    animation: pulse 2s infinite;
}

/* Motto */
.hero__motto {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    animation: fadeInDown 0.8s ease backwards;
}

.hero__motto-accent {
    color: var(--color-white);
    font-weight: 700;
}

/* Title */
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: var(--space-md);

    /* Brighter Iridescent Effect */
    background: linear-gradient(110deg,
            #888888 20%,
            #ffffff 30%,
            #ffecb3 40%,
            /* Lighter Gold */
            #ffffff 50%,
            #888888 60%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Stronger Drop Shadow for Contrast against gradient */
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.15));

    animation: fadeInUp 0.8s ease 0.2s backwards, shine 3s linear infinite;
    /* Faster shine */
}

.hero__title-focus {
    /* Change font to Sans-Serif for better readability */
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: 0.05em;
    font-style: italic;
}

.hero__title-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Subtitle */
.hero__subtitle {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero__subtitle br {
    display: none;
}


/* Features */
.hero__features {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: var(--space-sm) var(--space-lg);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.6s backwards;
    text-align: left;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9375rem;
    color: var(--color-light);
}

.hero__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

/* CTA Group */
.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 20px 48px;
    border-radius: 50px;
    /* Fully rounded */
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.hero__cta--primary {
    color: var(--color-white);
    /* 3D Button Styling */
    /* 3D Button Styling */
    background: linear-gradient(110deg, #d94444 0%, #ff6b6b 20%, #d94444 40%, #a30000 100%);
    background-size: 300% 100%;
    animation: shine 3s linear infinite;
    box-shadow:
        0 6px 0 #7a0000,
        /* 3D Depth */
        0 15px 20px rgba(0, 0, 0, 0.4),
        /* Drop Shadow */
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    /* Top Highlight */
    border: none;
    transform: translateY(0);
}

.hero__cta--primary:hover {
    background: linear-gradient(to bottom, #ee5555 0%, #ba0000 100%);
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 #7a0000,
        0 20px 30px rgba(163, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero__cta--primary:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 #7a0000,
        0 5px 10px rgba(0, 0, 0, 0.4);
}

.hero__cta-price {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.hero__cta--secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero__cta--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: none;
}

.btn--premium {
    color: var(--color-white);
    background: linear-gradient(110deg, #d94444 0%, #ff6b6b 20%, #d94444 40%, #a30000 100%);
    background-size: 300% 100%;
    animation: shine 3s linear infinite;
    box-shadow:
        0 4px 0 #7a0000,
        0 10px 20px rgba(163, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(0);
}

.btn--premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 7px 0 #7a0000,
        0 15px 30px rgba(163, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--premium:active {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 #7a0000,
        0 5px 10px rgba(0, 0, 0, 0.4);
}

/* Trust Indicators */
.hero__trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    animation: fadeInUp 0.8s ease 1s backwards;
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__trust-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
}

.hero__trust-label {
    font-size: 0.8125rem;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-gray-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.hero__scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--color-gray-light);
    border-bottom: 2px solid var(--color-gray-light);
    transform: rotate(45deg);
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes shine {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(201, 169, 97, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0);
    }
}

/* ============================================
   Responsive
   ============================================ */

/* ============================================
   Pre-Training Section
   ============================================ */

.pre-training {
    padding: var(--space-2xl) var(--space-sm);
    background: #FDFDFD;
    position: relative;
    overflow: hidden;
}

.pre-training::before {
    content: "7";
    position: absolute;
    top: -50px;
    right: -20px;
    font-size: 20rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sales__header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(217, 68, 68, 0.15);
    /* More saturated background */
    color: #e63946;
    /* Stronger contrast color */
    border-radius: var(--radius-full);
    font-size: 1rem;
    /* Increased by ~25% (was 0.8125rem) */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.pre-training .section-header__title {
    color: var(--color-dark);
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-white);
    line-height: 1.2;
}

.pre-training__carousel-wrapper {
    position: relative;
    width: 100%;
}

.pre-training__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-lg);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition-base);
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--color-primary);
}

.pre-training__card {
    background: var(--color-dark-soft);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--color-primary);
    /* Changed from border-left to border-top */
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    text-align: center;
    /* Center text */
    height: 100%;
    color: var(--color-white);
}

.pre-training__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.pre-training__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    /* Match the brand color */
}

.pre-training__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pre-training__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-white);
    line-height: 1.3;
}

/* ============================================
   Professional Programs Section
   ============================================ */

.programs {
    padding: var(--space-2xl) var(--space-sm);
    background-color: var(--color-dark);
    color: var(--color-white);
}

.programs__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    /* Force all rows to be equal height */
    gap: var(--space-lg);
    align-items: stretch;
}

.program-card {
    position: relative;
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    background: var(--color-dark-soft);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100% !important;
    /* Ensure it stretches */
}

.program-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-accent);
}

.program-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--card-accent);
    box-shadow: 0 10px 30px -10px var(--card-accent);
}

.program-card__icon-box {
    width: 100%;
    /* Full width to container */
    height: 70px;
    /* Slightly taller */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the icon horizontally */
    margin-bottom: var(--space-md);
    background: transparent;
}

.program-card__icon-box img {
    height: 100%;
    /* Scale by height to unify visual size */
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.program-card__title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: var(--space-sm);
    color: var(--color-white);
    text-align: center;
    /* Center the title */
}

.program-card__desc {
    font-size: 0.9375rem;
    color: var(--color-gray-light);
    margin-bottom: var(--space-md);
    flex-grow: 1;
    text-align: center;
    /* Center description for symmetry */
}

.program-card__list {
    font-size: 0.875rem;
    color: var(--color-white);
    margin-top: auto;
    display: inline-block;
    /* Keep fixed width for items to align bullets */
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    /* Keep bullets aligned to the left within the centered block */
    width: fit-content;
}

.program-card__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    white-space: nowrap;
}

.program-card__list li::before {
    content: "•";
    color: var(--card-accent);
    font-weight: 800;
}

/* Program Specific Accents */
.program-card--sketchup {
    --card-accent: #ef4444;
    /* SketchUp Red */
}

.program-card--autocad {
    --card-accent: #ef4444;
    /* AutoCAD Red */
}

.program-card--photoshop {
    --card-accent: #00a8ff;
    /* Photoshop Blue */
}

.program-card--powerpoint {
    --card-accent: #ea580c;
    /* PowerPoint Orange */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pre-training::before {
        font-size: 10rem;
    }
}

@media (max-width: 768px) {
    .hero__content {
        padding: var(--space-md);
    }

    .hero__title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__features {
        grid-template-columns: 1fr;
        justify-items: start;
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
        gap: var(--space-sm);
    }

    .hero__cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero__cta {
        width: 100%;
    }

    .hero__trust {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .hero__trust-divider {
        display: none;
    }

    .pre-training__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--space-md);
        padding: 10px 0 20px;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .pre-training__grid::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .pre-training__card {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    .carousel-dots {
        display: flex;
    }

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

    .program-card__desc,
    .program-card__list {
        display: none;
    }

    .program-card {
        padding: var(--space-lg) var(--space-sm) var(--space-md);
        align-items: center;
        text-align: center;
    }

    .program-card__title {
        font-size: 1.125rem;
    }

    .program-card__icon-box {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero__badge {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-sm);
    }

    .hero__trust-number {
        font-size: 1.5rem;
    }
}

/* ============================================
   Schedule Section (Premium Redesign)
   ============================================ */

.schedule {
    padding: 100px 0;
    background: #FDFDFD;
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.schedule__bg-effects {
    display: none;
}

.container--narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
}

.schedule__title-huge {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 5.5rem;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--color-dark);
    margin-bottom: 60px;
    text-transform: uppercase;
}

.schedule__info-box {
    border-left: 2px solid var(--color-primary);
    padding-left: 25px;
    margin-bottom: 50px;
    max-width: 700px;
}

.schedule__info-box p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-dark);
    opacity: 0.8;
}

.schedule__timeline {
    margin-bottom: 80px;
}

.schedule__time-item {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.schedule__time-label {
    font-weight: 300;
    color: var(--color-dark);
}

.schedule__time-value {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--color-primary);
    margin-left: 8px;
}

.schedule__time-text {
    font-weight: 600;
    color: var(--color-dark);
}

.schedule__stats-premium {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 30px;
}

.schedule__stat-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.schedule__stat-num {
    width: 110px;
    height: 110px;
    background: #a30000;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(163, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule__stat-desc {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999;
    font-weight: 500;
}

.schedule__brand-footer {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.schedule__logo-img {
    height: 40px;
    opacity: 0.5;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    padding: 16px 32px;

    /* Hero Button Styles */
    color: var(--color-white);
    background: linear-gradient(110deg, #d94444 0%, #ff6b6b 20%, #d94444 40%, #a30000 100%);
    background-size: 300% 100%;
    animation: shine 3s linear infinite;
    box-shadow:
        0 6px 0 #7a0000,
        0 15px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;

    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.floating-cta.visible {
    opacity: 0.9;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta:hover {
    background: linear-gradient(to bottom, #ee5555 0%, #ba0000 100%);
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 #7a0000,
        0 20px 30px rgba(163, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    opacity: 1;
}

.floating-cta:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 #7a0000,
        0 5px 10px rgba(0, 0, 0, 0.4);
}

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    left: auto;
    width: 50px;
    height: 50px;
    background: rgba(45, 45, 45, 0.8);
    backdrop-filter: blur(5px);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.scroll-top-btn:hover {
    background: var(--color-primary);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .schedule__title-huge {
        font-size: 3.5rem;
        margin-bottom: 40px;
    }

    .schedule__stat-num {
        width: 80px;
        height: 80px;
        font-size: 1.4rem;
    }

    .schedule__stats-premium {
        flex-wrap: wrap;
        justify-content: center;
    }

    .floating-cta {
        left: 20px;
        right: 20px;
        bottom: 20px;
        text-align: center;
        padding: 18px;
        font-size: 1rem;
        background: linear-gradient(135deg, rgba(163, 0, 0, 0.9) 0%, rgba(122, 0, 0, 0.9) 100%);
    }

    .scroll-top-btn {
        bottom: 90px;
        right: 20px;
        left: auto;
        width: 44px;
        height: 44px;
        background: rgba(26, 26, 26, 0.9);
    }
}

/* ============================================
   Curriculum Section
   ============================================ */

.curriculum {
    padding: 100px 0;
    background: var(--color-dark);
    color: var(--color-white);
    position: relative;
}

/* Background gradient to match premium feel */
.curriculum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #2a0a0a 0%, #000000 100%);
    opacity: 0.5;
    z-index: 0;
}

.curriculum .container {
    position: relative;
    z-index: 1;
}

.curriculum .section-header__title {
    color: var(--color-white);
}

.curriculum__carousel-container {
    position: relative;
    max-width: 700px;
    /* Збільшено з 500px */
    /* Звужуємо для вертикального формату */
    margin: 60px auto 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.curriculum__track-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background: #1a1a1a;
    max-height: none;
    /* Знято обмеження висоти для повного відображення */
}

.curriculum__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.curriculum__slide {
    min-width: 100%;
    aspect-ratio: auto;
    /* Дозволяємо зображенню визначати пропорції */
    height: auto;
    max-height: 85vh;
    /* Обмежуємо висоту слайда, щоб він влазив в екран */
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.curriculum__slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.curriculum__slide:hover img {
    transform: translateY(-5px);
}

.curriculum__nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.curriculum__nav-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.curriculum__nav-btn:active {
    transform: scale(0.95);
}

.curriculum__pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.curriculum__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    /* Lighter for dark background */
    cursor: pointer;
    transition: all 0.3s ease;
}

.curriculum__dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(163, 0, 0, 0.3);
}

.curriculum__footer {
    display: flex;
    justify-content: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .curriculum {
        padding: 40px 0;
    }

    .curriculum__carousel-container {
        gap: 0;
        margin-top: 20px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .curriculum__nav-btn {
        display: none;
    }

    .curriculum__track-wrapper {
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        /* Show section background in gaps */
    }

    .curriculum__slide {
        aspect-ratio: unset;
        height: 70vh;
        /* Fixed height to prevent cropping */
        padding: 0 20px;
        /* Creates the requested side margins */
        box-sizing: border-box;
    }

    .curriculum__slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Ensure full image visibility */
        border-radius: 12px;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    }
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--color-white);
    position: relative;
    /* overflow: hidden; */
    /* Вимкнено для роботи sticky */
}

.testimonials__layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.testimonials__header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 120px;
}

.testimonials__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0;
}

.testimonials__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    margin-bottom: 4px;
}

.testimonials__disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    margin: 0;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0;
    height: fit-content;
    cursor: pointer;
    position: relative;
    scroll-margin-top: 100px;
    /* Відступ при автоматичному скролі */
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 0;
    transition: all 0.3s ease;
}

.review-card.active .review-card__header {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.review-card__header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.review-card__thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    background: #000;
}

.review-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: blur(1px);
    transition: all 0.3s ease;
}

.review-card:hover .review-card__thumb img {
    opacity: 1;
    filter: blur(0);
}

.review-card__toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.review-card__toggle i {
    transition: transform 0.3s ease;
}

.review-card.active .review-card__toggle {
    background: var(--color-primary);
    color: var(--color-white);
    transform: rotate(45deg);
}

.review-card__body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card.active .review-card__body {
    max-height: 2500px;
    opacity: 1;
    margin-top: 10px;
    /* Зменшено, якщо немає тексту */
    overflow: visible;
}

.review-card__media {
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card__media img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
    transition: transform var(--transition-fast);
}

.review-card__media img:hover {
    transform: scale(1.02);
}

.review-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
    margin: 0;
}

.review-card__author {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.review-card__author-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-card__role {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.review-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.review-card__text:last-child {
    margin-bottom: 0;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    z-index: 10000;
    /* Максимальний пріоритет */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    /* Контролюється через JS */
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
    /* Показуємо лайтбокс */
}

.lightbox__content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    animation: lightbox-zoom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

@keyframes lightbox-zoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.review-card__media img.lightbox-trigger {
    cursor: zoom-in;
    position: relative;
    z-index: 5;
}

@media (max-width: 768px) {
    .review-card__media img.lightbox-trigger {
        cursor: default;
    }
}

.lightbox__close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-white);
    font-size: 50px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10001;
}

.lightbox__close:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.lightbox__close:hover,
.lightbox__close:focus {
    color: var(--color-primary);
}

@media only screen and (max-width: 700px) {
    .lightbox__content {
        width: 100%;
    }
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .review-card {
        padding: 25px;
    }

    .testimonials__layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .testimonials__header {
        align-items: center;
        position: static;
        /* Вимикаємо sticky на мобільних для уникнення накладання */
        margin-bottom: 20px;
    }

    .testimonials__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonials__title {
        font-size: 2rem;
    }
}

/* ============================================
   Benefits Section (Accordion)
   ============================================ */

.benefits .section-title {
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    /* Як у pre-training */
    margin-bottom: var(--space-xl);
    line-height: 1.2;
}

.benefits {
    padding: var(--space-2xl) 0;
    position: relative;
    background-color: #FDFDFD;
    /* Light background like Pre-training */
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.accordion__item {
    background: var(--color-dark-soft);
    /* Dark card background */
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--color-primary);
    /* Red top border */
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.accordion__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.accordion__item.active {
    background: var(--color-dark-soft);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.accordion__header {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--color-white);
    position: relative;
}

.accordion__icon {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(163, 0, 0, 0.4);
}

.accordion__item.active .accordion__icon {
    background: var(--color-white);
    transform: rotate(180deg);
}

.icon-plus,
.icon-minus {
    position: absolute;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.accordion__item.active .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.accordion__item.active .icon-minus {
    color: var(--color-primary);
    opacity: 1;
    transform: rotate(0);
}

.icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}


.accordion__title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__item.active .accordion__content {
    max-height: 1500px;
    /* Збільшено, щоб вмістити зображення */
}

.accordion__body {
    padding: 0 25px 25px 77px;
    /* 25px padding + 32px icon + 20px gap */
    color: var(--color-gray-light);
    font-size: 1rem;
    line-height: 1.6;
}

.accordion__media {
    margin-top: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion__media img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .accordion__header {
        padding: 15px;
        gap: 15px;
    }

    .accordion__body {
        padding: 0 15px 20px 62px;
    }

    .accordion__title {
        font-size: 1rem;
    }
}

/* ============================================
   Teacher Section
   ============================================ */

.teacher {
    padding: var(--space-2xl) 0;
    position: relative;
    background-color: var(--color-dark);
}

.teacher__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
    animation: fadeInUp 0.8s ease;
}

/* Visual Side (Left) */
.teacher__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
}

.teacher__image-wrapper {
    width: 300px;
    height: 400px;
    /* Portrait ratio similar to reference */
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 30px rgba(201, 169, 97, 0.1);
    position: relative;
    margin-bottom: var(--space-md);
}

.teacher__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.teacher__image-wrapper:hover .teacher__image {
    transform: scale(1.05);
}

.teacher__visual-role {
    text-transform: uppercase;
    color: var(--color-gray-light);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.teacher__visual-motto {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-white);
    opacity: 0.9;
}

/* Info Side (Right) */
.teacher__info {
    max-width: 700px;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.teacher__name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

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

.teacher__achievements li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-light);
    display: block;
    /* Повертаємо блок замість flex для стабільного тексту */
    text-align: left;
    /* Гарантуємо відсутність justify */
}

.teacher__achievements li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-size: 1.1em;
    line-height: 1.4;
}

.teacher__achievements strong {
    color: var(--color-white);
    font-weight: 600;
}

@media (min-width: 992px) {
    .teacher__content {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        gap: var(--space-2xl);
    }

    .teacher__info {
        flex: 1;
        padding: var(--space-xl);
    }

    .teacher__name {
        text-align: left;
        font-size: 3.5rem;
    }
}

/* ============================================
   Sales Section (Invictus) - Modern Premium Redesign
   ============================================ */

.sales {
    padding: var(--space-2xl) 0;
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

/* Background Glowing Orbs */
.sales::before,
.sales::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.15;
}

.sales::before {
    background: var(--color-primary);
    top: -100px;
    left: -100px;
}

.sales::after {
    background: var(--color-accent);
    bottom: -100px;
    right: -100px;
}

.sales__card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 30px 40px;
    /* Зменшено з 80px */
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.sales__visual {
    width: 100%;
    /* На всю ширину контейнера */
    max-width: 500px;
    /* Але не ширше за контент */
    height: 250px;
    /* Висота банера */
    margin: 0 auto 30px;
    border-radius: 30px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(163, 0, 0, 0.2) 0%, rgba(201, 169, 97, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Ефект переливу для картинки */
.sales__visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: imageShimmer 3s infinite;
}

@keyframes imageShimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.sales__avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* Адаптовано під батьківський блок */
}

.sales__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: 5px;
    line-height: 1;

    /* Ефект переливу (як у Hero) */
    background: linear-gradient(to right, #ffffff 20%, #c9a961 40%, #c9a961 60%, #ffffff 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s linear infinite;
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

.sales__group-name {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    /* Зменшено шрифт */
    color: var(--color-primary-light);
    font-weight: 800;
    margin-top: 30px;
    /* Опущено нижче */
    margin-bottom: 15px;
    /* Ближче до картинки */
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sales__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 60px;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.sales__list li {
    font-size: 1.125rem;
    color: var(--color-light);
    position: relative;
    padding-left: 35px;
    text-align: left;
    line-height: 1.4;
}

.sales__list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-primary-light);
    font-size: 1.2rem;
    line-height: 1;
}

.sales__pricing {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price--old {
    font-size: 1.6rem;
    color: var(--color-gray);
    text-decoration: line-through;
}

.price--current {
    font-size: 2.5rem;
    color: var(--color-white);
}

.price--current strong {
    color: var(--color-primary-light);
    font-weight: 800;
    position: relative;
    display: block;
    font-size: clamp(3rem, 7vw, 4.5rem);
    /* Збільшено шрифт ціни */
    margin-top: 5px;
    text-shadow: 0 0 30px rgba(163, 0, 0, 0.4);

    /* Ефект переливу для ціни */
    background: linear-gradient(to right, #d94444 20%, #ff8e8e 40%, #ff8e8e 60%, #d94444 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s linear infinite;
}

.price--deposit {
    font-size: 1.2rem;
    color: var(--color-gray-light);
    margin-top: 10px;
}

.price--deposit span {
    color: var(--color-white);
    font-weight: 700;
}

.sales__cta .btn--large {
    padding: 25px 80px;
    font-size: 1.5rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* 3D Button Styling with Animation */
    background: linear-gradient(110deg, #d94444 0%, #ff6b6b 20%, #d94444 40%, #a30000 100%);
    background-size: 300% 100%;
    animation: shine 3s linear infinite;
    box-shadow: 0 6px 0 #7a0000, 0 15px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sales__cta .btn--large:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(163, 0, 0, 0.5);
}

.sales__cta .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #7a0000, 0 20px 30px rgba(163, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--primary:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #7a0000, 0 5px 10px rgba(0, 0, 0, 0.4);
}

/* Timer Styles */
.sales__timer-box {
    margin-top: 65px;
    /* Опущено на 25px (40 + 25) */
    display: flex;
    justify-content: center;
}

.timer {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 30px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.timer__item {
    display: flex;
    flex-direction: column;
    min-width: 60px;
}

.timer__value {
    font-family: var(--font-heading);
    /* Шрифт як у заголовків */
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    /* Щоб цифри не скакали */
}

.timer__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-gray-light);
    letter-spacing: 0.1em;
    margin-top: 5px;
}

.timer__sep {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    margin-top: -20px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .sales {
        padding: var(--space-xl) 0;
    }

    .sales__card {
        padding: 60px 20px 40px;
        border-radius: 35px;
    }

    .sales__visual {
        width: 100%;
        max-width: 350px;
        height: 200px;
        border-radius: 25px;
    }

    .sales__list {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .sales__list li {
        font-size: 1rem;
    }

    .sales__cta .btn--large {
        width: 100%;
        padding: 20px 30px;
        font-size: 1.2rem;
    }
}

/* ============================================
   Sticky Call to Action
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(163, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: stickyPulse 2.5s infinite;
}

@keyframes stickyPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(163, 0, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(163, 0, 0, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(163, 0, 0, 0.4);
    }
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        text-align: center;
        padding: 18px;
        animation: none;
    }
}