/* ============================== 
   VARIABLES & DESIGN TOKENS
============================== */
:root {
    --color-primary: #FF5A5F;
    --color-primary-hover: #ff3c42;
    --color-secondary: #00A699;
    --color-dark: #1a1a1a;
    --color-gray: #6b7280;
    --color-light-bg: #f8fafc;
    --color-white: #FFFFFF;
    
    --color-gold: #F6A820;
    --color-gold-hover: #e09410;
    --color-gold-light: #fff9ed;
    
    --gradient-primary: linear-gradient(135deg, #FF5A5F 0%, #ff1c2d 100%);
    --gradient-gold: linear-gradient(135deg, #FDE047 0%, #F59E0B 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(255, 90, 95, 0.3);
    --shadow-gold: 0 0 40px rgba(245, 158, 11, 0.4);
    
    --rad-sm: 12px;
    --rad-md: 20px;
    --rad-lg: 28px;
    --rad-xl: 40px;
    
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
                  box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
                  background-color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
                  color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
                  border-color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
                  opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-fast: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                       color 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                       background-color 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                       opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                       width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ============================== 
   RESET & BASE STYLES
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-dark);
    line-height: 1.7;
    letter-spacing: 0.01em;
    background-color: var(--color-white);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

.section-padding {
    padding: 100px 0;
}

.alternate-bg {
    background-color: var(--color-light-bg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.015em;
    line-height: 1.2;
    text-wrap: balance;
    max-width: 100%;
    margin-inline: auto;
}

.solution__content .section-title,
.program__info .section-title {
    text-align: left;
    margin-inline: 0;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.06rem, 2vw, 1.2rem);
    color: #4b5563;
    margin-bottom: 48px;
    max-width: 62ch;
    line-height: 1.75;
    margin-inline: auto;
}

.text-left { text-align: left; }
.text-center { text-align: center; }

@keyframes gradient-shift { 
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.text-accent { 
    background: linear-gradient(270deg, #FF5A5F, #ff1c2d, #F6A820, #FF5A5F);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradient-shift 6s ease infinite;
}

.font-outfit { font-family: var(--font-heading); }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 48px; }
.text-large { font-size: 1.25rem; font-weight: 500; }
.font-bold { font-weight: 700; }
.w-full { width: 100%; text-align: center; }
.text-white { color: white; }
.mb-4 { margin-bottom: 24px; }
.text-2xl { font-size: 2rem; }

/* UTILTIES & ANIMATIONS */
.glass {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-md);
    border-radius: var(--rad-lg);
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

.hero__content .center-btn,
.solution__content .center-btn {
    justify-content: flex-start;
}

.mobile-tablet-only {
    display: none;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* ============================== 
   AUTONOMOUS ANIMATIONS
============================== */
@keyframes continuous-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes slow-levitate {
    0% { transform: scale(1.08) translateY(0); box-shadow: 0 20px 40px rgba(255, 90, 95, 0.15); }
    50% { transform: scale(1.08) translateY(-10px); box-shadow: 0 35px 50px rgba(255, 90, 95, 0.25); }
    100% { transform: scale(1.08) translateY(0); box-shadow: 0 20px 40px rgba(255, 90, 95, 0.15); }
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* ============================== 
   BUTTONS
============================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    opacity: 0;
    z-index: 2;
}

.btn:hover::before {
    opacity: 1;
    animation: shimmer 0.9s linear 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn:hover::after {
    left: 100%;
}

.btn--primary {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(255, 90, 95, 0.3);
}

.btn--primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 90, 95, 0.5);
}

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

.btn--outline:before { display: none; }

.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.btn--outline-dark:before { display: none; }

.btn--outline-dark:hover {
    background: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--vip {
    background: var(--gradient-gold);
    background-size: 200% 200%;
    color: var(--color-dark);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
    font-weight: 800;
}

.btn--vip::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

.btn--vip:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.6);
}

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

.btn--white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn--large {
    padding: 20px 48px;
    font-size: 1.25rem;
}

/* ============================== 
   HEADER
============================== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav__link {
    margin: 0 20px;
    font-weight: 600;
    color: var(--color-dark);
    transition: var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-primary);
}

.nav__link:hover::after {
    width: 100%;
}

/* ============================== 
   HERO
============================== */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    min-height: calc(100dvh - 80px);
    display: flex;
    align-items: center;
    padding: 40px 0;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(255,90,95,0.08) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(0,166,153,0.08) 0%, transparent 40%);
}

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

