        :root {
            --bg-body: #f5f6fa;
            --bg-white: #ffffff;
            --bg-card: #ffffff;
            --bg-card-hover: #f8f9fa;
            --bg-surface: #f0f1f5;
            --bg-input: #f1f3f5;
            --bg-dark: #343a40;
            --text-primary: #333333;
            --text-secondary: #6c757d;
            --text-muted: #999999;
            --accent: #478f79;
            --accent-bright: #10b981;
            --accent-glow: rgba(71, 143, 121, 0.2);
            --accent-glow-strong: rgba(71, 143, 121, 0.4);
            --border-color: #e0e0e0;
            --border-hover: #cccccc;
            --gradient-1: linear-gradient(135deg, #478f79 0%, #10b981 100%);
            --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 35px rgba(0, 0, 0, 0.1);
            --shadow-glow: 0 0 0 3px var(--accent-glow);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-body);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ==============================
           TYPOGRAPHY
           ============================== */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #222;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            color: #222;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .accent-text {
            color: var(--accent);
        }

       

        /* ==============================
           HERO SECTION
           ============================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 0 60px;
            background: linear-gradient(180deg, #e8ebe0 0%, #f5f6fa 40%, #f8f9fa 100%);
            overflow: hidden;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(71, 143, 121, 0.1);
            border: 1px solid rgba(71, 143, 121, 0.3);
            color: #1a1a1a;
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease;
        }

        .hero-badge .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--accent-bright);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
            50% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
        }

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 15px;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    animation: fadeInUp 0.8s ease 0.1s both;
    
    /* Фиксация высоты — чтобы нижние блоки не прыгали */
    min-height: clamp(180px, 20vw, 260px);
    display: flex;
    align-items: flex-start;
}

