:root {
    --bg: #ffffff;
    --card: #f8f9fa;
    --muted: #6c757d;
    --text: #212529;
    --pri: #0d6efd;
    --border: #dee2e6;
}

* {
    box-sizing: border-box
}

/* ❗ ВАЖНО: всё ниже — только на главной .home */
.home {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font: 16px/1.5 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial
}

.home .sg-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px
}

/* ===== ЕДИНООБРАЗИЕ УГЛОВ ===== */
/* Все карточки - одинаковое скругление */
.home .card,
.home .feature-card,
.home .tool-card,
.home .benefit-item,
.home .roadmap-status,
.home .bot-demo-card,
.home .quick-start-item,
.home .free-model__content,
.home .feedback-section {
    border-radius: 12px !important;
}

/* Все кнопки - одинаковое скругление */
.home .btn,
.home button,
.home .cta .btn {
    border-radius: 8px !important;
}

/* Все badges - полное скругление */
.home .badge,
.home .badge-early,
.home .badge-beta,
.home .badge-free,
.home .badge-traffic,
.home .status-badge,
.home .roadmap-badge {
    border-radius: 20px !important;
}

/* Input fields - округлые */
.home input[type="text"],
.home input[type="email"],
.home textarea,
.home select,
.home .form-control {
    border-radius: 8px !important;
}

/* Section Titles */
.home .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    text-align: center;
}

.home h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #212529;
}

/* Hero section */
.home .hero {
    padding: 48px 0
}

.home .hero__inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: center
}

.home .lead {
    opacity: .9
}

.home .cta {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
}

/* Trust Section */
.home .trust {
    padding: 40px 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.home .trust-metrics {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.home .metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.home .metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.home .metric-label {
    font-size: 0.95rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Кнопки лендинга — НЕ трогаем глобальные .btn на других страницах */
.home .btn {
    border: 2px solid var(--pri);
    padding: 8px 14px;
    border-radius: 12px;
    color: var(--pri);
    text-decoration: none;
    display: inline-block;
    background: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all .3s ease;
}

.home .btn:hover {
    background: var(--pri);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.home .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 14px;
    transition: all 0.3s ease;
}

.home .btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
}

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

.home .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
}

.home .examples__head {
    display: flex;
    align-items: end;
    justify-content: space-between
}

.home .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.home .job-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
}

.home .job-card__title {
    margin: 0 0 6px
}

.home .muted {
    color: var(--muted)
}

.home .feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}

.home .feature-card__title {
    margin: 0 0 12px;
    font-size: 1.1rem
}

.home .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    flex-grow: 1;
}

.home .feature-list li {
    margin: 6px 0;
    color: var(--muted)
}

.home .feature-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.home .list-head {
    margin: 8px 0 16px
}

.home .job-detail .description {
    white-space: pre-wrap;
    background: var(--card);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.home .cta-final {
    padding: 40px 0;
    text-align: center
}

.home .link {
    color: var(--pri);
    text-decoration: none
}

@media (max-width:1200px) {
    .home .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:960px) {
    .home .hero__inner {
        grid-template-columns: 1fr
    }

    .home .features .grid {
        grid-template-columns: 1fr 1fr
    }

    .home .cards {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:640px) {
    .home .features .grid {
        grid-template-columns: 1fr
    }

    .home .cards {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .home .cta {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .home .cta .btn {
        width: 100%;
    }
}

/* Screenshots section */
.screenshots {
    padding: 48px 0;
}

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

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

.screenshot-item {
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 12px 0;
}

.screenshot-item h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

@media (max-width: 960px) {
    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .screenshot-grid {
        grid-template-columns: 1fr
    }
}

/* Footer styles */
.footer-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    margin-top: 30px;
}

.footer-top {
    padding: 25px 0 15px;
}

.footer-brand .brand-logo {
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-brand .brand-logo i {
    margin-right: 5px;
}

.footer-premium a,
.footer-premium p,
.footer-premium span,
.footer-premium li {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.footer-premium a:hover {
    color: #ffffff !important;
}

.company-description {
    opacity: 0.9;
    margin-bottom: 10px;
}

.contact-info {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    opacity: 0.9;
}

.contact-item i {
    margin-right: 5px;
    width: 15px;
}

.footer-links h5,
.footer-services h5,
.footer-social h5,
.footer-section .section-title,
.footer-premium h5,
.footer-premium h6 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffffff !important;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    text-align: center;
    opacity: 0.8;
}

.language-switcher {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.language-switcher a {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 0.9rem;
}

/* ===== STCW Page Modern Design ===== */

/* Bot Section - Hero with gradient */
.bot-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: #ffffff;
}

.bot-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.bot-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0088cc 0%, #00c6ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
}

.bot-icon i {
    color: #ffffff;
    font-size: 2.5rem;
}

.bot-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
}

.bot-description {
    font-size: 1.15rem;
    color: #6c757d;
    line-height: 1.6;
}

.bot-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bot-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.bot-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #e9ecef;
}

.bot-features .feature-item i {
    font-size: 2.5rem;
}

.bot-features .feature-item span {
    font-weight: 600;
    color: #212529;
}

.bot-button {
    padding: 14px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #0088cc 0%, #00c6ff 100%);
    border: none;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    transition: all 0.3s ease;
}

.bot-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 136, 204, 0.6);
    background: linear-gradient(135deg, #00c6ff 0%, #0088cc 100%);
    color: #ffffff;
}

