/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --yellow:       #fabe3e;
    --light-pink:   #fef3f3;
    --medium-pink:  #f996a5;
    --dark-pink:    #db7b8b;
    --salmon:       #d39183;
    --light-gray:   #f7f7f7;
    --brown:        #c0836e;
    --beige:        #f2e0d8;
    --text-dark:    #2d2020;
    --text-mid:     #5a3d3d;
    --white:        #ffffff;
    --font:         'Nunito', sans-serif;
    --radius-sm:    12px;
    --radius-md:    20px;
    --radius-lg:    32px;
    --shadow:       0 4px 24px rgba(180, 80, 80, 0.12);
}

html { scroll-behavior: smooth; }

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50%       { transform: translateY(-8px) rotate(1deg); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(250,190,62,.55); }
    70%  { box-shadow: 0 0 0 10px rgba(250,190,62,0); }
    100% { box-shadow: 0 0 0 0 rgba(250,190,62,0); }
}

@keyframes badge-pop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes hero-drift {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-6px) scale(1.01); }
}

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

@keyframes bubble-rise {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: .6; }
    100% { transform: translateY(-120px) scale(1.15); opacity: 0; }
}

.hero { position: relative; overflow: hidden; }

.hero-bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: bubble-rise linear infinite;
    z-index: 0;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-dark);
    margin-bottom: 40px;
}
.section-title.light { color: var(--white); }

.exclaim { color: var(--yellow); }

/* Маленький прямоугольник-декор после заголовка */
.title-rect {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: var(--yellow);
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: super;
    flex-shrink: 0;
    animation: badge-pop 2s ease-in-out infinite;
}

.btn-yellow {
    display: inline-block;
    background: linear-gradient(90deg, var(--yellow), #f5d060, var(--yellow));
    background-size: 200% auto;
    color: var(--text-dark);
    font-family: var(--font);
    font-weight: 800;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    animation: shimmer 3s linear infinite;
}
.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(250,190,62,.5); animation: none; background: var(--yellow); }
.btn-yellow.small { padding: 10px 22px; font-size: 14px; }

.btn-pink {
    display: inline-block;
    background: var(--medium-pink);
    color: var(--white);
    font-family: var(--font);
    font-weight: 800;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.btn-pink:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249,150,165,.45); }
.btn-pink.small { padding: 10px 22px; font-size: 14px; }

.btn-outline-pink {
    display: inline-block;
    border: 2px solid var(--medium-pink);
    color: var(--medium-pink);
    font-family: var(--font);
    font-weight: 800;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 50px;
    transition: background .2s, color .2s;
}
.btn-outline-pink:hover { background: var(--medium-pink); color: var(--white); }

.btn-outline-light {
    display: inline-block;
    background: transparent;
    border: 2px solid rgba(255,255,255,.7);
    color: var(--white);
    font-family: var(--font);
    font-weight: 800;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(254, 243, 243, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(219,123,139,.15);
    transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(180,80,80,.1); }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0;
}

.logo { display: flex; align-items: center; }
.logo-img {
    height: 48px;
    width: auto;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-mid);
    padding: 7px 14px;
    border-radius: 50px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.nav-links a:hover { background: var(--medium-pink); color: var(--white); }
.nav-links .nav-ceu {
    background: var(--yellow);
    color: var(--text-dark);
    font-weight: 900;
    animation: pulse-ring 2.5s ease-out infinite;
}
.nav-links .nav-ceu:hover { background: #f5b02e; color: var(--text-dark); }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 300;
}
.burger span {
    display: block;
    width: 26px; height: 3px;
    background: var(--dark-pink);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(140deg, #f5b3be 0%, #e8848e 40%, #d07a86 100%);
    overflow: hidden;
    padding-top: 80px;
}

.wave {
    position: absolute;
    pointer-events: none;
    user-select: none;
}
/* Волна 1 — в герое, под фото и карточкой */
.wave-1 {
    bottom: 0; left: 0;
    width: 100%;
    opacity: 0.45;
    mix-blend-mode: overlay;
    z-index: 0;
}

/* Волна 2 — в подкастах */
.wave-podcasts {
    position: absolute;
    bottom: 0; right: 0;
    width: 60%;
    opacity: 0.18;
    pointer-events: none;
    user-select: none;
}

.hero-inner {
    display: flex;
    align-items: flex-end;
    min-height: 540px;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.hero-photo-wrap {
    flex: 0 0 42%;
    display: flex;
    align-items: flex-end;
    position: relative;
}
.hero-photo {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 20px 40px rgba(120,30,40,.25));
    animation: hero-drift 6s ease-in-out infinite;
}

.hero-content {
    flex: 1;
    padding: 60px 0 48px;
    display: flex;
    align-items: center;
}

.hero-card {
    background: rgba(255,255,255,.93);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    max-width: 430px;
    box-shadow: var(--shadow);
}

.hero-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.hero-avatar-placeholder {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--medium-pink), var(--salmon));
    flex-shrink: 0;
}

