.gk-features {
    padding: clamp(3rem, 6vw, 6rem) 1rem;
    background: var(--background);
}

.gk-features__container {
    max-width: 1200px;
    margin: 0 auto;
}

.gk-features__title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--text);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.gk-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: 1rem;
}

.gk-feature-card {
    background: white;
    border-radius: clamp(0.75rem, 2vw, 1.25rem);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gk-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.gk-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.gk-feature-card__icon {
    font-size: clamp(2.5rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.gk-feature-card:nth-child(1) .gk-feature-card__icon::before {
    content: '🚀';
}

.gk-feature-card:nth-child(2) .gk-feature-card__icon::before {
    content: '💰';
}

.gk-feature-card:nth-child(3) .gk-feature-card__icon::before {
    content: '🔒';
}

.gk-feature-card__title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--text);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
}

.gk-feature-card__text {
    color: var(--text);
    opacity: 0.85;
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.gk-feature-card__text::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .gk-features__grid {
        grid-template-columns: 1fr;
    }
    
    .gk-feature-card {
        text-align: left;
    }
    
    .gk-feature-card__icon {
        margin-bottom: 1rem;
    }
}

.gk-unique-offer {
    padding: 6rem 1rem;
    background: white;
    position: relative;
    overflow: hidden;
}

.gk-unique-offer__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.gk-unique-offer__title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--text);
    margin-bottom: 1.5rem;
}

.gk-unique-offer__text {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.gk-unique-offer__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gk-step {
    text-align: left;
    padding: 1.5rem;
    background: var(--background);
    border-radius: 0.75rem;
}

.gk-step__number {
    font-size: 3rem;
    color: var(--primary);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 1rem;
}

.gk-step__text {
    color: var(--text);
    line-height: 1.5;
}

.gk-cta {
    padding: 5rem 1rem;
    background: var(--primary);
    color: white;
    position: relative;
}

.gk-cta__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.gk-cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.gk-cta__text {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.gk-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gk-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}

@media (max-width: 768px) {
    .gk-features__grid {
        grid-template-columns: 1fr;
    }
    
    .gk-unique-offer__steps {
        grid-template-columns: 1fr;
    }
    
    .gk-step {
        text-align: center;
    }
}

/* Process Section */
.gk-process {
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 2rem);
    background: var(--background);
}

.gk-process__container {
    max-width: 1200px;
    margin: 0 auto;
}

.gk-process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: 0;
    list-style: none;
}

.gk-process__step {
    background: white;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: clamp(0.5rem, 1vw, 1rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text);
    position: relative;
    padding-left: clamp(3.5rem, 5vw, 4rem);
    transition: transform 0.3s ease;
}

.gk-process__step::before {
    position: absolute;
    left: clamp(1rem, 2vw, 1.5rem);
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Process icons */
.gk-process__step:nth-child(1)::before { content: '🎯'; }
.gk-process__step:nth-child(2)::before { content: '⚙️'; }
.gk-process__step:nth-child(3)::before { content: '🔍'; }
.gk-process__step:nth-child(4)::before { content: '🚀'; }

.gk-process__step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Terms Section */
.gk-terms {
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 2rem);
    background: linear-gradient(135deg, var(--background) 0%, #f8fafc 100%);
}

.gk-terms__container {
    max-width: 1200px;
    margin: 0 auto;
}

.gk-terms__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: 0;
    list-style: none;
}

.gk-terms__item {
    background: white;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: clamp(0.5rem, 1vw, 1rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text);
    position: relative;
    padding-left: clamp(3.5rem, 5vw, 4rem);
    transition: all 0.3s ease;
}

.gk-terms__item::before {
    position: absolute;
    left: clamp(1rem, 2vw, 1.5rem);
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Terms icons */
.gk-terms__item:nth-child(1)::before { content: '💰'; }
.gk-terms__item:nth-child(2)::before { content: '🖥️'; }
.gk-terms__item:nth-child(3)::before { content: '🛡️'; }
.gk-terms__item:nth-child(4)::before { content: '⚡'; }
.gk-terms__item:nth-child(5)::before { content: '⏱️'; }

.gk-terms__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, white, #f8fafc);
}

/* Shared styles */
.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text);
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

@media (max-width: 768px) {
    .gk-process__step,
    .gk-terms__item {
        padding-top: clamp(3rem, 4vw, 3.5rem);
        padding-left: clamp(1.5rem, 3vw, 2rem);
    }

    .gk-process__step::before,
    .gk-terms__item::before {
        top: clamp(1rem, 2vw, 1.25rem);
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Solution section */
.gk-solution {
    padding: 5rem 1rem;
    background: var(--primary);
    color: white;
}

.gk-solution__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.gk-solution__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 2.5rem;
}

.gk-solution__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0;
    list-style: none;
}

.gk-solution__item {
    font-size: 1.1rem;
    opacity: 0.9;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.gk-solution__item:hover {
    transform: translateY(-3px);
}

/* Cases section */
.cases {
    padding: 4rem 1rem;
    background: var(--background);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--text);
    margin-bottom: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gk-terms__list,
    .gk-solution__list {
        grid-template-columns: 1fr;
    }
    
    .gk-terms__item,
    .gk-solution__item {
        font-size: 1rem;
    }
    
    .gk-solution {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .section-title,
    .gk-terms__title,
    .gk-solution__title {
        font-size: 1.75rem;
    }
}

/* Task Types Section */
.gk-task-types {
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 2rem);
    background: var(--background);
}