.hero-title .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #1a1a1a;
    background-clip: text;
    
    /* Чтобы текст внутри не схлопывался */
    display: inline-block;
    min-height: 1.25em;
}

        .hero-subtitle {
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            color: var(--text-secondary);
            max-width: 550px;
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .btn-primary-accent {
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(71, 143, 121, 0.3);
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-accent:hover {
            background: #3a7a66;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(71, 143, 121, 0.4);
            color: #fff;
        }

        .btn-outline-accent {
            background: #fff;
            color: var(--accent);
            border: 2px solid var(--accent);
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }

        .btn-outline-accent:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(71, 143, 121, 0.3);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .hero-visual {
            position: relative;
            animation: fadeInRight 1s ease 0.3s both;
        }

        .hero-card-mock {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow-lg);
            position: relative;
            z-index: 2;
        }

        .hero-card-mock .mock-header {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
        }

        .mock-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .mock-dot.red { background: #ff5f56; }
        .mock-dot.yellow { background: #ffbd2e; }
        .mock-dot.green { background: #27ca40; }

        .mock-line {
            height: 8px;
            background: #e9ecef;
            border-radius: 4px;
            margin-bottom: 12px;
        }
        .mock-line.short { width: 60%; }
        .mock-line.medium { width: 80%; }

        .mock-shield {
            text-align: center;
            font-size: 60px;
            color: var(--accent);
            margin: 20px 0;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* ==============================
           FEATURES SECTION
           ============================== */
        .features {
            padding: 100px 0;
            background: #fff;
        }

        .feature-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            border-radius: 0 0 4px 4px;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            border-color: var(--accent);
            transform: translateY(-6px);
            box-shadow: 0 8px 30px rgba(71, 143, 121, 0.15);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(71, 143, 121, 0.08);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--accent);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 8px 25px rgba(71, 143, 121, 0.3);
        }

        .feature-card h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #222;
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ==============================
           TOOLS HIGHLIGHT
           ============================== */
        .tools-highlight {
            padding: 80px 0;
            background: var(--bg-surface);
        }

        .tool-showcase {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 40px 32px;
            transition: var(--transition);
            height: 100%;
            position: relative;
            box-shadow: var(--shadow-sm);
        }

        .tool-showcase:hover {
            border-color: var(--accent);
            box-shadow: 0 8px 30px rgba(71, 143, 121, 0.15);
            transform: translateY(-4px);
        }

        .tool-showcase .tool-icon {
            font-size: 48px;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .tool-showcase h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .tool-showcase p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .tool-badge {
            display: inline-block;
            background: rgba(71, 143, 121, 0.1);
            color: var(--accent);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        /* ==============================
           HOW IT WORKS
           ============================== */
        .how-it-works {
            padding: 100px 0;
            background: #fff;
        }

        .step-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
            position: relative;
            box-shadow: var(--shadow-sm);
        }

        .step-card:hover {
            border-color: var(--accent);
            transform: translateY(-6px);
            box-shadow: 0 8px 30px rgba(71, 143, 121, 0.15);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin: 0 auto 20px;
            box-shadow: 0 4px 20px rgba(71, 143, 121, 0.3);
        }

        .step-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #222;
        }

        .step-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .step-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--accent);
        }

        /* ==============================
           PRICING
           ============================== */
        .pricing {
            padding: 100px 0;
            background: var(--bg-surface);
        }

        .plan-card {
            background: #fff;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: 36px 28px;
            transition: var(--transition);
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .plan-card:hover {
            border-color: var(--accent);
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(71, 143, 121, 0.15);
        }

        .plan-card.popular {
            border-color: var(--accent);
            box-shadow: 0 0 0 1px var(--accent), 0 8px 30px rgba(71, 143, 121, 0.2);
        }

        .plan-card.premium {
            background: linear-gradient(135deg, #ffffff 0%, #f0faf5 100%);
            border-color: var(--accent);
        }

        .plan-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--gradient-1);
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .plan-name {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: #222;
        }

        .plan-desc {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        .plan-price {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 24px;
            color: #222;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-muted);
        }

        .plan-features {
            list-style: none;
            padding: 0;
            margin: 0 0 28px;
        }

        .plan-features li {
            padding: 10px 0;
            color: #555;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #f0f0f0;
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li i {
            color: var(--accent-bright);
            font-size: 0.8rem;
        }

        .plan-features li.highlight {
            color: var(--accent);
            font-weight: 600;
        }

        .plan-btn {
            display: block;
            width: 100%;
            padding: 14px;
            text-align: center;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid var(--border-color);
            background: var(--bg-input);
            color: #333;
            font-size: 0.95rem;
        }

        .plan-btn:hover {
            border-color: var(--accent);
            background: var(--accent);
            color: #fff;
            box-shadow: 0 6px 25px rgba(71, 143, 121, 0.3);
            transform: translateY(-2px);
        }

        .plan-btn.popular-btn {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
            box-shadow: 0 4px 20px rgba(71, 143, 121, 0.3);
        }

        .plan-btn.popular-btn:hover {
            background: #3a7a66;
            border-color: #3a7a66;
            box-shadow: 0 8px 30px rgba(71, 143, 121, 0.4);
        }

        /* ==============================
           INTEGRATIONS
           ============================== */
        .integrations {
            padding: 100px 0;
            background: #fff;
        }

        .integration-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 28px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
            box-shadow: var(--shadow-sm);
        }

        .integration-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(71, 143, 121, 0.15);
        }

        .integration-card .icon {
            font-size: 44px;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .integration-card h5 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 6px;
            color: #222;
        }

        .integration-card p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .code-block {
            background: #1e1e1e;
            border: 1px solid #333;
            border-radius: var(--radius-md);
            padding: 24px;
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            color: #50fa7b;
            overflow-x: auto;
            margin-top: 12px;
            line-height: 1.8;
        }

        /* ==============================
           TESTIMONIALS
           ============================== */
        .testimonials {
            padding: 100px 0;
            background: var(--bg-surface);
        }

        .testimonial-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 28px;
            transition: var(--transition);
            height: 100%;
            box-shadow: var(--shadow-sm);
        }

        .testimonial-card:hover {
            border-color: var(--accent);
            box-shadow: 0 8px 30px rgba(71, 143, 121, 0.15);
            transform: translateY(-4px);
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: #555;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: #222;
        }

        .testimonial-role {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .testimonial-stars {
            color: #f0c040;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

        /* ==============================
           FAQ
           ============================== */
        .faq {
            padding: 100px 0;
            background: #fff;
        }

        .accordion-item {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
        }

        .accordion-button {
            background: #fff !important;
            color: #333 !important;
            font-weight: 600;
            padding: 18px 24px;
            box-shadow: none !important;
            border-radius: var(--radius-md) !important;
            transition: var(--transition);
        }

        .accordion-button:not(.collapsed) {
            background: #f8f9fa !important;
            color: var(--accent) !important;
            border-bottom: 1px solid var(--border-color);
        }

        .accordion-body {
            background: #fff;
            color: #555;
            padding: 20px 24px;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ==============================
           CTA SECTION
           ============================== */
        .cta-section {
            padding: 100px 0;
            background: var(--bg-surface);
            text-align: center;
        }

        .cta-box {
            background: #fff;
            border: 2px solid var(--accent);
            border-radius: var(--radius-xl);
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 0 1px var(--accent), 0 8px 35px rgba(71, 143, 121, 0.15);
        }

        .cta-box h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 16px;
            color: #222;
        }

        .cta-box p {
            color: var(--text-secondary);
            margin-bottom: 28px;
            font-size: 1.05rem;
        }

        .cta-box .btn-primary-accent {
            font-size: 1.1rem;
            padding: 16px 44px;
        }

        /* ==============================
           FOOTER
           ============================== */
        .footer {
            padding: 60px 0 30px;
            background: var(--bg-dark);
            color: #ccc;
        }

        .footer h5 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: #fff;
        }

        .footer a {
            color: #aaa;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            display: block;
            margin-bottom: 8px;
        }

        .footer a:hover {
            color: var(--accent-bright);
        }

        .footer .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 12px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
            transition: var(--transition);
            font-size: 18px;
            text-decoration: none;
        }

        .social-icon:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
            box-shadow: 0 4px 20px rgba(71, 143, 121, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #888;
            font-size: 0.85rem;
        }

        .footer-bottom a {
            display: inline;
            color: #aaa;
        }

        /* ==============================
           RESPONSIVE
           ============================== */
        @media (max-width: 992px) {
            .hero {
                text-align: center;
                padding: 100px 0 60px;
            }
            .hero-subtitle {
                margin: 0 auto 32px;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-stats {
                justify-content: center;
                gap: 30px;
            }
            .hero-visual {
                margin-top: 50px;
            }
            .step-arrow {
                transform: rotate(90deg);
                margin: 16px 0;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
            .hero-title {
                font-size: 2rem;
            }
            .hero-stats {
                gap: 20px;
                flex-wrap: wrap;
            }
            .hero-stat-number {
                font-size: 1.5rem;
            }
            .cta-box {
                padding: 40px 20px;
            }
            .plan-card {
                margin-bottom: 20px;
            }
        }
		/* ==============================
   NAVBAR — СВЕТЛЫЙ
   ============================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1a1a1a !important;
    text-decoration: none;
}

.navbar-brand .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(71, 143, 121, 0.3);
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: #1a1a1a !important;
    background: var(--bg-input);
}

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    border-radius: 25px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    transition: var(--transition);
}

.nav-cta:hover {
    background: #3a7a66 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(71, 143, 121, 0.4);
}

/* Бургер-меню */
.navbar-toggler {
    border-color: var(--border-color) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51, 51, 51, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
/* ==============================
   PARTNERSHIP SECTION
   ============================== */
.partnership {
    padding: 100px 0;
    background: #fff;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.partnership-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.partnership-info .highlight-percent {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.partnership-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.partnership-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}

.partnership-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #555;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.partnership-benefits li:last-child {
    border-bottom: none;
}

.partnership-benefits .benefit-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(71, 143, 121, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.8rem;
    margin-top: 2px;
}

.partnership-card {
    background: #fff;
    border: 2px solid var(--accent);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    box-shadow: 0 0 0 1px var(--accent), 0 8px 30px rgba(71, 143, 121, 0.1);
    text-align: center;
}

.partnership-card .levels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.level-item {
    background: #f8f9fa;
    border-radius: var(--radius-md);
    padding: 16px 12px;
    transition: var(--transition);
}

.level-item:hover {
    background: rgba(71, 143, 121, 0.06);
    transform: translateY(-2px);
}

.level-item .level-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.level-item .level-percent {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
}

.level-item .level-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.partnership-note {
    margin-top: 20px;
    padding: 16px;
    background: rgba(71, 143, 121, 0.05);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: #666;
    text-align: left;
    line-height: 1.6;
}

.partnership-note i {
    color: var(--accent);
    margin-right: 6px;
}

@media (max-width: 992px) {
    .partnership-content {
        grid-template-columns: 1fr;
    }
    .partnership-card {
        margin-top: 30px;
    }
}
.navbar-brand .logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
/* ==============================
   OFFER HUB (вместо Testimonials)
   ============================== */
.offers-hub {
    padding: 100px 0;
    background: var(--bg-surface);
}

/* Превью-карточка офера */
.offer-preview-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.offer-preview-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(71, 143, 121, 0.12);
}

.offer-preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.offer-preview-badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}

.offer-preview-badge.hot {
    background: #e25822;
}

.offer-preview-badge.new {
    background: #1e7e34;
}

.offer-preview-category {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    background: rgba(71, 143, 121, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
}

.offer-preview-card h5 {
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.offer-preview-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.offer-preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.offer-preview-meta i {
    color: var(--accent);
    margin-right: 4px;
}

.offer-preview-payout {
    font-weight: 700;
    color: var(--accent);
    font-size: 1rem;
}

.offer-preview-stars {
    color: #f0c040;
    font-size: 0.85rem;
}

.offer-preview-stars small {
    color: var(--text-muted);
    font-weight: 400;
}

/* CTA-блок */
.offer-cta-box {
    background: #fff;
    border: 1px solid var(--accent);
    border-radius: var(--radius-xl);
    padding: 32px 36px;
    box-shadow: 0 0 0 1px var(--accent), 0 8px 30px rgba(71, 143, 121, 0.1);
}

@media (max-width: 768px) {
    .offer-cta-box {
        padding: 24px 20px;
        text-align: center;
    }
    .offer-cta-box .btn-primary-accent {
        width: 100%;
    }
}
/* ==============================
   TYPEWRITER EFFECT
   ============================== */
.typewriter-cursor {
    display: inline-block;
    color: var(--accent);
    font-weight: 300;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
.plan-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
}


.lang-btn {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px;
    color: #aaa;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.2s;
}

.lang-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.lang-btn.active {
    color: #fff;
    border-color: #4CAF50;
    background: rgba(76,175,80,0.1);
}