.hero-name {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--salmon);
    margin-top: 2px;
}

.hero-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 8px;
}
.hero-list li {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-mid);
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}
.hero-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 8px; height: 8px;
    background: var(--medium-pink);
    border-radius: 50%;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* ══════════════════════════════════════
   TRAINING
══════════════════════════════════════ */
.training {
    background: #f7ece5;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

.training-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.training-list {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.course-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-mid);
    cursor: pointer;
    transition: background .2s, color .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 2px 8px rgba(180,80,80,.06);
    line-height: 1.35;
}
.course-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(180,80,80,.12);
}
.course-item.active {
    background: var(--salmon);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(211,145,131,.35);
}

.training-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.training-unicorn {
    width: 380px;
    position: absolute;
    bottom: 0;
    right: -20px;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    animation: float-slow 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 28px rgba(120,50,50,.15));
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    box-shadow: var(--shadow);
    width: 100%;
    position: relative;
    z-index: 2;
    min-height: 280px;
}

.course-badge {
    display: inline-block;
    background: transparent;
    color: var(--salmon);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding: 0;
}

.course-card h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.25;
}

.course-card p {
    font-size: 14.5px;
    color: var(--text-mid);
    margin-bottom: 24px;
    line-height: 1.55;
}

.course-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--salmon);
    margin-bottom: 4px !important;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.course-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark);
}

.course-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ══════════════════════════════════════
   MATERIALS
══════════════════════════════════════ */
.materials {
    padding: 80px 0;
    background: var(--white);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.material-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}
.material-card:hover {
    transform: translateY(-6px) rotate(-0.4deg);
    box-shadow: 0 16px 36px rgba(180,80,80,.18);
}