.hero__content > *:not(.center-btn),
.solution__content > *:not(.center-btn),
.program__info > *:not(.center-btn),
.format__text > *:not(.center-btn),
.cta .container > *:not(.center-btn) {
    max-width: 68ch;
}

.hero__content > p,
.solution__content > p,
.program__info > p,
.format__text > p,
.cta__subtitle {
    line-height: 1.8;
    color: #4b5563;
}

.hero__content > p + p,
.solution__content > p + p,
.program__info > p + p,
.format__text > p + p {
    margin-top: 18px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    perspective: 1000px;
    text-wrap: balance;
    text-align: left;
    margin-inline: 0;
}

.hero__title-sub {
    display: inline-block;
    margin-top: 5px;
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2.4vw, 1.35rem);
    font-weight: 600;
    margin-bottom: 18px;
    color: #4b5563;
    line-height: 1.65;
    max-width: 34ch;
}

.hero__desc {
    font-size: 1.08rem;
    margin-bottom: 40px;
    color: #4b5563;
    max-width: 62ch;
}

.hero__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    transform-style: preserve-3d;
}

.hero__blob {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%; left: -10%;
    background: var(--gradient-primary);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    opacity: 0.12;
    animation: blob-bounce 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(20px);
    will-change: border-radius, transform;
    transform: translateZ(0);
}

@keyframes blob-bounce {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: scale(1) rotate(0deg); }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1.1) rotate(20deg); }
}

.hero__image {
    max-height: 650px;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.15));
    transition: transform 0.1s ease-out;
    animation: continuous-float 8s ease-in-out infinite alternate;
    will-change: transform;
    transform: translateZ(0);
}

/* ============================== 
   PAIN POINTS
============================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Center the 4th item if it's the only one in the row */
.card:nth-child(4):last-child {
    grid-column: 2;
}

@media (max-width: 992px) {
    .card:nth-child(4):last-child {
        grid-column: auto;
    }
}

.card {
    padding: 34px 28px;
    text-align: left;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255,255,255,0.9);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
    pointer-events: none;
}

.card > * { position: relative; z-index: 2; }

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 90, 95, 0.1);
}

.card__icon {
    width: 90px;
    height: 90px;
    margin: 0 0 20px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(0);
}

.card:hover .card__icon {
    transform: scale(1.15) rotate(5deg) !important;
}

.card__title {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    margin-bottom: 12px;
    line-height: 1.35;
    color: var(--color-dark);
    text-wrap: balance;
}

.card__text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.75;
}

/* ============================== 
   SOLUTION
============================== */
.solution__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution__image {
    position: relative;
    border-radius: var(--rad-xl);
    padding: 20px;
}

.solution__image img {
    border-radius: var(--rad-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.solution__image:hover img {
    transform: scale(1.02);
}

.glass-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-radius: var(--rad-lg);
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 3;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,1);
    transform: translateZ(0);
}

