body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #333;
    overflow-x: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-animation {
    width: 300px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.loading-bar-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 15px;
    transition: width 0.3s ease-in-out;
    animation: pulse 1.5s infinite, shimmer 2s infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

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

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align content to the bottom */
    color: white;
    text-align: center;
    padding-bottom: 50px; /* Add some padding from the bottom */
}

.hero-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    background-size: cover;
    object-fit: contain; /* Changed to contain to prevent cropping */
}

.hero-content {
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 105, 180, 0.3));
    padding: 20px; /* Smaller padding */
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px; /* Smaller width */
}

.hero-content h1 {
    font-size: 2.5em; /* Smaller font size */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2em; /* Smaller font size */
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #c7007c, #ff1493);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.6);
}

/* Powerful Section Styling */
.section {
    padding: 100px 20px;
    margin: 0;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.05));
    z-index: -1;
}

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

.section h2 {
    text-align: center;
    font-size: 3.5em;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.3);
    position: relative;
}

.section h2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff69b4, #ffd700, #ff69b4);
    border-radius: 2px;
}

/* Hero Description Section - Keep existing powerful style */
.hero-description {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.hero-description::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.description-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.description-content p {
    font-size: 1.4em;
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.books-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.book-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    padding: 20px 30px;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
/* Контейнер каруселі вписується в обмеження hero-description */
.carousel-wrapper {
  max-width: 600px;     /* ширина за бажанням */
  margin: 0 auto 40px;  /* + відступ знизу */
}

/* сам Swiper */
.book-swiper {
  width: 100%;
  padding: 30px 0 60px;          /* місце під тіні / кнопки */
}

.book-swiper .swiper-slide {
  width: 260px;                  /* фіксуємо ширину «обкладинки» */
  height: 360px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

.book-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* кнопки під existing рожевий фон */
.hero-description .swiper-button-next,
.hero-description .swiper-button-prev {
  color: #fff;
  --swiper-navigation-size: 28px;
  text-shadow: 1px 1px 3px rgba(0,0,0,.4);
}

.hero-description .swiper-pagination-bullet {
  background: #fff;
  opacity: .6;
}
.hero-description .swiper-pagination-bullet-active {
  opacity: 1;
}

.book-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.duration-text {
    font-size: 1.3em;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* === CTA всередині hero-description === */
.cta-hero{
    display:inline-block;
    margin-top:32px;
    padding:16px 38px;
    font-size:1.2rem;
    font-weight:600;
    letter-spacing:0.5px;
    color:#fff;
    background:linear-gradient(135deg,#ff9e33 0%,#ff5379 50%,#c43dff 100%);
    background-size:200% 200%;
    border:none;
    border-radius:50px;
    cursor:pointer;
    text-decoration:none;
    box-shadow:0 8px 28px rgba(0,0,0,.25);
    transition:transform .3s ease,box-shadow .3s ease;
    /* ніжна «пульсація» фону */
    animation:ctaPulse 6s ease-in-out infinite;
}

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

/* hover / focus - трохи підстрибує */
.cta-hero:hover,
.cta-hero:focus{
    transform:translateY(-4px) scale(1.04);
    box-shadow:0 12px 32px rgba(0,0,0,.35);
}

/* Audience Section - Powerful Card Style */
.audience-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.audience-card {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.05));
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.audience-card:hover::before {
    opacity: 1;
}

.audience-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 105, 180, 0.6);
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.2);
}

.audience-card h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ff69b4;
}

.audience-card p {
    font-size: 1.1em;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Pain Points Section - Dark Powerful Style */
.pain-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: white;
    position: relative;
}

.pain-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ff69b4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 0;
}

.pain-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.pain-item {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.05));
    border-left: 5px solid #ff1493;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.pain-item:hover {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 105, 180, 0.1));
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.highlight {
    font-weight: bold;
    color: #ffd700;
    text-align: center;
    font-size: 1.5em;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Benefits Section - Bright Energetic Style */
.benefits-section {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: scale(0);
}

.benefit-card:hover::before {
    transform: scale(1);
}

.benefit-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.benefits-section h2{
  /* убираем градиент */
  background: none !important;

  /* возвращаем обычную заливку текста */
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;

  -webkit-text-fill-color: #fff !important;
  color: #ffffff !important;
}
.benefit-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    font-size: 1.1em;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Schedule Section - Clean Professional Style */
.schedule-section {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: white;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.schedule-item {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.05));
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.schedule-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 105, 180, 0.6);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.schedule-label {
    font-size: 1.2em;
    color: #ff69b4;
    font-weight: bold;
    margin-bottom: 10px;
}

.schedule-value {
    font-size: 1.4em;
    color: white;
    font-weight: bold;
}

/* Package Cards - Enhanced Design */
.package-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.package-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 3px solid rgba(255, 105, 180, 0.3);
    border-radius: 25px;
    padding: 40px;
    width: 400px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: white;
}

.package-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 105, 180, 0.6);
    box-shadow: 0 30px 60px rgba(255, 105, 180, 0.2);
}

