/* --- Variables & Theme --- */
:root {
  --color-bg: #0b0f19; /* Глубокий темный, почти черный */
  --color-bg-secondary: #111827; /* Немного светлее для футера/карт */
  --color-text: #e2e8f0; /* Светло-серый для чтения */
  --color-text-muted: #94a3b8;

  --color-primary: #38bdf8; /* Electric Blue - AI vibe */
  --color-primary-hover: #0ea5e9;
  --color-accent: #818cf8; /* Soft Purple */

  --font-main: 'Inter', sans-serif;
  --font-head: 'Outfit', sans-serif;

  --container-width: 1200px;
  --header-height: 80px;
  --radius-md: 8px;
  --transition: all 0.3s ease;
}

/* --- Reset & Global --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: --font-main;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-height); /* Компенсация фикс. хедера */
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: #fff;
  font-weight: 700;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 16px;
  text-align: center;
}

.btn--primary {
  background-color: var(--color-primary);
  color: #0f172a;
}

.btn--primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__img {
  width: 32px;
  height: 32px;
}

.logo__text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

/* Navigation */
.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__list {
  display: flex;
  gap: 25px;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}

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

.header__burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 60px;
  margin-top: 60px; /* Временно, пока нет контента */
}

.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer__desc {
  margin-top: 20px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.footer__socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer__socials a {
  color: var(--color-text-muted);
}

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

.footer__title {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: var(--color-text-muted);
  font-size: 14px;
}

.footer__link:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.footer__contact-item i {
  color: var(--color-primary);
  min-width: 20px;
  width: 20px;
}

.footer__note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--color-accent);
  background: rgba(129, 140, 248, 0.1);
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
}

.footer__bottom {
  background-color: #05080f;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #475569;
}

/* --- Mobile Adaptivity --- */
@media (max-width: 992px) {
  .header__nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-bg-secondary);
    flex-direction: column;
    justify-content: center;
    transition: 0.3s ease;
    padding: 20px;
  }

  .header__nav.active {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .nav__link {
    font-size: 18px;
  }

  .header__burger {
    display: block;
  }

  .footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

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


/* --- Hero Section --- */
.hero {
    position: relative;
    width: 100%;
    min-height: 90vh; /* Почти на весь экран */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

/* 3D Canvas Background */
.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Позади контента */
    opacity: 0.6; /* Чтобы не мешал читать текст */
}

.hero__container {
    position: relative;
    z-index: 2; /* Поверх канваса */
}

.hero__content {
    max-width: 650px;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px;
    font-size: 13px;
    color: var(--color-primary);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
}

/* Typography */
.hero__title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__desc {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

/* Actions */
.hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.hero__link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
}

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

/* Stats */
.hero__stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item__value {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.stat-item__label {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero__title {
        font-size: 40px;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px 0;
    }
}
/* --- Bento Grid Section --- */
.features {
    padding: 100px 0;
    position: relative;
}

.features__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.features__title {
    font-size: 42px;
    margin-bottom: 20px;
}

.features__subtitle {
    color: var(--color-text-muted);
    font-size: 18px;
}

.highlight {
    color: var(--color-text);
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
    text-underline-offset: 4px;
}

/* Grid Layout */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(250px, auto));
    gap: 20px;
}

/* Item Styles */
.bento__item {
    background: rgba(17, 24, 39, 0.6); /* Полупрозрачный фон */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento__item:hover {
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Grid Spans (Асимметрия) */
.bento__item--large {
    grid-column: span 2;
}

.bento__item--tall {
    grid-row: span 2;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.6) 0%, rgba(56, 189, 248, 0.05) 100%);
}

.bento__item--wide {
    grid-column: span 2;
}

/* Content Styling */
.bento__icon-box {
    width: 50px;
    height: 50px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.bento__title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.bento__desc {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.5;
}

/* Elements inside items */
.bento__stat {
    margin-top: auto;
    padding-top: 20px;
}

.bento__stat span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.bento__progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.bento__progress-bar div {
    height: 100%;
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}

/* Tags */
.bento__tags {
    display: flex;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
}

.bento__tags span {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--color-text);
}

