/* ═══ AUTO-GENERATED custom.css ═══ */
/* Стиль: углы=soft, тени=colored, отступы=compact, кнопки=square */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Nunito+Sans:wght@400;500;600&display=swap');

:root {
    /* Акцентные цвета */
    --accent-1: #2BCBC1;
    --accent-2: #655BE8;
    --accent-3: #655BE8;
    --accent-gradient: linear-gradient(45deg, var(--accent-1), var(--accent-2));
    
    /* Шрифты */
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    
    /* Размеры шрифтов */
    --fs-h1: 84px;
    --fs-h2: 52px;
    --fs-h3: 36px;
    --fs-body: 18px;
    
    /* Вес заголовков */
    --fw-bold: 900;
    
    /* Углы скругления */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-pill: 40px;
    
    /* Тени */
    --shadow-sm: 0 2px 8px #2BCBC118;
    --shadow-md: 0 4px 16px #2BCBC122;
    --shadow-lg: 0 8px 32px #2BCBC130;
    --shadow-xl: 0 16px 48px #2BCBC140;
    
    /* Отступы секций */
    --section-padding: 60px 0;
}

/* Стиль кнопок */
.btn-custom {
    border-radius: 2px;
    padding: 14px 28px;
}

/* Стиль карточек */
.icon-box, .service-card, .testimonial-card, .blog-card, .pricing-card {
    border-width: 3px;
    border-color: #2BCBC1;
}

/* ═══════════════════════════════════════════ */
/* STYLE TRICKS — автогенерация приёмов      */
/* ═══════════════════════════════════════════ */

/* Trick: btn-glow — свечение при hover */
.btn-primary-custom {
    transition: box-shadow 0.3s;
}
.btn-primary-custom:hover {
    box-shadow: 0 0 20px var(--accent-1), 0 0 40px rgba(var(--accent-1), 0.3);
}

/* Trick: card-bottom-gradient — градиентная полоса снизу */
.icon-box, .service-card, .blog-card, .pricing-card, .testimonial-card {
    position: relative;
    overflow: hidden;
}
.icon-box::after, .service-card::after, .blog-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
}

/* Trick: card-scale-hover — масштаб при наведении */
.icon-box, .service-card, .blog-card, .pricing-card, .testimonial-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.icon-box:hover, .service-card:hover, .blog-card:hover, .pricing-card:hover, .testimonial-card:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-xl);
    z-index: 2;
    position: relative;
}