/* Info Section */
.info-section {
    background: #ffffff;
    padding: 60px 0;
}

.info-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.info-card:hover {
    border-color: #667eea;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.info-header i {
    font-size: 2.5rem;
}

.info-header h3 {
    margin: 0;
    font-weight: 700;
    color: #212529;
    font-size: 1.8rem;
}

.info-content .lead {
    font-size: 1.15rem;
    color: #495057;
    line-height: 1.7;
}

.requirements-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border: 2px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.requirements-box h5 {
    font-weight: 600;
    margin-bottom: 25px;
    color: #212529;
    font-size: 1.3rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.requirement-item:hover {
    background: #ffffff;
    border-color: #667eea;
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.1);
}

.requirement-item i {
    font-size: 1.8rem;
    width: 35px;
    flex-shrink: 0;
}

.requirement-item span {
    font-weight: 500;
    color: #212529;
}

/* Contact Info Box - только для info-card, не для футера */
.info-card .contact-info {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 12px;
    padding: 20px 25px;
    border-left: 4px solid #667eea;
}

.info-card .contact-info p {
    margin: 0;
    font-size: 1.05rem;
}

.info-card .contact-info a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card .contact-info a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Certificates Section */
.certificates-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-header .subtitle {
    font-size: 1.2rem;
    color: #6c757d;
}

.certificate-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.certificate-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.certificate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.certificate-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.certificate-title h4 {
    margin: 0;
    font-weight: 600;
    color: #212529;
}

.certificate-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .bot-section {
        padding: 60px 0;
    }

    .bot-card {
        padding: 40px 25px;
    }

    .bot-features {
        gap: 15px;
    }

    .feature-item {
        min-width: 100px;
        padding: 15px;
    }

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

    .certificate-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Interactive Feature Cards */
.feature-card-interactive {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.feature-card-interactive:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--pri);
}

.feature-card-interactive .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card-interactive:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
}

