/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Version 1.0.9 */
html {
    background: #181d23;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: transparent;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Новый, более стабильный метод для фона */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('pattern.png') repeat;
    background-size: 250px 250px;
    z-index: -2;
    pointer-events: none;
    will-change: transform; /* Подсказка браузеру для оптимизации */
}

/* Overlay для затемнения фона */
body::after {
    content: "";
    position: fixed;
    z-index: -1; /* Поверх фона, но позади контента */
    left: 0; top: 0; right: 0; bottom: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(24,29,35,0.8) 60%, rgba(24,29,35,0.7) 100%);
}

/* Упрощение для мобильных */
@media (max-width: 768px) {
    body::before {
        background-size: 150px 150px;
    }
    body::after {
        background: rgba(24,29,35,0.85);
    }
}

/* Логотип */
.main-logo {
    width: 120px;
    height: auto;
    margin: 20px auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    transition: filter 0.3s ease;
}

.main-logo:hover {
    filter: drop-shadow(0 4px 16px rgba(255,215,0,0.3));
}

/* SVG оптимизация */
.main-logo svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@media (max-width: 768px) {
    .main-logo {
        width: 100px;
        margin: 16px auto;
    }
}

@media (max-width: 480px) {
    .main-logo {
        width: 80px;
        margin: 12px auto;
    }
}

/* Основной контейнер без фона и скругления */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px;
    position: relative;
    z-index: 1;
    background: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
}

/* Тень для текста для лучшей читаемости */
body, .container, .main-content, .hero-section, .features-heading h2, .exchange-section h1, .cta-text, .feature-item span, .feature-item i {
    text-shadow: 0 2px 8px rgba(0,0,0,0.28), 0 1px 0 rgba(0,0,0,0.12);
}

/* Для мобильных — убираем скругление и уменьшаем отступы */
@media (max-width: 768px) {
    .container {
        padding: 12px 4px;
    }
}

/* Главная секция */
.hero-section {
    /* Remove background, border, shadow, radius for clean look */
    background: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: visible;
}