.box-1 { top: 5%; right: -10%; animation: float 6s ease-in-out infinite; }
.box-2 { bottom: 10%; left: -10%; animation: float 7s ease-in-out infinite reverse; }

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.solution__list-box {
    padding: 40px;
    margin: 40px 0;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

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

.list-title {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-size: 1.35rem;
    line-height: 1.35;
    text-wrap: balance;
}

.solution__highlight {
    font-size: clamp(1.18rem, 2vw, 1.3rem);
    font-weight: 800;
    color: var(--color-primary);
    border-left: 5px solid var(--color-primary);
    padding-left: 24px;
    background: linear-gradient(90deg, rgba(255,90,95,0.05) 0%, transparent 100%);
    padding-block: 12px;
    border-radius: 0 10px 10px 0;
    line-height: 1.5;
    max-width: 42ch;
}

/* ============================== 
   AUDIENCE
============================== */
.audience__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.audience__item {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--rad-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audience__item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.audience__item:hover::after {
    transform: scaleX(1);
}

.audience__icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.audience__item:hover .audience__icon {
    transform: scale(1.2) translateY(-5px) !important;
}

.audience__item h4 {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    margin-bottom: 12px;
    line-height: 1.35;
    text-wrap: balance;
}

.audience__item p {
    color: #4b5563;
    font-size: 1.02rem;
    line-height: 1.75;
}

/* ============================== 
   AUTHOR
============================== */
.author__container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.author__image-wrapper {
    position: relative;
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.author__box {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #FFD666; /* Vibrant yellow from mock */
    border-radius: var(--rad-xl);
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.author__image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
    transition: transform 0.5s ease;
}

.author__image-wrapper:hover .author__image {
    transform: scale(1.05) translateY(-5px);
}

.author__content {
    flex: 1.2;
}

.author__badge {
    display: inline-block;
    background: var(--color-white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

.author__name {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    text-align: left;
}

.author__highlights {
    margin-bottom: 40px;
    list-style: none;
}

.author__highlights li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #4b5563;
    font-size: 1.05rem;
}

.author__highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #E53E3E; /* Red dot from mock */
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(229, 62, 62, 0.4);
}

.author__quote {
    background: #FFF0B3; /* Light yellow background */
    padding: 30px 40px;
    border-radius: var(--rad-lg);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.6;
    position: relative;
    border-left: 8px solid #F6A820;
}

@media (max-width: 992px) {
    .author__container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    .author__image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .author__highlights li {
        text-align: left;
    }
    .author__quote {
        text-align: center;
        border-left: none;
        border-top: 8px solid #F6A820;
    }
}

/* ============================== 
   PROGRAM & FORMAT
============================== */
.program__container, .format__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.program__modules {
    padding: 50px;
    transition: var(--transition);
}

.program__info .check-list,
.format__text .bullet-list {
    max-width: 60ch;
}

.check-list li,
.bullet-list li {
    line-height: 1.7;
}

.program__modules:hover {
    box-shadow: var(--shadow-lg);
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.module-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: var(--rad-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.module-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-top: 12px;
    display: block;
    letter-spacing: 1px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--rad-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container:fullscreen {
    width: 100vw;
    height: 100vh;
    padding-bottom: 0;
    border-radius: 0;
}

.video-container:fullscreen iframe,
.video-container:fullscreen video {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-container:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    padding-bottom: 0;
    border-radius: 0;
}

.video-container:-webkit-full-screen iframe,
.video-container:-webkit-full-screen video {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#courseVideoContainer video:fullscreen,
#courseVideoContainer video:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    background: #000;
}

/* ============================== 
   RESULTS
============================== */
.results__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.result-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--rad-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    width: calc(33.333% - 30px);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.result-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 90, 95, 0.1);
}

.result-card img {
    height: 140px;
    object-fit: contain;
    margin-bottom: 24px;
    transition: transform 0.5s ease;
    transform: translateZ(0);
}

.result-card:hover img {
    transform: scale(1.1) !important;
}

.result-card p {
    font-weight: 700;
    font-size: 1.06rem;
    font-family: var(--font-heading);
    line-height: 1.45;
    text-wrap: balance;
}

.results__highlight {
    text-align: center;
    font-size: clamp(1.35rem, 2.6vw, 1.7rem);
    font-weight: 900;
    color: var(--color-primary);
    max-width: 34ch;
    margin: 0 auto;
    font-family: var(--font-heading);
    line-height: 1.45;
    text-wrap: balance;
}

/* ============================== 
   TARIFFS
============================== */
.tariffs.section-padding {
    padding: 40px 0 60px;
}

.tariffs .section-title {
    margin-bottom: 10px;
}

.tariffs .section-subtitle {
    margin-bottom: 30px;
}

.tariffs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch; 
}

.tariff-card {
    background: var(--color-white);
    border-radius: var(--rad-xl);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
}

.tariff-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.tariff-card--popular {
    border: 2px solid var(--color-primary);
    box-shadow: 0 20px 40px rgba(255, 90, 95, 0.15);
    z-index: 2;
    padding: 40px 30px;
}

.tariff-card--popular:hover {
    animation-play-state: paused;
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 35px 60px rgba(255, 90, 95, 0.25);
}

@keyframes slow-gold-pulse {
    0% { box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 20px 50px rgba(245, 158, 11, 0.6); }
    100% { box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4); }
}

/* VIP Card — WOW Effect */
.tariff-card--vip {
    background: linear-gradient(135deg, #FDE047 0%, #FBBF24 30%, #F59E0B 60%, #FDE047 100%);
    background-size: 200% 200%;
    animation: vip-bg-shift 4s ease infinite, vip-glow 3s ease-in-out infinite;
    color: var(--color-dark);
    border: 3px solid #e74c3c;
    position: relative;
}

@keyframes vip-bg-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes vip-glow {
    0%, 100% { box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4), 0 0 20px rgba(255, 90, 95, 0.15); }
    50% { box-shadow: 0 20px 60px rgba(245, 158, 11, 0.6), 0 0 40px rgba(255, 90, 95, 0.25); }
}

/* Shimmer sweep effect across the card */
.tariff-card--vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg);
    animation: vip-shimmer 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes vip-shimmer {
    0% { left: -100%; opacity: 0; }
    20% { opacity: 1; }
    100% { left: 150%; opacity: 0; }
}