.material-card-header {
    padding: 22px 22px 18px;
}
.mc-salmon { background: linear-gradient(135deg, var(--salmon), var(--dark-pink)); }
.mc-pink   { background: linear-gradient(135deg, var(--medium-pink), var(--dark-pink)); }
.mc-yellow { background: linear-gradient(135deg, #d4900a, #f5b02e); }
.mc-brown  { background: linear-gradient(135deg, var(--brown), var(--salmon)); }

.material-type {
    display: block;
    font-size: 10px;
    font-weight: 900;
    color: rgba(255,255,255,.75);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.material-title {
    font-size: 17px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
}

.material-card-body {
    padding: 18px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.material-card-body p {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.5;
    flex: 1;
}

/* Слайдер (используется только отзывами) */
.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-arrow {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--light-pink);
    border: 2px solid var(--medium-pink);
    color: var(--dark-pink);
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .15s;
    user-select: none;
}
.slider-arrow:hover {
    background: var(--medium-pink);
    color: var(--white);
    transform: scale(1.08);
}

.slider-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}

/* ══════════════════════════════════════
   JOKE SECTION
══════════════════════════════════════ */
.joke-section {
    background: var(--white);
    padding: 70px 0 80px;
    overflow: hidden;
}

.joke-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.joke-left {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.joke-img {
    width: 300px;
    max-width: 100%;
    margin-top: 20px;
    filter: drop-shadow(0 8px 24px rgba(120,50,50,.15));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.joke-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.joke-result {
    background: var(--white);
    border-left: 4px solid var(--medium-pink);
    padding: 20px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.55;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s, transform .4s;
    display: none;
}
.joke-result.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.joke-btn {
    background: var(--medium-pink);
    color: var(--white);
    font-family: var(--font);
    font-weight: 800;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    display: inline-block;
    box-shadow: 0 4px 18px rgba(249,150,165,.35);
    line-height: 1.35;
}
.joke-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 28px rgba(249,150,165,.5);
}

/* ══════════════════════════════════════
   PERFORMANCES
══════════════════════════════════════ */
.performances {
    background: linear-gradient(135deg, #e87080 0%, #d36070 40%, #c85060 100%);
    padding: 80px 0;
}

.performances-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.performances-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.performances-text p {
    font-size: 15px;
    color: rgba(255,255,255,.9);
    line-height: 1.6;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.video-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #1e1212;
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
    transition: transform .2s, box-shadow .2s;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.55);
}

.video-thumb {
    aspect-ratio: 16/9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.video-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }

.v1 { background: linear-gradient(135deg, #2d2020, #5a3030); }
.v2 { background: linear-gradient(135deg, #3d2530, #6a3545); }
.v3 { background: linear-gradient(135deg, #1a2035, #2a3055); }
.v4 { background: linear-gradient(135deg, #203020, #355535); }

.video-brand {
    position: absolute;
    top: 12px; left: 12px;
    font-weight: 900;
    font-size: 14px;
    color: var(--medium-pink);
    line-height: 1.2;
    letter-spacing: 1px;
}

.video-label-text {
    font-weight: 900;
    font-size: 11px;
    color: var(--white);
    text-align: center;
    line-height: 1.4;
    padding: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.video-play-btn {
    position: absolute;
    bottom: 10px; right: 10px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--white);
    backdrop-filter: blur(4px);
}

/* ══════════════════════════════════════
   PODCASTS
══════════════════════════════════════ */
.podcasts {
    padding: 80px 0;
    background: #f7ece5;
    position: relative;
    overflow: hidden;
}

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

.podcast-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.podcast-card:hover {
    transform: translateY(-6px) rotate(0.5deg);
    box-shadow: 0 16px 36px rgba(180,80,80,.18);
}

.podcast-img {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--medium-pink), var(--dark-pink));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-play-btn {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.podcast-card:hover .podcast-play-btn {
    background: rgba(255,255,255,.4);
    transform: scale(1.1);
}

.podcast-info {
    padding: 18px 20px;
}
.podcast-info h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.podcast-ceu {
    display: inline-flex;
    align-items: center;
    background: var(--yellow);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    line-height: 1;
}
.podcast-info p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.45;
}

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews {
    padding: 80px 0;
    background: var(--white);
}

.review-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    background: #f7ece5;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--medium-pink), var(--salmon));
    flex-shrink: 0;
}

.review-name {
    font-weight: 800;
    font-size: 15px;
    color: var(--text-dark);
}

.review-stars {
    color: var(--yellow);
    font-size: 16px;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.55;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
    background: var(--text-dark);
    padding: 56px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr 1.4fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 24px;
}

.footer-col--brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--medium-pink);
    line-height: 1.1;
    letter-spacing: -0.5px;
    display: inline-block;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    line-height: 1.6;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,.35);
    margin-bottom: 16px;
}

.footer-col-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col-nav a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    transition: color .2s;
    line-height: 1.4;
}
.footer-col-nav a:hover { color: var(--medium-pink); }

.footer-cta-col {
    margin-top: 24px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.social-link {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    transition: background .2s, color .2s, transform .15s;
    position: relative;
}
.social-link:hover {
    background: var(--medium-pink);
    color: var(--white);
    transform: translateY(-3px);
}
/* Всплывающая подпись */
.social-link::after {
    content: attr(aria-label);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,.75);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.social-link:hover::after { opacity: 1; }

.social-link--boosty:hover { background: #f4831f; }
.social-link--gc:hover     { background: #5b8cff; }

.footer-cta {
    text-align: center;
    margin-bottom: 32px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,.3);
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 20px;
}
.footer-privacy {
    color: rgba(255,255,255,.3);
    transition: color .2s;
}
.footer-privacy:hover { color: var(--medium-pink); }

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
.blog {
    padding: 80px 0;
    background: var(--text-dark);
}

.blog-intro {
    font-size: 21px;
    font-weight: 900;
    font-style: italic;
    color: var(--medium-pink);
    margin-top: -20px;
    margin-bottom: 40px;
    line-height: 1.3;
}

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

.yt-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #1e1212;
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
    display: block;
    transition: transform .2s, box-shadow .2s;
}
.yt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.55);
}
.yt-card.yt-hidden { display: none; }

.yt-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.yt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.yt-card:hover .yt-thumb img { transform: scale(1.05); }

.yt-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.2);
    opacity: 0;
    transition: opacity .2s;
}
.yt-card:hover .yt-play { opacity: 1; }

.yt-play-icon {
    width: 46px; height: 46px;
    background: rgba(200,0,0,.88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--white);
    padding-left: 3px;
}

.yt-info {
    padding: 12px 14px 16px;
}

.yt-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.88);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-more {
    text-align: center;
    margin-top: 32px;
}

/* ══════════════════════════════════════
   SECTION INTRO
══════════════════════════════════════ */
.section-intro {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.65;
    margin-top: -20px;
    margin-bottom: 36px;
    max-width: 700px;
}

/* ══════════════════════════════════════
   PODCAST CARD ENHANCEMENTS
══════════════════════════════════════ */
.podcast-img { position: relative; }

.podcast-img-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.55;
    display: block;
}