.logo-section {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.money-theme {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #ffd700, #ff6b6b, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 24px 0;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: shimmer 4s infinite;
    background-size: 200% auto;
}

.money-theme span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Секция обмена */
.exchange-section {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.exchange-section h1 {
    font-size: 2rem;
    margin-bottom: 60px !important;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.exchange-pair {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-size: 1.5rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    margin: 0 auto 24px;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.exchange-pair span {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffd700;
    transition: all 0.3s ease;
}

.exchange-pair span:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.exchange-pair i {
    color: #ffd700;
    animation: pulse 2s infinite;
    font-size: 1.2rem;
}

/* Особенности */
.features-heading {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.features-heading h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.features-heading p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 136, 147, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item i {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c8893;
    background: rgba(124, 136, 147, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(124, 136, 147, 0.15);
}

.feature-item:hover i {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.15);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
    line-height: 1.4;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

/* CTA секция сверху */
.top-cta {
    margin: 24px 0 48px;
}

.cta-text {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Кнопка Telegram с эффектами */
.telegram-button {
    display: inline-block !important;
    position: relative;
    padding: 20px 40px !important;
    font-size: 1.25rem !important;
    font-weight: 600;
    color: #ffffff !important;
    background: linear-gradient(45deg, #2aabee, #229ED9) !important;
    border-radius: 16px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: button-pulse 3s infinite 0.5s;
    white-space: nowrap !important;
    min-width: max-content;
}

.button-content {
    position: relative;
    z-index: 1;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    white-space: nowrap !important;
}

.button-content i {
    font-size: 1.8rem !important;
    flex-shrink: 0 !important;
    min-width: 1.8rem !important;
    text-align: center !important;
}

.button-content span {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: rotate 4s linear infinite;
}

/* Предупреждение */
.warning-section {
    background: rgba(255, 87, 34, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 87, 34, 0.2);
    backdrop-filter: blur(10px);
}

.warning-section h3 {
    color: #ff5722;
    font-size: 1.25rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warning-section i {
    color: #ff5722;
}

.warning-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

/* Баннер Внимание на всю ширину (минималистичный, без скруглений) */
.warning-banner {
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto 22px auto;
    background: linear-gradient(90deg, rgba(35,39,47,0.85) 0%, rgba(45,49,58,0.75) 100%);
    color: #fffbe7;
    padding: 10px 0 10px 0;
    text-align: left;
    font-size: 0.80rem;
    font-weight: 500;
    box-shadow: 0 1px 6px 0 rgba(0,0,0,0.10);
    position: relative;
    z-index: 10;
    border-radius: 0;
    letter-spacing: 0.01em;
    display: block;
}
.warning-banner h3 {
    margin: 0 0 8px 0;
    font-size: 0.98rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    text-align: center;
}
.warning-banner i {
    font-size: 1.1em;
    color: #ffd700;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.10));
}
.warning-banner p {
    margin: 0 auto;
    font-size: 0.72rem;
    color: #fffbe7;
    text-shadow: 0 1px 2px rgba(0,0,0,0.10);
    text-align: justify;
    line-height: 1.55;
    word-break: break-word;
    padding: 0 14px;
    letter-spacing: 0.01em;
    max-width: 900px;
}
@media (max-width: 768px) {
    .warning-banner {
        font-size: 0.70rem;
        padding: 8px 0 8px 0;
        border-radius: 0;
        display: block;
        margin: 0 auto 14px auto;
    }
    .warning-banner h3 {
        font-size: 0.82rem;
        margin: 0 0 6px 0;
        padding: 0 6px;
    }
    .warning-banner p {
        font-size: 0.60rem;
        margin: 0 auto;
        padding: 0 6px;
        max-width: 100vw;
        box-sizing: border-box;
        word-break: break-word;
        padding-right: 8px;
    }
}

/* Футер */
.footer {
    text-align: center;
    padding: 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Анимации */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

/* Медиа-запросы */
@media (max-width: 768px) {
    .container {
        padding: 16px 8px;
    }
    .hero-section {
        padding: 24px 8px;
    }
    .features-heading p {
        padding: 0 8px;
        line-height: 1.7;
    }
    .exchange-section h1 {
        padding: 0 8px;
        line-height: 1.5;
    }
    .cta-text {
        padding: 0 8px;
        line-height: 1.5;
    }
    .footer {
        padding: 24px 8px;
        line-height: 1.5;
    }
    .main-content {
        padding: 0 8px;
        line-height: 1.6;
    }
    .warning-banner {
        padding-left: 8px;
        padding-right: 8px;
    }
    .warning-banner p {
        padding-left: 8px;
        padding-right: 8px;
        line-height: 1.6;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 

/* Улучшенный стеклянный блок обмена */
.exchange-flow {
  position: relative;
  z-index: 1;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 32px auto 32px auto;
  padding: 24px 32px;
  background: rgba(34, 38, 46, 0.55);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22), 0 1.5px 0 rgba(255,255,255,0.04) inset;
  backdrop-filter: blur(18px);
  border: 1.5px solid rgba(255,255,255,0.10);
  max-width: 720px;
  transition: box-shadow 0.3s, background 0.3s;
}

.exchange-flow::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border-radius: 28px;
  background: linear-gradient(120deg, 
    rgba(255,215,0,0.22), 
    rgba(255,107,107,0.18), 
    rgba(34,158,217,0.16), 
    rgba(255,215,0,0.22) 80%);
  background-size: 300% 300%;
  animation: border-move 3s linear infinite;
  box-shadow: 0 0 12px 1px rgba(255,215,0,0.07);
}

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

.exchange-step {
  background: rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px 36px;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  border: 1.5px solid rgba(255,255,255,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, background 0.2s;
  position: relative;
}

.exchange-step.central {
  background: linear-gradient(90deg, rgba(255,215,0,0.13) 0%, rgba(255,255,255,0.10) 100%);
  border: 2px solid #ffd700;
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffd700;
  box-shadow: 0 4px 32px rgba(255,215,0,0.10);
  z-index: 2;
}

.exchange-label {
  color: #ffd700;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
}

.exchange-arrow {
  font-size: 1.4rem;
  color: #ffd700;
  filter: drop-shadow(0 1px 4px rgba(255,215,0,0.13));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}

.exchange-step:hover, .exchange-step.central:hover {
  background: rgba(255,255,255,0.16);
  box-shadow: 0 8px 32px rgba(255,215,0,0.13), 0 2px 16px rgba(0,0,0,0.13);
}

.exchange-flow:hover {
  box-shadow: 0 12px 48px rgba(255,215,0,0.10), 0 8px 40px rgba(0,0,0,0.25);
  background: rgba(34, 38, 46, 0.70);
}

.exchange-switch {
  position: absolute;
  top: 50%;
  right: -48px;
  transform: translateY(-50%);
  background: rgba(34,38,46,0.7);
  border: 2px solid #ffd700;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  cursor: pointer;
  font-size: 1.2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  z-index: 2;
}
.exchange-switch:hover {
  background: #ffd700;
  color: #22262e;
  box-shadow: 0 4px 16px rgba(255,215,0,0.18);
}

.exchange-step, .exchange-step.central {
  transition: transform 0.5s cubic-bezier(.4,2,.6,1), opacity 0.5s;
}
.exchange-flow.switching .exchange-step {
  transform: scale(0.85) translateY(20px);
  opacity: 0.2;
}

@media (max-width: 600px) {
  .exchange-flow {
    flex-direction: column;
    gap: 16px; /* Увеличил отступ между блоками */
    padding: 24px 16px; /* Увеличил внутренние отступы */
  }
  .exchange-step, .exchange-step.central {
    min-width: unset;
    width: 100%;
    padding: 14px 8px;
    font-size: 1rem;
  }
  .exchange-arrow {
    font-size: 1.1rem;
    padding: 0;
  }
} 

@media (max-width: 720px) {
  .exchange-switch {
    right: 8px;
    top: auto;
    bottom: -44px;
    transform: none;
  }
} 

/* Название компании */
.company-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin: 16px 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
        margin: 12px 0;
    }
} 

/* Стрелка призыва к действию */
.cta-arrow {
    text-align: center;
    margin: 16px 0;
    animation: bounce 3s infinite;
}

.cta-arrow i {
    font-size: 1.5rem;
    color: #ffd700;
    filter: drop-shadow(0 2px 4px rgba(255,215,0,0.3));
}

/* Синхронизированная анимация кнопки */
.telegram-button {
    display: inline-block;
    position: relative;
    padding: 20px 40px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(45deg, #2aabee, #229ED9);
    border-radius: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: button-pulse 3s infinite 0.5s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes button-pulse {
    0%, 20%, 50%, 80%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(42, 171, 238, 0.3);
    }
    40% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(42, 171, 238, 0.6);
    }
    60% {
        transform: scale(1.02);
        box-shadow: 0 0 35px rgba(42, 171, 238, 0.4);
    }
} 

@media (max-width: 768px) {
    .cta-arrow {
        margin: 12px 0;
    }
    .cta-arrow i {
        font-size: 1.2rem;
    }
    
    .telegram-button {
        padding: 20px 30px !important; /* Еще раз увеличил отступы */
        font-size: 1.2rem !important;   /* Еще раз увеличил шрифт */
        letter-spacing: 0.5px !important;
    }
    
    .button-content {
        gap: 12px !important;
    }
    
    .button-content i {
        font-size: 1.7rem !important;   /* Еще раз увеличил иконку */
        min-width: 1.7rem !important;
    }
}

@media (max-width: 480px) {
    .telegram-button {
        padding: 18px 24px !important; /* Еще раз увеличил отступы */
        font-size: 1.1rem !important;    /* Еще раз увеличил шрифт */
        letter-spacing: 0.3px !important;
    }
    
    .button-content {
        gap: 10px !important;
    }
    
    .button-content i {
        font-size: 1.5rem !important;   /* Еще раз увеличил иконку */
        min-width: 1.5rem !important;
    }
} 

/* Анимация для преимуществ на мобильных */
@keyframes highlight-feature-item {
    0%, 10%, 100% {
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
    }
    5% {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
}

@keyframes highlight-feature-icon {
    0%, 10%, 100% {
        color: #7c8893;
        background: rgba(124, 136, 147, 0.08);
        border-color: rgba(124, 136, 147, 0.15);
        transform: scale(1) rotate(0deg);
        box-shadow: none;
    }
    5% {
        color: #ffd700;
        background: rgba(255, 215, 0, 0.08);
        border-color: rgba(255, 215, 0, 0.15);
        transform: scale(1.1) rotate(-8deg); /* Добавил вращение */
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
    }
}

@media (max-width: 768px) {
    /* Отключаем hover-эффекты на мобильных */
    .feature-item:hover, .feature-item:active {
        transform: none;
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
    }
    .feature-item:hover i, .feature-item:active i {
        color: #7c8893;
        background: rgba(124, 136, 147, 0.08);
        border-color: rgba(124, 136, 147, 0.15);
        transform: scale(1);
        box-shadow: none;
    }

    /* Применяем последовательную анимацию, когда блок в поле зрения */
    .features.in-view .feature-item {
        animation: highlight-feature-item 7s infinite ease-in-out; /* Ускорил анимацию */
        animation-delay: var(--delay);
    }

    .features.in-view .feature-item i {
        animation: highlight-feature-icon 7s infinite ease-in-out; /* Ускорил анимацию */
        animation-delay: var(--delay);
    }

    /* Задержки для каждого элемента (ускоренные) */
    .feature-item:nth-child(1)  { --delay: 0s; }
    .feature-item:nth-child(2)  { --delay: 0.5s; }
    .feature-item:nth-child(3)  { --delay: 1.0s; }
    .feature-item:nth-child(4)  { --delay: 1.5s; }
    .feature-item:nth-child(5)  { --delay: 2.0s; }
    .feature-item:nth-child(6)  { --delay: 2.5s; }
    .feature-item:nth-child(7)  { --delay: 3.0s; }
    .feature-item:nth-child(8)  { --delay: 3.5s; }
    .feature-item:nth-child(9)  { --delay: 4.0s; }
    .feature-item:nth-child(10) { --delay: 4.5s; }
    .feature-item:nth-child(11) { --delay: 5.0s; }
    .feature-item:nth-child(12) { --delay: 5.5s; }
    .feature-item:nth-child(13) { --delay: 6.0s; }
    .feature-item:nth-child(2)  { --delay: 0.7s; }
    .feature-item:nth-child(3)  { --delay: 1.4s; }
    .feature-item:nth-child(4)  { --delay: 2.1s; }
    .feature-item:nth-child(5)  { --delay: 2.8s; }
    .feature-item:nth-child(6)  { --delay: 3.5s; }
    .feature-item:nth-child(7)  { --delay: 4.2s; }
    .feature-item:nth-child(8)  { --delay: 4.9s; }
    .feature-item:nth-child(9)  { --delay: 5.6s; }
    .feature-item:nth-child(10) { --delay: 6.3s; }
    .feature-item:nth-child(11) { --delay: 7.0s; }
    .feature-item:nth-child(12) { --delay: 7.7s; }
    .feature-item:nth-child(13) { --delay: 8.4s; }
    .feature-item:nth-child(14) { --delay: 9.1s; }
} 