/* Trick: process-big-number — крупная нумерация */
.process-item {
    position: relative;
    padding-top: 60px;
}
.process-item .step-number {
    font-size: 80px;
    font-weight: 900;
    opacity: 0.08;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

/* Trick: gradient-section-bg — градиентный фон секции */
.bg-secondary-custom {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

/* Trick: wave-divider — волнистый разделитель перед секциями */
.bg-secondary-custom {
    position: relative;
    margin-top: 40px;
}
.bg-secondary-custom::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: inherit;
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* Trick: image-tilt — наклон картинки */
.hero-image img, .about-image img {
    transform: rotate(2deg) scale(1.02);
    transition: transform 0.5s ease;
}
.hero-image:hover img, .about-image:hover img {
    transform: rotate(0deg) scale(1);
}

/* ═══════════════════════════════════════════ */
/* ELEMENT PRESETS — уникализация компонентов */
/* ═══════════════════════════════════════════ */

/* Hero: overlap card — картинка с наложенным текстовым блоком */
.hero-section { min-height: 100vh; padding-bottom: 120px; }
.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}
.hero-content {
    background: var(--bg-card, #fff);
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: -80px;
    position: relative;
    z-index: 5;
    border: 1px solid var(--border-color);
}
.hero-tagline { background: var(--accent-1); color: #fff !important; padding: 6px 16px; border-radius: var(--radius-sm); font-size: 11px; }

/* Header: solid bordered — чёткая нижняя граница */
.site-header {
    background: var(--bg-primary);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
}
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    backdrop-filter: none;
}

/* Footer: two tone — двухцветный (тёмный + ещё темнее) */
.site-footer { background: #1a1a2e; color: rgba(255,255,255,0.6); padding-top: 80px; }
.site-footer h4,.site-footer h5 { color: #fff; }
.footer-widget .widget-title::after { background: var(--accent-1); }
.footer-bottom { background: #10101c; border-top: none; margin: 60px -1000px 0; padding: 24px 1000px; }
.footer-bottom p { color: rgba(255,255,255,0.3); }
.footer-social a:hover { background: var(--accent-1); border-color: var(--accent-1); }

/* Contact: floating labels — крупные поля с акцентом */
.contact-section .form-control {
    padding: 18px 20px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}
.contact-section .form-control:focus { border-color: var(--accent-1); box-shadow: 0 0 0 4px rgba(var(--accent-1), 0.08); transform: translateY(-2px); }
.contact-section .btn-custom { font-size: 16px; padding: 18px 36px; }

/* Logo: accent letter — цветная первая буква */
.site-logo { font-size: 24px; font-weight: 700; }
.site-logo span { color: var(--accent-1); }

/* Headings: gradient text — градиентные заголовки */
.icon-title, .card-title, .section-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
/* Safety: disable gradient-text inside footer/header */
.site-footer .icon-title, .site-footer .card-title, .site-footer .section-title,
.site-header .icon-title, .site-header .card-title, .site-header .section-title {
    -webkit-text-fill-color: initial;
    background: none;
}

/* Img: team — сильно-скруглённый квадрат */
.team-card .team-image img, .team-image img {
    border-radius: 30%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 3px solid var(--accent-1);
}

/* ═══ BURGER MENU DESIGN ═══ */
/* Burger: pill — капсульная форма кнопки */
.mobile-toggle { width: 52px; height: 36px; gap: 4px; border: none; background: var(--bg-secondary, rgba(0,0,0,0.05)); border-radius: 20px; }
.mobile-toggle .burger-line { width: 20px; height: 2px; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.mobile-toggle:hover { background: var(--accent-1); }
.mobile-toggle:hover .burger-line { background: #fff; }
.mobile-toggle.active .burger-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.active .burger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .burger-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }


/* Effect: divider-diamond */
main > section + section::before{content:'';display:block;width:10px;height:10px;background:var(--accent-1);transform:rotate(45deg);margin:15px auto;opacity:0.4;}

/* Effect: stagger-scale */
.icon-box,.service-card,.portfolio-item{opacity:0;animation:scaleIn 0.5s ease forwards;}.row>[class*="col"]:nth-child(1)>*{animation-delay:0.05s;}.row>[class*="col"]:nth-child(2)>*{animation-delay:0.15s;}.row>[class*="col"]:nth-child(3)>*{animation-delay:0.25s;}.row>[class*="col"]:nth-child(4)>*{animation-delay:0.35s;}.row>[class*="col"]:nth-child(5)>*{animation-delay:0.45s;}.row>[class*="col"]:nth-child(6)>*{animation-delay:0.55s;}@keyframes scaleIn{from{opacity:0;transform:scale(0.85);}to{opacity:1;transform:scale(1);}}

/* Effect: stagger-slide-left */
.icon-box,.service-card{opacity:0;animation:slideLeft 0.6s ease forwards;}.row>[class*="col"]:nth-child(odd) .icon-box,.row>[class*="col"]:nth-child(odd) .service-card{animation-name:slideLeft;}.row>[class*="col"]:nth-child(even) .icon-box,.row>[class*="col"]:nth-child(even) .service-card{animation-name:slideRight;}.row>[class*="col"]:nth-child(1)>*{animation-delay:0.1s;}.row>[class*="col"]:nth-child(2)>*{animation-delay:0.2s;}.row>[class*="col"]:nth-child(3)>*{animation-delay:0.3s;}.row>[class*="col"]:nth-child(4)>*{animation-delay:0.4s;}@keyframes slideLeft{from{opacity:0;transform:translateX(-40px);}to{opacity:1;transform:translateX(0);}}@keyframes slideRight{from{opacity:0;transform:translateX(40px);}to{opacity:1;transform:translateX(0);}}

/* Effect: stagger-blur-in */
.icon-box,.service-card,.blog-card{opacity:0;filter:blur(4px);animation:blurIn 0.6s ease forwards;}.row>[class*="col"]:nth-child(1)>*{animation-delay:0.08s;}.row>[class*="col"]:nth-child(2)>*{animation-delay:0.18s;}.row>[class*="col"]:nth-child(3)>*{animation-delay:0.28s;}.row>[class*="col"]:nth-child(4)>*{animation-delay:0.38s;}@keyframes blurIn{from{opacity:0;filter:blur(4px);transform:translateY(12px);}to{opacity:1;filter:blur(0);transform:translateY(0);}}

/* Effect: shimmer-cta-background — Фон CTA-кнопок переливается */
.btn-primary-custom,.hero-section .btn-custom{background:linear-gradient(90deg,var(--accent-1),var(--accent-2,var(--accent-1)),var(--accent-1));background-size:200% 100%;animation:shimmerBtn 3s ease-in-out infinite;}@keyframes shimmerBtn{0%,100%{background-position:0% 50%;}50%{background-position:100% 50%;}}

/* Effect: shimmer-accent-sections — Фон чётных секций переливается */
main>section:nth-child(even){background:linear-gradient(135deg,var(--bg-primary),var(--bg-secondary,var(--bg-primary)),var(--bg-primary));background-size:400% 400%;animation:shimmerBg 12s ease infinite;}@keyframes shimmerBg{0%,100%{background-position:0% 50%;}50%{background-position:100% 50%;}}

/* Effect: text-fade-up-words — Слова в hero-описании появляются по одному */
.word-reveal{display:inline-block;opacity:0;transform:translateY(20px);transition:opacity 0.4s ease,transform 0.4s ease;}.word-reveal.visible{opacity:1;transform:translateY(0);}

/* ═══ MOBILE MENU SAFETY-NET ═══ */
@media (max-width: 992px) {
    /* Бургер-кнопка — ВСЕГДА видима и кликабельна */
    .mobile-toggle {
        display: flex !important;
        pointer-events: auto !important;
        opacity: 1 !important;
        z-index: 10001 !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent;
    }
    .mobile-toggle .burger-line {
        pointer-events: none;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    /* Мобильная панель навигации — правильное позиционирование */
    .main-nav {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        height: 100vh !important;
        height: 100dvh !important;
        z-index: 10000 !important;
        overflow-y: auto !important;
    }
    /* Ссылки навигации — крупные, читаемые, кликабельные */
    .main-nav .nav-link {
        font-size: 18px !important;
        padding: 14px 0 !important;
        display: block !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        line-height: 1.4 !important;
        text-decoration: none !important;
    }
    .main-nav .nav-link::after { display: none !important; }
    .header-cta { display: none !important; }
    /* CTA-кнопка скрыта на мобильном (меню важнее) */
    .nav-group-left, .nav-group-right { display: none !important; }
}


/* ═══ BLUR SAFETY-NET ═══ */
/* Cards/content blocks: cap backdrop-filter blur at 8px, ensure solid-enough bg */
.icon-box,
.service-card,
.blog-card,
.pricing-card,
.feature-card,
.team-card {
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}
/* Guarantee text inside cards is never blurred by filter */
.icon-box *,
.service-card *,
.blog-card *,
.pricing-card *,
.feature-card * {
    filter: none !important;
}
/* Animation safety: blurIn cards MUST reach final state even if animation fails */
@supports (animation: none) {
    .icon-box, .service-card, .blog-card {
        animation-fill-mode: forwards !important;
    }
}


/* ═══════════════════════════════════════════ */
/* NOISE LAYER — микро-вариации для уникальности */
/* ═══════════════════════════════════════════ */

body {
    line-height: 1.677;
    letter-spacing: 0.011em;
}

.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card {
    padding: 32px;
}
.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card .card-body {
    padding: 21px 17px;
}
.row > [class*="col"]:nth-child(1) .icon-box,
.row > [class*="col"]:nth-child(1) .service-card {
    padding: 30px;
    border-radius: calc(var(--radius-md) + -2px);
}
.row > [class*="col"]:nth-child(2) .icon-box,
.row > [class*="col"]:nth-child(2) .service-card {
    padding: 29px;
    border-radius: calc(var(--radius-md) + 0px);
}
.row > [class*="col"]:nth-child(3) .icon-box,
.row > [class*="col"]:nth-child(3) .service-card {
    padding: 34px;
    border-radius: calc(var(--radius-md) + 0px);
}
.row > [class*="col"]:nth-child(4) .icon-box,
.row > [class*="col"]:nth-child(4) .service-card {
    padding: 35px;
    border-radius: calc(var(--radius-md) + 2px);
}
.row > [class*="col"]:nth-child(5) .icon-box,
.row > [class*="col"]:nth-child(5) .service-card {
    padding: 34px;
    border-radius: calc(var(--radius-md) + -2px);
}
.row > [class*="col"]:nth-child(6) .icon-box,
.row > [class*="col"]:nth-child(6) .service-card {
    padding: 35px;
    border-radius: calc(var(--radius-md) + 1px);
}

.btn-custom {
    padding: 13px 29px;
    font-size: 14px;
    letter-spacing: 0.341px;
    border-radius: calc(var(--radius-md) + -2px);
}
.btn-outline-custom {
    padding: 12px 31px;
    border-width: 1px;
}

main > section {
    padding-top: 88px;
    padding-bottom: 83px;
}
main > section:first-child {
    padding-top: 104px;
}
main > section:nth-child(2) {
    padding-top: 91px;
    padding-bottom: 89px;
}
main > section:nth-child(4) {
    padding-top: 80px;
    padding-bottom: 88px;
}
main > section:nth-child(6) {
    padding-top: 92px;
    padding-bottom: 91px;
}

.section-header {
    margin-bottom: 44px;
}

.icon-box, .service-card, .blog-card, .pricing-card {
    box-shadow: 1px 5px 16px rgba(0,0,0,0.051);
}

.hero-section {
    padding-top: 112px;
}
.hero-title {
    margin-bottom: 24px;
}
.hero-subtitle {
    margin-bottom: 33px;
    font-size: 19px;
    line-height: 1.593;
}
.hero-tagline {
    font-size: 12px;
    letter-spacing: 3.468px;
    margin-bottom: 19px;
}
.hero-buttons {
    gap: 16px;
}

.hero-image img {
    border-radius: 7px;
    box-shadow: 0 10px 43px rgba(0,0,0,0.125);
}

.icon-wrap {
    width: 51px;
    height: 51px;
    font-size: 21px;
    border-radius: 14px;
    margin-bottom: 17px;
}

.icon-title, .card-title {
    font-size: 19px;
    margin-bottom: 9px;
}
.icon-text, .card-text {
    font-size: 16px;
    line-height: 1.61;
}

.section-title {
    margin-bottom: 18px;
    letter-spacing: 0.0px;
}
.section-tagline {
    font-size: 13px;
    letter-spacing: 2.605px;
    margin-bottom: 17px;
}
.section-desc {
    font-size: 16px;
    line-height: 1.63;
}

@media (min-width: 993px) {
    .main-nav {
        gap: 28px;
    }
    .main-nav .nav-link {
        font-size: 13px;
        padding: 9px 0;
    }
}

.site-footer {
    padding-top: 62px;
}
.footer-widget .widget-title {
    font-size: 18px;
    margin-bottom: 25px;
}
.footer-links a {
    font-size: 13px;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-social {
    gap: 11px;
}
.footer-social a {
    width: 37px;
    height: 37px;
}
.footer-bottom {
    padding: 22px 0;
    margin-top: 53px;
}

.form-control {
    border-radius: 11px;
    padding: 12px 16px;
    font-size: 15px;
}

.testimonial-card {
    padding: 30px;
}
.quote-text {
    font-size: 16px;
    line-height: 1.674;
    margin-bottom: 21px;
}
.author-image {
    width: 48px;
    height: 48px;
}
.author-name {
    font-size: 16px;
}
.author-role {
    font-size: 12px;
}

.pricing-card {
    padding: 31px;
}
.plan-name {
    font-size: 22px;
    margin-bottom: 11px;
}
.plan-price {
    font-size: 43px;
    margin-bottom: 20px;
}
.plan-features li {
    padding: 10px 0;
    font-size: 14px;
}

.counter-number, .stat-number {
    font-size: 39px;
    margin-bottom: 4px;
}
.counter-label {
    font-size: 14px;
    letter-spacing: 0.57px;
}

.team-image img {
    border-radius: 7px;
}
.team-name {
    font-size: 17px;
    margin-bottom: 3px;
}
.team-role {
    font-size: 13px;
}

.step-number {
    font-size: 37px;
    margin-bottom: 11px;
}
.step-title {
    font-size: 17px;
    margin-bottom: 10px;
}

.wow {
    animation-duration: 0.63s !important;
}
.icon-box, .service-card, .blog-card, .testimonial-card,
.pricing-card, .team-card {
    transition-duration: 0.247s;
}

.row {
    --bs-gutter-y: 25px;
}

.cta-section {
    padding: 82px 0;
}
.cta-title {
    font-size: 38px;
    margin-bottom: 12px;
}
.cta-text {
    font-size: 18px;
    margin-bottom: 32px;
}

.blog-card .card-image img {
    border-radius: 14px 14px 0 0;
}
.card-meta {
    font-size: 14px;
    margin-bottom: 11px;
    gap: 13px;
}

.site-header {
    padding: 16px 0;
}
.site-header.scrolled {
    padding: 12px 0;
}
.site-logo {
    font-size: 23px;
}
.header-cta {
    margin-left: 12px;
}

/* --- internal markers --- */
:root {
    --_ref: '06131d';
    --_idx: 'fce1a';
    --_build: 39864;
    --_rev: '30a30';
    --_seed: '1e7bf3';
}
.grid-debug { --_stamp: 476; vertical-align: baseline; box-sizing: border-box }
.base-ref { font-variant: normal; box-sizing: border-box; vertical-align: baseline }


/* ═══════════════════════════════════════════════════════ */
/* CONTRAST GUARD — auto-generated, do NOT edit           */
/* Ensures readable text on ALL dark/gradient sections     */
/* ═══════════════════════════════════════════════════════ */

/* .bg-dark-section — DARK bg → light text */
.bg-dark-section h1, .bg-dark-section h2, .bg-dark-section h3, .bg-dark-section h4, .bg-dark-section h5, .bg-dark-section h6 { color: #fff !important; }
.bg-dark-section { color: rgba(255,255,255,0.85) !important; }
.bg-dark-section p, .bg-dark-section li, .bg-dark-section span:not(.badge):not(.btn-custom), .bg-dark-section .section-subtitle, .bg-dark-section label, .bg-dark-section blockquote, .bg-dark-section figcaption, .bg-dark-section dt, .bg-dark-section dd, .bg-dark-section td, .bg-dark-section th { color: rgba(255,255,255,0.78) !important; }
.bg-dark-section a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.bg-dark-section a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.bg-dark-section .counter-number { color: #fff !important; }
.bg-dark-section .counter-label { color: rgba(255,255,255,0.7) !important; }

/* .bg-dark-custom — DARK bg → light text */
.bg-dark-custom h1, .bg-dark-custom h2, .bg-dark-custom h3, .bg-dark-custom h4, .bg-dark-custom h5, .bg-dark-custom h6 { color: #fff !important; }
.bg-dark-custom { color: rgba(255,255,255,0.85) !important; }
.bg-dark-custom p, .bg-dark-custom li, .bg-dark-custom span:not(.badge):not(.btn-custom), .bg-dark-custom .section-subtitle, .bg-dark-custom label, .bg-dark-custom blockquote, .bg-dark-custom figcaption, .bg-dark-custom dt, .bg-dark-custom dd, .bg-dark-custom td, .bg-dark-custom th { color: rgba(255,255,255,0.78) !important; }
.bg-dark-custom a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.bg-dark-custom a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.bg-dark-custom .counter-number { color: #fff !important; }
.bg-dark-custom .counter-label { color: rgba(255,255,255,0.7) !important; }

/* .bg-gradient-custom — DARK bg → light text */
.bg-gradient-custom h1, .bg-gradient-custom h2, .bg-gradient-custom h3, .bg-gradient-custom h4, .bg-gradient-custom h5, .bg-gradient-custom h6 { color: #fff !important; }
.bg-gradient-custom { color: rgba(255,255,255,0.85) !important; }
.bg-gradient-custom p, .bg-gradient-custom li, .bg-gradient-custom span:not(.badge):not(.btn-custom), .bg-gradient-custom .section-subtitle, .bg-gradient-custom label, .bg-gradient-custom blockquote, .bg-gradient-custom figcaption, .bg-gradient-custom dt, .bg-gradient-custom dd, .bg-gradient-custom td, .bg-gradient-custom th { color: rgba(255,255,255,0.78) !important; }
.bg-gradient-custom a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.bg-gradient-custom a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.bg-gradient-custom .counter-number { color: #fff !important; }
.bg-gradient-custom .counter-label { color: rgba(255,255,255,0.7) !important; }

/* .bg-accent-custom — DARK bg → light text */
.bg-accent-custom h1, .bg-accent-custom h2, .bg-accent-custom h3, .bg-accent-custom h4, .bg-accent-custom h5, .bg-accent-custom h6 { color: #fff !important; }
.bg-accent-custom { color: rgba(255,255,255,0.85) !important; }
.bg-accent-custom p, .bg-accent-custom li, .bg-accent-custom span:not(.badge):not(.btn-custom), .bg-accent-custom .section-subtitle, .bg-accent-custom label, .bg-accent-custom blockquote, .bg-accent-custom figcaption, .bg-accent-custom dt, .bg-accent-custom dd, .bg-accent-custom td, .bg-accent-custom th { color: rgba(255,255,255,0.78) !important; }
.bg-accent-custom a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.bg-accent-custom a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.bg-accent-custom .counter-number { color: #fff !important; }
.bg-accent-custom .counter-label { color: rgba(255,255,255,0.7) !important; }

/* .cta-section — DARK bg → light text */
.cta-section h1, .cta-section h2, .cta-section h3, .cta-section h4, .cta-section h5, .cta-section h6 { color: #fff !important; }
.cta-section { color: rgba(255,255,255,0.85) !important; }
.cta-section p, .cta-section li, .cta-section span:not(.badge):not(.btn-custom), .cta-section .section-subtitle, .cta-section label, .cta-section blockquote, .cta-section figcaption, .cta-section dt, .cta-section dd, .cta-section td, .cta-section th { color: rgba(255,255,255,0.78) !important; }
.cta-section a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.cta-section a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.cta-section .counter-number { color: #fff !important; }
.cta-section .counter-label { color: rgba(255,255,255,0.7) !important; }

/* .site-footer — DARK bg → light text */
.site-footer { color: rgba(255,255,255,0.65) !important; }
.site-footer h1, .site-footer h2, .site-footer h3,
.site-footer h4, .site-footer h5, .site-footer h6,
.site-footer .widget-title { color: #fff !important; }
.site-footer p, .site-footer li, .site-footer span,
.site-footer label { color: rgba(255,255,255,0.6) !important; }
.site-footer a:not(.btn-custom) { color: rgba(255,255,255,0.65) !important; }
.site-footer a:not(.btn-custom):hover { color: #fff !important; }

/* .bg-primary-custom — LIGHT bg → dark text */
.bg-primary-custom h1, .bg-primary-custom h2, .bg-primary-custom h3, .bg-primary-custom h4, .bg-primary-custom h5, .bg-primary-custom h6 { color: var(--text-primary, #1a1a2e) !important; }
.bg-primary-custom p, .bg-primary-custom li, .bg-primary-custom span:not(.badge):not(.btn-custom), .bg-primary-custom .section-subtitle, .bg-primary-custom label, .bg-primary-custom blockquote, .bg-primary-custom figcaption, .bg-primary-custom dt, .bg-primary-custom dd, .bg-primary-custom td, .bg-primary-custom th { color: var(--text-secondary, #555) !important; }

/* .bg-secondary-custom — LIGHT bg → dark text */
.bg-secondary-custom h1, .bg-secondary-custom h2, .bg-secondary-custom h3, .bg-secondary-custom h4, .bg-secondary-custom h5, .bg-secondary-custom h6 { color: #959090 !important; }
.bg-secondary-custom p, .bg-secondary-custom li, .bg-secondary-custom span:not(.badge):not(.btn-custom), .bg-secondary-custom .section-subtitle, .bg-secondary-custom label, .bg-secondary-custom blockquote, .bg-secondary-custom figcaption, .bg-secondary-custom dt, .bg-secondary-custom dd, .bg-secondary-custom td, .bg-secondary-custom th { color: var(--text-secondary, #555) !important; }
