/* ═══ AUTO-GENERATED custom.css ═══ */
/* Стиль: углы=soft, тени=subtle, отступы=spacious, кнопки=pill */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Manrope:wght@400;500&display=swap');

:root {
    /* Акцентные цвета */
    --accent-1: #EAB308;
    --accent-2: #6366F1;
    --accent-3: #6366F1;
    --accent-gradient: linear-gradient(to right, var(--accent-1), var(--accent-2));
    
    /* Шрифты */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Manrope', 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 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-xl: 0 8px 24px rgba(0,0,0,0.1);
    
    /* Отступы секций */
    --section-padding: 100px 0;
}

/* Стиль кнопок */
.btn-custom {
    border-radius: 50px;
    padding: 14px 34px;
}

/* Стиль карточек */
.icon-box, .service-card, .testimonial-card, .blog-card, .pricing-card {
    border-width: 1px;
    border-color: #EAB30833;
}

/* ═══════════════════════════════════════════ */
/* STYLE TRICKS — автогенерация приёмов      */
/* ═══════════════════════════════════════════ */

/* Trick: image-zoom-hover — увеличение при hover */
.card-image, .portfolio-item, .team-image {
    overflow: hidden;
}
.card-image img, .portfolio-item img, .team-image img {
    transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
}
.card-image:hover img, .portfolio-item:hover img, .team-card:hover .team-image img {
    transform: scale(1.08);
}

/* Trick: odd-card-lift — нечётные карточки приподняты */
.row > [class*="col"]:nth-child(odd) .icon-box,
.row > [class*="col"]:nth-child(odd) .service-card {
    transform: translateY(-10px);
}
.row > [class*="col"]:nth-child(even) .icon-box,
.row > [class*="col"]:nth-child(even) .service-card {
    transform: translateY(10px);
}