/* Visual Graph */
.bento__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bento__visual {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.graph-bar {
    width: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.graph-bar.active {
    background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
}

.bento__link {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    display: inline-block;
}

/* Decorative Glow */
.bento__bg-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

/* Mobile Adaptivity */
@media (max-width: 992px) {
    .bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .bento__item--large, 
    .bento__item--tall, 
    .bento__item--wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .features__title {
        font-size: 32px;
    }
}
/* --- Blog Section --- */
.blog {
    padding: 100px 0;
    overflow: hidden; /* Чтобы скрыть полосу прокрутки */
}

.blog__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 18px;
    max-width: 500px;
}

/* Navigation Buttons */
.blog__nav {
    display: flex;
    gap: 15px;
}

.blog__nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.blog__nav-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
}

/* Slider Container */
.blog__slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 40px; /* Место для тени при ховере */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.blog__slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Card Styling */
.blog-card {
    min-width: 380px;
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.blog-card__image-wrapper {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
    transform: scale(1.05);
}

.blog-card__tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.blog-card__content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__date {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.blog-card__title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #fff;
}

.blog-card__excerpt {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 14px;
}

.blog-card__link:hover {
    color: var(--color-accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .blog-card {
        min-width: 300px;
    }
}

/* --- FAQ Section --- */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(56, 189, 248, 0.03) 100%);
}

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

.accordion-item {
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: rgba(56, 189, 248, 0.3);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-head);
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--color-primary);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg); /* Перетворюємо плюс на хрестик */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-body {
    padding: 0 25px 25px 25px;
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* --- Contact Section --- */
.contact {
    padding: 100px 0;
}

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

.contact__info {
    padding-right: 20px;
}

.contact__desc {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.contact__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 500;
}

.contact__icon {
    color: var(--color-primary);
}

/* Form Styling */
.contact__form-box {
    background: var(--color-bg-secondary);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 16px;
    transition: var(--transition);
}

.form__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

/* Checkbox */
.form__group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.form__checkbox {
    margin-top: 4px;
    accent-color: var(--color-primary);
}

.form__checkbox-label {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.4;
    cursor: pointer;
}

.form__btn {
    width: 100%;
    border: none;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

.success-message__icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1); /* Green tint */
    color: #10B981; /* Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-message__icon svg {
    width: 32px;
    height: 32px;
}

.success-message__title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contact__wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- Cookie Popup --- */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150%); /* Сховано за межами екрану */
    width: 90%;
    max-width: 600px;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-popup.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-popup__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-popup__text {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}

.cookie-popup__text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-popup__btn {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

/* Mobile Cookie */
@media (max-width: 576px) {
    .cookie-popup__content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .cookie-popup__btn {
        width: 100%;
    }
}

/* --- Generic Pages Styles (Privacy, Terms, etc.) --- */
/* Цей блок стилів спрацює на будь-якій сторінці, де контент обгорнутий в <section class="pages"> */
.pages {
    padding: 140px 0 80px; /* Великий відступ зверху через фіксований хедер */
}

.pages .container {
    max-width: 800px; /* Вужчий контейнер для кращої читабельності тексту */
}

.pages h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.pages h2 {
    font-size: 24px;
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.pages p {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.pages ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.pages li {
    color: var(--color-text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

.pages strong {
    color: #fff;
    font-weight: 600;
}

.pages a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pages a:hover {
    color: var(--color-accent);
}

/* --- Bots Section --- */
.bots {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.bots__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

/* Bot Card Styling */
.bot-card {
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.bot-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.1);
}

/* Terminal Header Look */
.bot-card__head {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bot-card__dots {
    display: flex;
    gap: 6px;
}

.bot-card__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.bot-card:hover .bot-card__dots span:nth-child(1) { background-color: #EF4444; }
.bot-card:hover .bot-card__dots span:nth-child(2) { background-color: #F59E0B; }
.bot-card:hover .bot-card__dots span:nth-child(3) { background-color: #10B981; }

.bot-card__label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-family: monospace;
}

.bot-card__body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bot-card__icon {
    width: 50px;
    height: 50px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.bot-card:hover .bot-card__icon {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1);
}

.bot-card__title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.bot-card__text {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.bot-card__features {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bot-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text);
}

.bot-card__features li i {
    width: 16px;
    min-width: 16px;
    color: var(--color-accent);
    margin-top: 3px;
}

/* Accent Card (Middle one) */
.bot-card--accent {
    border-color: rgba(129, 140, 248, 0.3);
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, rgba(129, 140, 248, 0.05) 100%);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .bots__grid {
        grid-template-columns: 1fr;
    }
}