.tariff-card--vip:hover {
    animation-play-state: paused;
    transform: translateY(-14px);
    box-shadow: 0 30px 70px rgba(245, 158, 11, 0.5), 0 0 50px rgba(255, 90, 95, 0.2);
}

.tariff-card--vip > * {
    position: relative;
    z-index: 2;
}

.popular-badge, .vip-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.popular-badge::before, .vip-badge::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    opacity: 0;
}

.popular-badge { background: var(--gradient-primary); box-shadow: var(--shadow-glow); }

.vip-badge {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
    background-size: 200% 200%;
    animation: vip-badge-shine 3s ease infinite;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 20px rgba(245, 158, 11, 0.3);
    border: 1px solid rgba(245, 158, 11, 0.4);
    font-size: 0.85rem;
    padding: 10px 28px;
    letter-spacing: 2px;
}

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

.tariff-card__header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tariff-card--vip .tariff-card__header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

/* VIP Title — Animated white gold gradient text */
.tariff-card--vip .tariff-card__header h3 {
    font-size: 2.2rem;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #FDFCF0, #FFFFFF, #FFF9C4, #FFFFFF, #FDFCF0);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: vip-text-glow 3s ease infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes vip-text-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* VIP Price — Shimmering White Gold */
.tariff-card--vip .price {
    font-size: 3.8rem;
    background: linear-gradient(135deg, #FDFCF0, #FFFFFF, #FFF9C4, #FFFFFF, #FDFCF0);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: vip-price-pulse 3s ease infinite;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

@keyframes vip-price-pulse {
    0% { background-position: 0% 50%; transform: scale(1); }
    50% { background-position: 100% 50%; transform: scale(1.02); }
    100% { background-position: 0% 50%; transform: scale(1); }
}

.tariff-card--vip .price::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFFFFF, #FBBF24, #FFFFFF, transparent);
    border-radius: 2px;
    animation: price-underline 2s ease-in-out infinite;
}

@keyframes price-underline {
    0%, 100% { opacity: 0.4; width: 60%; }
    50% { opacity: 0.8; width: 90%; }
}

.tariff-card__header h3 {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
}

.tariff-card__body {
    flex-grow: 1;
    margin-bottom: 20px;
}

.tariff-card .btn {
    margin-top: auto !important;
}

.tariff-features li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 16px;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.6;
}

.tariff-features li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.included::before { content: "✓"; color: #10B981; }
.not-included { color: var(--color-gray); opacity: 0.6; }
.not-included::before { content: "✕"; color: var(--color-gray); }

.tariff-card--vip .not-included { color: rgba(0,0,0,0.5); }
.tariff-card--vip .included::before { color: var(--color-dark); }

.highlight-feature { font-weight: 800; color: var(--color-primary); }
.highlight-vip { font-weight: 800; font-size: 1.1rem; }

.tariff-for {
    margin-top: 30px;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--color-gray);
    text-align: center;
    background: rgba(0,0,0,0.03);
    padding: 15px;
    border-radius: var(--rad-md);
    line-height: 1.6;
}

.text-dark { color: rgba(0,0,0,0.7) !important; }

.vip-bonus {
    margin-top: 25px;
    background: rgba(255,255,255,0.4);
    padding: 20px;
    border-radius: var(--rad-md);
    font-size: 1rem;
    border: 1px dashed rgba(0,0,0,0.2);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.vip-bonus__icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vip-bonus:hover .vip-bonus__icon {
    transform: rotate(-10deg) scale(1.15);
}

.vip-bonus__text {
    flex: 1;
    line-height: 1.6;
}

@keyframes gift-wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* ============================== 
   REVIEWS (Slider)
============================== */
.reviews-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--rad-lg);
    padding: 40px 0;
}