/* Trick: card-left-accent-border — толстая рамка слева */
.icon-box, .service-card, .blog-card, .pricing-card, .testimonial-card {
    border-left: 5px solid var(--accent-1);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Trick: accent-underline — подчёркивание h2 */
.section-title {
    display: inline-block;
    position: relative;
    padding-bottom: 14px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ═══════════════════════════════════════════ */
/* ELEMENT PRESETS — уникализация компонентов */
/* ═══════════════════════════════════════════ */

/* Hero: brutalist block — грубый стиль, жёсткие линии */
.hero-section { 
    background: var(--bg-primary);
    border-bottom: 4px solid var(--text-primary);
    min-height: auto;
    padding: 140px 0 80px;
}
.hero-image img {
    border-radius: 0;
    box-shadow: 8px 8px 0 var(--accent-1);
    border: 3px solid var(--text-primary);
}
.hero-title { font-weight: 900; text-transform: uppercase; letter-spacing: -2px; }
.hero-tagline { 
    background: var(--text-primary);
    color: var(--bg-primary) !important;
    padding: 6px 14px;
    border-radius: 0;
    font-weight: 800;
    text-transform: uppercase;
}
.hero-subtitle { font-size: 18px; max-width: 500px; }
.hero-buttons .btn-custom { border-radius: 0; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }

/* Header: minimal line — лаконичный с линией снизу */
.site-header { background: transparent; padding: 24px 0; }
.site-header .header-inner { padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.site-header.scrolled { background: var(--bg-primary); padding: 12px 0; }
.site-header.scrolled .header-inner { border-bottom: none; }
.main-nav .nav-link::after { display: none; }
.main-nav .nav-link:hover { opacity: 0.6; }
.site-logo { font-weight: 400; letter-spacing: 2px; text-transform: uppercase; font-size: 18px; }

/* Footer: light clean — светлый минималистичный */
.site-footer { background: var(--bg-secondary); color: var(--text-secondary); padding-top: 80px; }
.site-footer p, .site-footer li, .site-footer span,
.site-footer .footer-widget p, .site-footer .footer-contact li { color: var(--text-secondary); }
.site-footer h1,.site-footer h2,.site-footer h3,.site-footer h4,.site-footer h5 { color: var(--text-primary); }
.footer-widget .widget-title { color: var(--text-primary); }
.footer-widget .widget-title::after { background: var(--accent-1); }
.footer-links a { color: var(--text-secondary); }
.footer-links a:hover { color: var(--accent-1); }
.footer-contact li { color: var(--text-secondary); }
.footer-contact li i { color: var(--accent-1); }
.footer-social a { background: var(--bg-primary); border-color: var(--border-color); color: var(--text-secondary); }
.footer-social a:hover { background: var(--accent-1); color: #fff; border-color: var(--accent-1); }
.footer-bottom { border-top: 1px solid var(--border-color); }
.footer-bottom p { color: var(--text-muted); }

/* 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: gradient text — градиентный текст */
.site-logo {
    font-size: 24px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.site-logo span { -webkit-text-fill-color: transparent; }

/* Headings: large bold — крупные жирные */
.icon-title, .card-title { font-size: 22px; font-weight: 800; line-height: 1.2; }
.step-title { font-size: 20px; font-weight: 700; }
h4 { font-size: 20px; font-weight: 700; }
h5 { font-size: 16px; font-weight: 600; }

/* ═══ BURGER MENU DESIGN ═══ */
/* Burger: classic — три ровные полоски, плавная анимация в X */
.mobile-toggle { width: 40px; height: 40px; gap: 6px; border: none; background: none; border-radius: 0; }
.mobile-toggle .burger-line { width: 24px; height: 2px; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.mobile-toggle.active .burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active .burger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* Effect: divider-slash */
main > section + section::before{content:'/';display:block;text-align:center;color:var(--accent-1);opacity:0.25;font-size:28px;font-weight:300;padding:8px 0;}

/* Effect: progress-circle */
.progress-circle{position:fixed;bottom:80px;right:20px;width:44px;height:44px;z-index:9990;opacity:0.6;}.progress-circle svg{transform:rotate(-90deg);}.progress-circle .bg{fill:none;stroke:var(--border-color);stroke-width:3;}.progress-circle .fill{fill:none;stroke:var(--accent-1);stroke-width:3;stroke-linecap:round;transition:stroke-dashoffset 0.1s;}@media(max-width:768px){.progress-circle{display:none;}}

/* Effect: typewriter-hero */
.typewriter-cursor{display:inline-block;width:2px;height:1em;background:var(--accent-1);margin-left:4px;animation:twBlink 0.7s step-end infinite;vertical-align:text-bottom;}@keyframes twBlink{50%{opacity:0;}}

/* Effect: deco-noise-texture */
.bg-deco{position:fixed;inset:0;pointer-events:none;z-index:0;opacity:0.025;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");}

/* Effect: hover-link-underline-draw — Ссылки навигации — подчёркивание рисуется от центра */
.main-nav .nav-link::after{content:'';position:absolute;bottom:0;left:50%;width:0;height:2px;background:var(--accent-1);transition:width 0.3s ease,left 0.3s ease;border-radius:1px;}.main-nav .nav-link:hover::after,.main-nav .nav-link.active::after{width:100%;left:0;}

/* Effect: hover-card-tilt-3d — Карточки слегка поворачиваются в 3D при наведении */
.icon-box,.service-card,.blog-card,.testimonial-card,.pricing-card{transition:transform 0.4s ease,box-shadow 0.4s ease;transform-style:preserve-3d;will-change:transform;}

/* Effect: hover-btn-ripple — Material Design ripple-эффект на кнопках при клике */
.btn-custom,.btn-primary-custom,.btn-outline-custom{position:relative;overflow:hidden;}.btn-ripple{position:absolute;border-radius:50%;background:rgba(255,255,255,0.35);transform:scale(0);animation:rippleAnim 0.6s ease-out;pointer-events:none;}@keyframes rippleAnim{to{transform:scale(4);opacity:0;}}

/* Effect: pulse-dot-indicator — Пульсирующая точка рядом с заголовком hero */
.pulse-dot{display:inline-block;width:10px;height:10px;background:var(--accent-1);border-radius:50%;margin-left:10px;vertical-align:middle;animation:pulseDot 2s ease-in-out infinite;}@keyframes pulseDot{0%,100%{transform:scale(1);opacity:1;}50%{transform:scale(1.8);opacity:0.3;}}

/* Effect: pulse-icon-boxes — Иконки в icon-box мягко масштабируются */
.icon-box .icon-wrap i,.icon-box .icon-wrap svg{animation:iconPulse 3s ease-in-out infinite;}.icon-box:nth-child(2) .icon-wrap i{animation-delay:-0.5s;}.icon-box:nth-child(3) .icon-wrap i{animation-delay:-1s;}.icon-box:nth-child(4) .icon-wrap i{animation-delay:-1.5s;}@keyframes iconPulse{0%,100%{transform:scale(1);}50%{transform:scale(1.15);}}

/* Effect: float-lines-drift — Тонкие линии медленно дрейфуют по диагонали */
.float-shapes{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden;}.float-line{position:absolute;width:120px;height:1px;background:linear-gradient(90deg,transparent,var(--accent-1),transparent);opacity:0.06;animation:lineDrift 18s ease-in-out infinite alternate;transform-origin:center;}@keyframes lineDrift{0%{transform:translateX(0) rotate(30deg);}100%{transform:translateX(80px) rotate(-30deg);}}

/* Effect: marquee-vertical-side — Вертикальная бегущая строка сбоку */
.js-marquee-v{position:fixed;left:0;top:0;width:30px;height:100vh;overflow:hidden;z-index:9989;opacity:0.06;pointer-events:none;writing-mode:vertical-rl;text-orientation:mixed;}.js-marquee-v-inner{display:flex;gap:20px;white-space:nowrap;animation:jsMarqueeV 20s linear infinite;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:3px;}@keyframes jsMarqueeV{from{transform:translateY(0);}to{transform:translateY(-50%);}}@media(max-width:992px){.js-marquee-v{display:none;}}

/* Effect: asym-rounded-blob-sections — Чётные секции — blob со скруглёнными углами */
/* Asymmetry: rounded-blob — blob-секции */
main > section:nth-child(even) {
    border-radius: 40px;
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
}
.hero-section { border-radius: 0 !important; margin-left: 0 !important; margin-right: 0 !important; }
@media (max-width: 768px) {
    main > section:nth-child(even) { border-radius: 20px; margin-left: 8px; margin-right: 8px; }
}

/* ═══ 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.68;
    letter-spacing: 0.015em;
}

.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card {
    padding: 26px;
}
.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card .card-body {
    padding: 22px 18px;
}
.row > [class*="col"]:nth-child(1) .icon-box,
.row > [class*="col"]:nth-child(1) .service-card {
    padding: 28px;
    border-radius: calc(var(--radius-md) + 0px);
}
.row > [class*="col"]:nth-child(2) .icon-box,
.row > [class*="col"]:nth-child(2) .service-card {
    padding: 27px;
    border-radius: calc(var(--radius-md) + 3px);
}
.row > [class*="col"]:nth-child(3) .icon-box,
.row > [class*="col"]:nth-child(3) .service-card {
    padding: 23px;
    border-radius: calc(var(--radius-md) + 2px);
}
.row > [class*="col"]:nth-child(4) .icon-box,
.row > [class*="col"]:nth-child(4) .service-card {
    padding: 24px;
    border-radius: calc(var(--radius-md) + -2px);
}
.row > [class*="col"]:nth-child(5) .icon-box,
.row > [class*="col"]:nth-child(5) .service-card {
    padding: 24px;
    border-radius: calc(var(--radius-md) + 1px);
}
.row > [class*="col"]:nth-child(6) .icon-box,
.row > [class*="col"]:nth-child(6) .service-card {
    padding: 28px;
    border-radius: calc(var(--radius-md) + 0px);
}

.btn-custom {
    padding: 14px 28px;
    font-size: 14px;
    letter-spacing: 0.199px;
    border-radius: calc(var(--radius-md) + 0px);
}
.btn-outline-custom {
    padding: 14px 28px;
    border-width: 1px;
}

main > section {
    padding-top: 94px;
    padding-bottom: 87px;
}
main > section:first-child {
    padding-top: 105px;
}
main > section:nth-child(4) {
    padding-top: 93px;
    padding-bottom: 95px;
}
main > section:nth-child(6) {
    padding-top: 90px;
    padding-bottom: 91px;
}

.section-header {
    margin-bottom: 49px;
}

.icon-box, .service-card, .blog-card, .pricing-card {
    box-shadow: 1px 4px 17px rgba(0,0,0,0.055);
}

.hero-section {
    padding-top: 119px;
}
.hero-title {
    margin-bottom: 20px;
}
.hero-subtitle {
    margin-bottom: 34px;
    font-size: 18px;
    line-height: 1.596;
}
.hero-tagline {
    font-size: 12px;
    letter-spacing: 3.731px;
    margin-bottom: 21px;
}
.hero-buttons {
    gap: 11px;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 9px 40px rgba(0,0,0,0.141);
}

.icon-wrap {
    width: 50px;
    height: 50px;
    font-size: 22px;
    border-radius: 10px;
    margin-bottom: 21px;
}

.icon-title, .card-title {
    font-size: 20px;
    margin-bottom: 9px;
}
.icon-text, .card-text {
    font-size: 16px;
    line-height: 1.586;
}

.section-title {
    margin-bottom: 13px;
    letter-spacing: 0.078px;
}
.section-tagline {
    font-size: 13px;
    letter-spacing: 2.464px;
    margin-bottom: 12px;
}
.section-desc {
    font-size: 16px;
    line-height: 1.673;
}

@media (min-width: 993px) {
    .main-nav {
        gap: 30px;
    }
    .main-nav .nav-link {
        font-size: 14px;
        padding: 8px 0;
    }
}

.site-footer {
    padding-top: 80px;
}
.footer-widget .widget-title {
    font-size: 18px;
    margin-bottom: 19px;
}
.footer-links a {
    font-size: 15px;
}
.footer-links li {
    margin-bottom: 9px;
}
.footer-social {
    gap: 11px;
}
.footer-social a {
    width: 35px;
    height: 35px;
}
.footer-bottom {
    padding: 19px 0;
    margin-top: 49px;
}

.form-control {
    border-radius: 10px;
    padding: 12px 19px;
    font-size: 15px;
}

.testimonial-card {
    padding: 35px;
}
.quote-text {
    font-size: 16px;
    line-height: 1.691;
    margin-bottom: 20px;
}
.author-image {
    width: 51px;
    height: 51px;
}
.author-name {
    font-size: 15px;
}
.author-role {
    font-size: 13px;
}

.pricing-card {
    padding: 36px;
}
.plan-name {
    font-size: 21px;
    margin-bottom: 8px;
}
.plan-price {
    font-size: 47px;
    margin-bottom: 16px;
}
.plan-features li {
    padding: 9px 0;
    font-size: 14px;
}

.counter-number, .stat-number {
    font-size: 40px;
    margin-bottom: 3px;
}
.counter-label {
    font-size: 15px;
    letter-spacing: 0.213px;
}

.team-image img {
    border-radius: 14px;
}
.team-name {
    font-size: 19px;
    margin-bottom: 6px;
}
.team-role {
    font-size: 13px;
}

.step-number {
    font-size: 36px;
    margin-bottom: 15px;
}
.step-title {
    font-size: 18px;
    margin-bottom: 7px;
}

.wow {
    animation-duration: 0.586s !important;
}
.icon-box, .service-card, .blog-card, .testimonial-card,
.pricing-card, .team-card {
    transition-duration: 0.309s;
}

.row {
    --bs-gutter-y: 32px;
}

.cta-section {
    padding: 83px 0;
}
.cta-title {
    font-size: 33px;
    margin-bottom: 13px;
}
.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
}

.blog-card .card-image img {
    border-radius: 7px 7px 0 0;
}
.card-meta {
    font-size: 12px;
    margin-bottom: 5px;
    gap: 10px;
}

.site-header {
    padding: 19px 0;
}
.site-header.scrolled {
    padding: 13px 0;
}
.site-logo {
    font-size: 22px;
}
.header-cta {
    margin-left: 12px;
}

/* --- internal markers --- */
:root {
    --_env: 9.3;
    --_idx: 70313;
    --_run: '2c44';
    --_gen: 7.93;
}
.bind-ref { outline: 0 solid transparent; --_ref: '88' }
.base-ref { content: ''; visibility: inherit; font-variant: normal }
.init-marker { content: '' }
.frame-ref { box-sizing: border-box; unicode-bidi: normal; pointer-events: auto }


/* ═══════════════════════════════════════════════════════ */
/* 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 — LIGHT bg → dark text (preset handles colors) */
.site-footer { color: var(--text-secondary, #555) !important; }
.site-footer h1, .site-footer h2, .site-footer h3,
.site-footer h4, .site-footer h5, .site-footer h6,
.site-footer .widget-title { color: var(--text-primary, #1a1a2e) !important; }
.site-footer p, .site-footer li, .site-footer span,
.site-footer label { color: var(--text-secondary, #555) !important; }
.site-footer a:not(.btn-custom) { color: var(--text-secondary, #555) !important; }
.site-footer a:not(.btn-custom):hover { color: var(--accent-1) !important; }
.site-footer .footer-bottom p { color: var(--text-muted, #888) !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: var(--text-primary, #1a1a2e) !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; }