/* Podcasts section header with cover image */
.podcasts-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}
.podcasts-section-header .section-title { margin-bottom: 0; }
.podcasts-section-header .section-intro { margin-bottom: 0; }
.podcasts-cover {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

/* Materials section header with photo */
.materials-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}
.materials-photo {
    width: 220px;
    height: 150px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

/* Second joke image */
.joke-img2 {
    width: 160px;
    border-radius: var(--radius-md);
    margin-top: 16px;
    opacity: 0.92;
}

.podcast-access-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 11px;
    border-radius: 50px;
    line-height: 1;
}
.podcast-access-tag.free {
    background: rgba(255,255,255,.9);
    color: var(--dark-pink);
}
.podcast-access-tag.paid {
    background: var(--yellow);
    color: var(--text-dark);
}

.pc1 { background: linear-gradient(135deg, #c85060 0%, #e87080 100%); }
.pc2 { background: linear-gradient(135deg, #7b5ea7 0%, #b087d4 100%); }
.pc3 { background: linear-gradient(135deg, #2c7a6e 0%, #4db6a8 100%); }
.pc4 { background: linear-gradient(135deg, #8b5e13 0%, #c8944a 100%); }
.pc5 { background: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%); }
.pc6 { background: linear-gradient(135deg, #1e7a49 0%, #27ae60 100%); }
.pc7 { background: linear-gradient(135deg, #8b2c22 0%, #c0604a 100%); }
.pc8 { background: linear-gradient(135deg, #5a2d7a 0%, #8e44ad 100%); }
.pc9 { background: linear-gradient(135deg, #1a252f 0%, #2e4057 100%); }

.podcast-brand {
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 11px;
    font-weight: 900;
    color: rgba(255,255,255,.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.25;
    pointer-events: none;
    user-select: none;
}

.podcast-ep-num {
    position: absolute;
    bottom: -8px;
    right: 12px;
    font-size: 90px;
    font-weight: 900;
    color: rgba(255,255,255,.1);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-family: var(--font);
}

.podcast-guest {
    font-size: 12px;
    color: var(--salmon);
    font-weight: 700;
    margin-bottom: 6px;
}

.podcast-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.podcast-price-tag {
    display: inline-flex;
    align-items: center;
    background: var(--beige);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    line-height: 1;
}

.podcast-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
}

.podcast-info h3 { margin-bottom: 4px; }

.podcast-info p {
    flex: 1;
    margin-bottom: 12px;
}

.podcast-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
}

/* ══════════════════════════════════════
   WEBINARS
══════════════════════════════════════ */
.webinars {
    padding: 80px 0;
    background: var(--white);
}

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

.webinar-card {
    background: var(--beige);
    border-radius: var(--radius-md);
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
}
.webinar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(180,80,80,.15);
}

.webinar-label {
    display: inline-block;
    background: var(--salmon);
    color: var(--white);
    font-weight: 900;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
    align-self: flex-start;
}

.webinar-card h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.25;
}

.webinar-author {
    font-size: 13px;
    color: var(--salmon);
    font-weight: 700;
}

.webinar-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.55;
    flex: 1;
}

.webinar-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(192,131,110,.2);
}

.webinar-purchase {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.webinar-price {
    font-size: 16px;
    font-weight: 900;
    color: var(--text-dark);
}

/* ══════════════════════════════════════
   INVITE MODAL
══════════════════════════════════════ */
.invite-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 32, 32, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .25s;
}
.invite-overlay.visible { opacity: 1; }
.invite-overlay[hidden] { display: none !important; }

.invite-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 40px 32px;
    max-width: 620px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(45,32,32,.3);
    transform: translateY(20px);
    transition: transform .25s;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.invite-overlay.visible .invite-modal { transform: translateY(0); }

.invite-close {
    position: absolute;
    top: 16px; right: 20px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: var(--text-mid);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background .2s, color .2s;
}
.invite-close:hover { background: var(--light-pink); color: var(--dark-pink); }

.invite-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 6px;
    padding-right: 32px;
}

.invite-subtitle {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 24px;
    line-height: 1.5;
}

.invite-frame {
    width: 100%;
    height: 540px;
    border: none;
    border-radius: var(--radius-md);
    display: block;
}

@media (max-width: 768px) {
    .invite-modal { padding: 28px 20px 24px; }
    .invite-frame { height: 480px; }
}

/* ══════════════════════════════════════
   GETCOURSE OVERLAY
══════════════════════════════════════ */
.gc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 32, 32, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .25s;
}
.gc-overlay.visible { opacity: 1; }
.gc-overlay[hidden] { display: none !important; }

.gc-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(45,32,32,.25);
    transform: translateY(20px);
    transition: transform .25s;
}
.gc-overlay.visible .gc-modal { transform: translateY(0); }

.gc-modal-label {
    display: inline-block;
    background: var(--light-pink);
    color: var(--dark-pink);
    font-weight: 900;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.gc-modal h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.25;
}

.gc-modal p {
    font-size: 14.5px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 24px;
}

.gc-modal-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════════════ */
.mobile-bottom-nav {
    display: none;
}

/* ══════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: rgba(255,255,255,.85);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    z-index: 500;
    box-shadow: 0 -4px 20px rgba(0,0,0,.25);
    flex-wrap: wrap;
    transition: transform .3s ease;
}
.cookie-banner.hidden {
    transform: translateY(110%);
}
.cookie-text {
    font-size: 13px;
    line-height: 1.5;
    flex: 1;
}
.cookie-text a {
    color: var(--medium-pink);
    text-decoration: underline;
}

/* ══════════════════════════════════════
   CONSULTATIONS SECTION
══════════════════════════════════════ */
.consultations {
    padding: 80px 0;
    background: var(--text-dark);
}

.consult-inner {
    display: grid;
    grid-template-columns: 300px 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.consult-photo-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    flex-shrink: 0;
}

.consult-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.consult-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--medium-pink);
    margin-bottom: 16px;
}

.consult-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.consultations p {
    font-size: 15px;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-bottom: 32px;
}

.consult-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.consult-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: background .2s, border-color .2s;
}
.consult-card:hover {
    background: rgba(249,150,165,.08);
    border-color: rgba(249,150,165,.25);
}

.consult-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(249,150,165,.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-pink);
    flex-shrink: 0;
}

.consult-card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.consult-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
}

/* ══════════════════════════════════════
   CONTACTS
══════════════════════════════════════ */
.contacts {
    padding: 80px 0;
    background: var(--light-gray);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(180,80,80,.07);
    transition: transform .2s, box-shadow .2s;
    border-bottom: 3px solid transparent;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(180,80,80,.14);
}

.contact-card-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.contact-platform {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-mid);
}

.contact-handle {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    word-break: break-all;
}

.contact-action {
    font-size: 13px;
    font-weight: 700;
    margin-top: 8px;
}

/* Per-platform accent colors */
.contact-card--email      { border-bottom-color: var(--medium-pink); }
.contact-card--email      .contact-card-icon { background: var(--medium-pink); }
.contact-card--email      .contact-action { color: var(--dark-pink); }

.contact-card--telegram   { border-bottom-color: #2aabee; }
.contact-card--telegram   .contact-card-icon { background: #2aabee; }
.contact-card--telegram   .contact-action { color: #2aabee; }

.contact-card--instagram  { border-bottom-color: #c13584; }
.contact-card--instagram  .contact-card-icon { background: linear-gradient(135deg, #405de6, #833ab4, #c13584, #fd1d1d); }
.contact-card--instagram  .contact-action { color: #c13584; }

.contact-card--youtube    { border-bottom-color: #cc0000; }
.contact-card--youtube    .contact-card-icon { background: #ff0000; }
.contact-card--youtube    .contact-action { color: #cc0000; }

.contact-card--vk         { border-bottom-color: #4680c2; }
.contact-card--vk         .contact-card-icon { background: #4680c2; }
.contact-card--vk         .contact-action { color: #4680c2; }

.contact-card--yandex     { border-bottom-color: #fc3f1d; }
.contact-card--yandex     .contact-card-icon { background: #fc3f1d; }
.contact-card--yandex     .contact-action { color: #fc3f1d; }

.contact-card--boosty     { border-bottom-color: #f4831f; }
.contact-card--boosty     .contact-card-icon { background: #f4831f; }
.contact-card--boosty     .contact-action { color: #f4831f; }

.contact-card--gc         { border-bottom-color: #5b8cff; }
.contact-card--gc         .contact-card-icon { background: #5b8cff; }
.contact-card--gc         .contact-action { color: #5b8cff; }

/* Contact form block */
.contacts-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(180,80,80,.08);
}

.contacts-form-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contacts-form-sub {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 24px;
}

.contacts-form-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 48px 24px;
    border: 2px dashed rgba(180,80,80,.18);
    border-radius: var(--radius-md);
    color: rgba(180,80,80,.35);
    font-size: 15px;
    font-weight: 600;
}

.contacts-form-frame {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: var(--radius-md);
    display: block;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .training-list { flex: 0 0 240px; }
    .course-card { margin-right: 40px; }
    .training-unicorn { width: 160px; top: -20px; }
    .materials-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-blog-grid { grid-template-columns: repeat(3, 1fr); }
    .podcasts-grid { grid-template-columns: repeat(2, 1fr); }
    .performances-inner { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
    .contacts-grid { grid-template-columns: repeat(2, 1fr); }
    .consult-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .consult-photo-wrap { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .burger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0;
        background: var(--light-pink);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 32px;
        gap: 4px;
        transform: translateY(-110%);
        transition: transform .35s cubic-bezier(.4,0,.2,1);
        border-bottom: 2px solid var(--medium-pink);
        z-index: 250;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { font-size: 16px; padding: 12px 16px; border-radius: var(--radius-sm); }

    .hero-inner { flex-direction: column; align-items: center; min-height: auto; }
    .hero-photo-wrap { flex: none; width: 100%; max-width: 320px; padding-top: 24px; }
    .hero-content { padding: 16px 0 40px; width: 100%; }
    .hero-card { max-width: 100%; }

    .training-inner { flex-direction: column; }
    .training-list { flex: none; width: 100%; }
    .training-right { width: 100%; align-items: center; }
    .training-unicorn { position: relative; top: 0; right: 0; width: 130px; margin-bottom: 12px; }
    .course-card { margin-right: 0; max-width: 100%; }

    .materials-grid { grid-template-columns: 1fr; }
    .review-card { flex: 0 0 calc(100% - 4px); }

    .joke-inner { flex-direction: column; align-items: center; gap: 32px; }
    .joke-right { width: 100%; }
    .joke-img { width: 220px; }

    .videos-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .podcasts-grid { grid-template-columns: 1fr; }
    .podcasts-cover { display: none; }
    .materials-photo { display: none; }
    .joke-img2 { display: none; }
    .contacts-grid { grid-template-columns: repeat(2, 1fr); }
    .contacts-form-wrap { padding: 28px 24px; }
    .gc-modal { padding: 28px 24px; }

    /* Bottom nav */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid rgba(219, 123, 139, 0.15);
        z-index: 300;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        box-shadow: 0 -4px 20px rgba(45,32,32,.08);
    }

    .mbn-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 4px;
        gap: 3px;
        color: var(--text-mid);
        font-size: 10px;
        font-weight: 700;
        transition: color .2s;
    }
    .mbn-item:hover, .mbn-item.active { color: var(--dark-pink); }

    /* Push page content above bottom nav + safe area */
    body {
        padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    }

    /* Hide burger on mobile since we have bottom nav */
    .burger { display: flex; }

    /* Cookie banner above bottom nav on mobile */
    .cookie-banner {
        bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-col--brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .section-title { font-size: 26px; }
    .hero-name { font-size: 20px; }
    .course-btns { flex-direction: column; }
    .course-btns a { text-align: center; }
    .contacts-grid { grid-template-columns: 1fr; }
    .consult-inner { grid-template-columns: 1fr; gap: 32px; }
    .consult-title { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-col--brand { grid-column: auto; }
}