.gk-task-types__container {
    max-width: 1200px;
    margin: 0 auto;
}

.gk-task-types__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.gk-task-type {
    background: white;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: clamp(0.5rem, 1vw, 1rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gk-task-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.gk-task-type::before {
    position: absolute;
    top: clamp(1.25rem, 2vw, 1.5rem);
    right: clamp(1.25rem, 2vw, 1.5rem);
    font-size: clamp(2rem, 3vw, 2.5rem);
}

/* Task type icons */
.gk-task-type:nth-child(1)::before { content: '🤖'; }
.gk-task-type:nth-child(2)::before { content: '📅'; }
.gk-task-type:nth-child(3)::before { content: '🧠'; }
.gk-task-type:nth-child(4)::before { content: '📊'; }
.gk-task-type:nth-child(5)::before { content: '📚'; }
.gk-task-type:nth-child(6)::before { content: '💳'; }
.gk-task-type:nth-child(7)::before { content: '🔄'; }

.gk-task-type__title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--text);
    margin-bottom: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    padding-right: clamp(3rem, 4vw, 4rem);
}

.gk-task-type__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gk-task-type__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: var(--text);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    line-height: 1.4;
    position: relative;
    padding-left: 1.5rem;
}

.gk-task-type__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    transition: transform 0.2s ease;
}

.gk-task-type:hover .gk-task-type__list li::before {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .gk-task-types__grid {
        grid-template-columns: 1fr;
    }
    
    .gk-task-type {
        padding: clamp(1.25rem, 2vw, 1.5rem);
    }
    
    .gk-task-type__title {
        padding-right: clamp(2.5rem, 3vw, 3rem);
        font-size: 1.25rem;
    }
    
    .gk-task-type__list li {
        font-size: 0.875rem;
    }
}

.vapi-btn-pill.vapi-btn-is-idle {
    position: fixed;
    z-index: 1000;
}

#vapi-support-btn {
    position: fixed;
    z-index: 1000;
}

/* Добавьте в chat-bots.css */
.gk-pitch {
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 2rem);
}

.gk-pitch__container {
    max-width: 1200px;
    margin: 0 auto;
}

.gk-pitch__content {
    display: flex; /* Меняем с grid на flex */
    flex-direction: column;
    align-items: center; /* Центрируем содержимое */
    gap: clamp(2rem, 4vw, 4rem);
}

.gk-pitch__video-wrapper {
    position: relative;
    border-radius: clamp(1rem, 2vw, 1.5rem);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
    width: 100%; /* Используем width вместо max-width */
    max-width: 400px; /* Ограничиваем максимальную ширину */
    aspect-ratio: 9 / 16; /* Корректируем соотношение сторон для горизонтального видео */
    margin: 0 auto; /* Центрируем видео */
}

.gk-pitch__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gk-pitch__info {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.05);
    border-radius: clamp(1rem, 2vw, 1.5rem);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gk-pitch__name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gk-pitch__position {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.gk-pitch__text {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Адаптивность */
@media (max-width: 968px) {
    .gk-pitch__content {
        grid-template-columns: 1fr;
    }

    .gk-pitch__video-wrapper {
        max-width: 700px;
        margin: 0 auto;
        order: -1;
    }

    .gk-pitch__info {
        max-width: 700px;
        margin: 0 auto;
    }
}

/* Поддержка отключенных анимаций */
@media (prefers-reduced-motion: reduce) {
    .gk-pitch__video {
        animation: none;
    }
}

.gk-pitch-button {
    display: inline-flex;
    align-items: center;
    color: rgb(255, 255, 255);
    font-weight: 600;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Main Info Section */
.main-info {
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 2rem);
    background: var(--background);
}

.main-info__text {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    color: var(--text);
}

/* Messenger Bots Section */
.messenger-bots {
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 2rem);
    background: var(--background);
}

.messenger-bots__text {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    color: var(--text);
}

/* Pricing Section */
.pricing {
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 2rem);
    background: var(--background);
}

.pricing__text {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    color: var(--text);
}

/* Examples Section */
.examples {
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 2rem);
    background: var(--background);
}

.examples__text {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    color: var(--text);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-info__text,
    .messenger-bots__text,
    .pricing__text,
    .examples__text,
    .faq-item summary,
    .faq-item p {
        font-size: 1rem;
    }
}

/* Полезные статьи — карточки блога */
.gg--cluster-links {
    padding: clamp(2rem, 4vw, 3rem) 0;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.gg--cluster-cards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.gg--cluster-cards__grid--single {
    max-width: 420px;
}

.gg--blog-card--cluster {
    display: flex;
    flex-direction: column;
}

.gg--blog-card__thumbnail--cluster {
    display: block;
    margin: -1.5rem -1.5rem 1.25rem;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
}

.gg--blog-card__thumbnail--cluster .gg--blog-card__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.3s;
}

.gg--blog-card__thumbnail--cluster:hover .gg--blog-card__image {
    transform: scale(1.03);
}

.gg--blog-card--cluster .gg--blog-card__title {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.gg--blog-card--cluster .gg--blog-card__text {
    margin-top: 0.75rem;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #64748b;
    line-height: 1.4;
}

.gg--blog-card__footer--cluster {
    padding-right: 0 !important;
    margin-top: auto;
    padding-top: 1.25rem;
}

.gg--blog-card__footer--cluster .gg--blog-card__more {
    position: static;
}