.package-card h3 {
    color: #ffd700;
    font-size: 2.2em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.package-card .price {
    font-size: 2.5em;
    color: white;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.package-card .price s {
    color: #999;
    font-size: 0.6em;
}

.package-card ul {
    text-align: left;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.package-card ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.package-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2em;
}

.buy-button {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.buy-button:hover {
    background: linear-gradient(135deg, #ff1493, #c7007c);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.5);
}

/* PRO Package Enhanced Styling */
.pro-package {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border: 3px solid #ffd700;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.4);
    transform: scale(1.05);
    position: relative;
}

.pro-package::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ffd700, #ff69b4, #ffd700);
    border-radius: 30px;
    z-index: -1;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    to { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}



.timer-text {
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffd700;
    font-size: 1.1em;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border-radius: 15px;
    padding: 15px;
    min-width: 60px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.time-unit span {
    display: block;
    font-size: 1.8em;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.time-unit label {
    font-size: 0.9em;
    color: white;
    font-weight: bold;
}

.pro-button {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    font-weight: bold;
    font-size: 1.3em;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.pro-button:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.pro-package .attention {
    color: #ffd700;
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.1em;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Feddback Section */
/* общий фон и выравнивание, вместо .cta-section */
.feedback-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg,#ff69b4,#ff1493);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.feedback-section .section-container{
    max-width: 900px;
    margin: 0 auto;
}

/* заголовок подсвечиваем как раньше */
.feedback-section h2{
    font-size: 2.6em;
    margin-bottom: 40px;

    /* радужный градиент-заливка */
    background: linear-gradient(135deg, #fff, #ffe8f4);

    /* стандарт + вендорная версия */
    background-clip: text;          /* ← добавили */
    -webkit-background-clip: text;

    /* текст делаем прозрачным для всех движков */
    color: transparent;             /* стандарт */
    -webkit-text-fill-color: transparent; /* WebKit */
}

/* сам слайдер */
.feedback-swiper{
    padding:40px 0;
}

.feedback-swiper .swiper-slide{
    width: clamp(260px, 80vw, 520px);          /* подобрать «на глаз» */
    display: flex;
    justify-content: center;
    overflow: visible;
    height:500px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.feedback-swiper img{
    width:100%;
    height:auto;
    object-fit:contain;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    }

/* Footer Section - Matching Site Style */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 80px 20px 40px;
    margin-top: 0;
    position: relative;
}

.footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05), rgba(255, 20, 147, 0.02));
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-info, .footer-links {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.05));
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.footer-info:hover, .footer-links:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 105, 180, 0.6);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.2);
}

.footer-info h3, .footer-links h3 {
    color: #ff69b4;
    font-size: 1.5em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.footer-info p, .footer-links p {
    margin: 10px 0;
    line-height: 1.6;
    font-size: 1.1em;
}

.footer-info a, .footer-links a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.footer-info a:hover, .footer-links a:hover {
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 105, 180, 0.3);
    padding-top: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #ccc;
    font-size: 1em;
    margin: 0;
}
/* 🔸 POPULAR badge --------------------------------------------------- */
.pro-badge{
    position:absolute;
    top:20px;               /* отступ от верхнего края карточки */
    left:50%;
    transform:translateX(-50%);
    
    padding:10px 24px;
    background:linear-gradient(135deg,#ffd700,#ffed4e);
    color:#333;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.9em;
    
    border-radius:32px;
    box-shadow:0 6px 20px rgba(0,0,0,.25);
    
    animation:badgeBounce 2.5s ease-in-out infinite;
    pointer-events:none;     /* чтобы клики проходили сквозь */
    z-index:2;
}

/* ключевые кадры «подпрыгивания» (бесконечно) */
@keyframes badgeBounce{
  0%,20%,53%,80%,100%{ transform:translate(-50%,0); }
  40%,43%            { transform:translate(-50%,-12px); }
  70%                { transform:translate(-50%,-7px);  }
  90%                { transform:translate(-50%,-3px);  }
}
@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        padding: 60px 20px 30px;
    }
    
    .footer-info, .footer-links {
        padding: 25px;
    }
}

/* ===== Mobile tweaks ≤ 600 px ============================ */
@media (max-width: 600px) {

  /* 1. Видео на весь экран без translate */
  .hero-section video,
  .cta-video-background {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transform: none;
  }

  /* 2. Карточки пакетов в столбик, 100 % ширины */
  .package-cards          { flex-direction: column; align-items: center; padding:0 14px; }  
  .package-card           { width: 100%; margin: 0 0 32px; box-sizing: border-box; }
  .package-card.pro-package { transform: none; }

  /* 3. Бейдж «ПОПУЛЯРНИЙ» всегда внутри рамки */
  .package-card.pro-package .pro-badge {
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
  }

  /* 4. Затемняем стекло на видео, чтобы текст читался */
  .hero-content,
  #cta .section-container { backdrop-filter: none; background: rgba(0,0,0,.6); }
}
/* ========================================================= */