.feature-icon-small {
    display: inline-block;
    margin-right: 8px;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.feature-list li:hover .feature-icon-small {
    transform: scale(1.2);
}

/* Enhanced Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--pri);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.15);
}

.feature-card__title {
    transition: color 0.3s ease;
}

.feature-card:hover .feature-card__title {
    color: var(--pri);
}

/* Animated Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Trust Metrics Animation */
.metric-item {
    transition: transform 0.3s ease;
}

.metric-item:hover {
    transform: scale(1.05);
}

.metric-value {
    transition: color 0.3s ease;
}

.metric-item:hover .metric-value {
    color: var(--pri);
}

/* Quick Tools Section */
.quick-tools {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quick-tools__head {
    text-align: center;
    margin-bottom: 40px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--pri);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
}

.tool-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.tool-card p {
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.5;
}


/* Early Access Badge */
.early-access-badge {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge-early {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.badge-beta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Hero Badge */
.hero-badge {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.hero-badges-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.hero-badge-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-free-compact {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    white-space: nowrap;
}

.badge-pro-compact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    display: inline-block;
    margin-top: 4px;
}

.badge-pro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.badge-pro-subtitle {
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-tagline {
    font-size: 0.95rem;
    color: #6c757d;
    text-align: center;
    font-weight: 500;
    margin: 4px 0;
}

.badge-free {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    animation: pulse 2s infinite;
}

.badge-traffic {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Free Model Section */
.free-model {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.free-model__content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.free-model__text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.free-model__description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.free-model__benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #667eea;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.benefit-icon {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.benefit-text {
    font-weight: 500;
    color: #212529;
}

/* Traffic Flow Visual */
.traffic-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 30px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 16px;
    border: 2px solid #e9ecef;
}

.flow-item {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    color: #212529;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.flow-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flow-arrow {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(3px);
    }
}

/* Tools Badge */
.tools-badge {
    margin-top: 16px;
}

.badge-free-tools {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Telegram Bot Demo Section */
.telegram-bot-demo {
    padding: 60px 0;
    background: linear-gradient(135deg, #0088cc15 0%, #229ed915 100%);
    border-top: 1px solid #e9ecef;
}

.bot-demo__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.bot-demo__text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

.bot-demo__subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.bot-demo__steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #0088cc 0%, #00c6ff 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.step-content h4 {
    margin: 0 0 6px 0;
    color: #212529;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.bot-demo__benefits {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.benefit-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Telegram Mockup */
.telegram-mockup {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.telegram-header {
    background: #0088cc;
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.telegram-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.telegram-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.telegram-message {
    padding: 12px 16px;
    margin: 12px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.bot-message {
    background: #f0f0f0;
    margin-right: 60px;
    border-bottom-left-radius: 4px;
}

.user-message {
    background: #0088cc;
    color: white;
    margin-left: 60px;
    border-bottom-right-radius: 4px;
    text-align: right;
}

.telegram-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.tg-btn {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.tg-btn:hover {
    background: #0088cc;
    color: white;
    border-color: #0088cc;
}

/* Roadmap Section */
.roadmap {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #e9ecef;
}

.roadmap__content {
    max-width: 1100px;
    margin: 0 auto;
}

.roadmap__header {
    text-align: center;
    margin-bottom: 40px;
}

.roadmap-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap__header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

.roadmap-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

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

.roadmap-status {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.roadmap-status:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--pri);
}

.status-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.status-icon {
    font-size: 2rem;
    line-height: 1;
}

.status-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.status-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status-list li {
    padding: 8px 0;
    color: #495057;
    font-size: 0.95rem;
    position: relative;
    padding-left: 24px;
}

.status-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--pri);
    font-weight: 700;
}

.roadmap-footer {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.roadmap-note {
    margin: 0;
    color: #212529;
    font-size: 1rem;
    line-height: 1.6;
}

.roadmap-note strong {
    color: #667eea;
}

/* Feedback Section */
.feedback-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.feedback__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.feedback__text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.feedback-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

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

.feedback-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 1rem;
}

.feedback-benefit .benefit-icon {
    font-size: 1.3rem;
}

.feedback__form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-request-form .form-group {
    margin-bottom: 20px;
}

.feature-request-form label {
    display: block;
    margin-bottom: 8px;
    color: #212529;
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-request-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feature-request-form .form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.feature-request-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 16px;
    text-align: center;
    color: #6c757d;
}

.form-note small {
    font-size: 0.9rem;
}

.roadmap-note.mt-2 {
    margin-top: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tool-card {
        padding: 20px;
    }

    .tool-icon {
        font-size: 2.5rem;
    }

    .hero-badge {
        flex-direction: column;
        align-items: center;
    }

    .free-model__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .traffic-flow {
        flex-direction: column;
        gap: 12px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .bot-demo__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .telegram-mockup {
        max-width: 100%;
    }

    .bot-demo__text h2 {
        font-size: 1.8rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

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

    .early-access-badge {
        flex-direction: column;
        align-items: center;
    }

    .feedback__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feedback__form {
        padding: 24px;
    }
}