.reviews-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
    transform: translateZ(0);
}

.review-img {
    width: 100%;
    flex-shrink: 0;
    object-fit: contain;
    max-height: 600px;
    border-radius: var(--rad-lg);
    padding: 0 20px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.08));
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-dark);
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* ============================== 
   FAQ ACCORDION
============================== */
.faq__container {
    max-width: 900px;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: var(--rad-md);
    box-shadow: var(--shadow-sm);
    background: var(--color-white);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0,0,0,0.08);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.16rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-dark);
    transition: var(--transition);
}

.accordion-header::after {
    content: "+";
    font-size: 2rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--color-gray);
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.accordion-item.active .accordion-header {
    color: var(--color-primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: var(--color-light-bg);
}

.accordion-content p {
    padding: 0 30px 30px;
    color: #4b5563;
    font-size: 1.03rem;
    line-height: 1.8;
}

/* ============================== 
   CTA & FOOTER
============================== */

@keyframes big-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 25px rgba(255,255,255,0); }
}

.pulse-animation {
    animation: big-pulse 2.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

.cta .section-title {
    color: #ffffff !important;
    background: linear-gradient(to bottom, #ffffff 0%, #fff0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 0 30px rgba(255,255,255,0.25);
    font-weight: 900;
    letter-spacing: 0.02em;
}

.cta__subtitle {
    font-size: clamp(1.2rem, 2.4vw, 1.45rem);
    max-width: 65ch;
    margin: 0 auto 30px;
    font-weight: 500;
    color: #38404b;
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.cta__urgent {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    color: #ffffff;
}

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 80px 0 40px;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer__logo img {
    height: 50px;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.logo,
.footer__logo-link {
    user-select: none;
    -webkit-user-select: none;
}

.text-gray { color: #888; font-size: 1rem; margin-top: 0; }

.footer__socials, .footer__links {
    display: flex;
    gap: 30px;
}

.footer__socials a, .footer__links a {
    color: #ccc;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    transition: var(--transition-fast);
}

.footer__socials a::after, .footer__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--color-white);
    transition: var(--transition-fast);
}

.footer__socials a:hover, .footer__links a:hover {
    color: var(--color-white);
}

.footer__socials a:hover::after, .footer__links a:hover::after {
    width: 100%;
}

.footer__payments {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 14px;
    border-radius: var(--rad-md);
    background: rgba(255, 255, 255, 0.08);
}

.footer__payment-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
}

.footer__payment-icon {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.footer__payment-icon--wayforpay {
    height: 22px;
}

/* ==============================
   THANK YOU PAGE
============================== */
.thankyou-page {
    background: radial-gradient(circle at 18% 8%, rgba(255, 90, 95, 0.1) 0%, transparent 36%),
                radial-gradient(circle at 85% 20%, rgba(0, 166, 153, 0.09) 0%, transparent 40%),
                var(--color-white);
    min-height: 100vh;
}

.thankyou {
    padding: 88px 0 100px;
}

.thankyou__container {
    max-width: 920px;
}

.thankyou__card {
    padding: 56px 56px 52px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: var(--rad-xl);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-lg);
}

.thankyou__title {
    margin-bottom: 22px;
}

.thankyou__lead {
    font-size: clamp(1.16rem, 2.25vw, 1.34rem);
    font-weight: 700;
    color: #303846;
    margin-bottom: 22px;
}

.thankyou__text {
    color: #4b5563;
    font-size: 1.07rem;
    line-height: 1.84;
}

.thankyou__text + .thankyou__text {
    margin-top: 18px;
}

.thankyou__contacts {
    margin: 32px 0 26px;
    padding: 24px 26px;
    border-radius: var(--rad-md);
    border: 1px solid rgba(255, 90, 95, 0.16);
    background: linear-gradient(135deg, rgba(255, 90, 95, 0.09), rgba(255, 255, 255, 0.95));
}

.thankyou__contacts p {
    font-weight: 600;
    color: #263445;
    line-height: 1.7;
}

.thankyou__contacts p + p {
    margin-top: 10px;
}

.thankyou__contacts a {
    color: var(--color-primary);
    font-weight: 700;
}

.thankyou__contacts a:hover {
    text-decoration: underline;
}

.thankyou__wish {
    margin-top: 28px;
    font-family: var(--font-heading);
    font-size: clamp(1.16rem, 2vw, 1.4rem);
    line-height: 1.45;
}


/* ==============================
   FLOATING TELEGRAM BUTTON
============================== */
.telegram-fab {
    position: fixed;
    right: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #229ED9;
    color: var(--color-white);
    box-shadow: 0 14px 28px rgba(34, 158, 217, 0.35);
    z-index: 1200;
    transition: var(--transition-fast);
}

.telegram-fab:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 18px 34px rgba(34, 158, 217, 0.45);
}

.telegram-fab:focus-visible {
    outline: 3px solid rgba(34, 158, 217, 0.35);
    outline-offset: 3px;
}

.telegram-fab svg {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
    flex: 0 0 28px;
    display: block;
    fill: currentColor;
}

@media (max-width: 480px) {
    .telegram-fab {
        width: 56px;
        height: 56px;
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    }

    .telegram-fab svg {
        width: 25px;
        height: 25px;
    }
}

/* ============================== 
   RESPONSIVE
============================== */
@media (max-width: 992px) {
    .section-title { font-size: 2.4rem; }
    .hero__title { font-size: 3.8rem; }
    .hero__container, .solution__container, .program__container, .format__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tariffs__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 30px;
    }
    .tariff-card--popular { transform: scale(1); padding: 40px 30px; }
    .tariff-card--popular:hover { transform: translateY(-10px); }
    .result-card, .audience__item { width: calc(50% - 15px); }
    .footer__logo { display: flex; flex-direction: row; align-items: center; gap: 15px; }
    .footer__logo img { margin-bottom: 0; }
    .footer__logo .mt-2 { margin-top: 0; }
    .footer__payments { gap: 12px; }
    .footer__payment-icon { height: 22px; }
    .footer__payment-icon--wayforpay { height: 20px; }
    
    .author__container { flex-direction: column; gap: 40px; text-align: center; }
    .author__image-wrapper { max-width: 400px; margin: 0 auto; }
    .author__highlights { text-align: left; margin-top: 20px; }
    
    .glass-float { padding: 10px 16px; font-size: 0.85rem; white-space: nowrap; transition: none; }
    .box-1 { right: -5px; top: 15%; }
    .box-2 { left: -5px; bottom: 15%; }
    .solution__image { display: block; max-width: fit-content; margin: 0 auto; }

    .hero__content { text-align: left; }
    .hero__content > *:not(.center-btn) { margin-inline: 0; }
    .hero__title { text-align: left; margin-inline: 0; font-size: 2.8rem; }
    .solution__content .section-title, .program__info .section-title, .author__name, .format .section-title { text-align: center; margin-inline: auto; }
    .center-btn, .hero__content .center-btn, .solution__content .center-btn { justify-content: center; }
    .desktop-only { display: none; }
    .mobile-tablet-only { display: inline; }
    .hero__title-sub { text-transform: none; margin-top: 0; }
}

@media (max-width: 768px) {
    .header__container { height: 70px; }
    .logo img { height: 40px; }
    .nav { display: none; }
    .hero__title { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
    .hero__image { max-height: 350px; }
    .cards-grid { grid-template-columns: 1fr; }
    .footer__container { flex-direction: column; text-align: center; justify-content: center; }
    .footer__logo { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 15px; }
    .footer__logo img { margin-bottom: 0; }
    .footer__logo .mt-2 { margin-top: 0; }
    .footer__socials, .footer__links { justify-content: center; }
    .footer__payments { margin: 0 auto; }
    .thankyou { padding: 66px 0 72px; }
    .thankyou__card { padding: 34px 24px 30px; }
    .thankyou__contacts { padding: 18px 18px; }
    .btn { padding: 14px 28px; font-size: 1rem; }
    .btn--large { width: 100%; padding: 18px 36px; }
    .card { text-align: center; padding: 28px 24px; }
    .card__icon { margin: 0 auto 15px; width: 80px; height: 80px; }
    .section-subtitle { margin-bottom: 30px; }
    .section-padding { padding: 80px 0 60px; }
    .hero__subtitle,
    .hero__desc { max-width: none; }
}

@media (max-width: 480px) {
    .header__container { height: 64px; }
    .logo img { height: 36px; }
    .btn { padding: 10px 20px; font-size: 0.9rem; }
    .hero__title { font-size: 2.2rem; }
    .section-padding { padding: 70px 0 50px; }
    .result-card, .audience__item { width: 100%; min-width: 0; }
    .modules-grid { grid-template-columns: 1fr; }
    .hero__image-wrapper { transform: none; }
    .tariffs__grid { max-width: 100%; }
    .price { font-size: 2.5rem; }
    .thankyou__title { font-size: 1.95rem; }
    .thankyou__contacts p { font-size: 0.96rem; }
    .footer__payments {
        width: 100%;
        justify-content: center;
        padding: 10px 10px;
        gap: 8px;
    }
    .footer__payment-chip {
        min-width: 74px;
        padding: 8px 10px;
    }
    .footer__payment-icon { height: 19px; }
    .footer__payment-icon--wayforpay { height: 17px; }
}

/* ==============================
   ACCESSIBILITY: Reduced Motion
============================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==============================
   PERFORMANCE: content-visibility
============================== */
.pain-points,
.solution,
.audience,
.program,
.format,
.results,
.tariffs,
.reviews,
.faq,
.cta {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}
