/* ═══ AUTO-GENERATED custom.css ═══ */
/* Стиль: углы=none, тени=medium, отступы=ultra-compact, кнопки=chunky */

@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Raleway:wght@400;500;600&display=swap');

:root {
    /* Акцентные цвета */
    --accent-1: #D9960C;
    --accent-2: #7C9907;
    --accent-3: #A7D453;
    --accent-gradient: linear-gradient(180deg, var(--accent-1), var(--accent-2));
    
    /* Шрифты */
    --font-heading: 'Cardo', serif;
    --font-body: 'Raleway', sans-serif;
    
    /* Размеры шрифтов */
    --fs-h1: 64px;
    --fs-h2: 44px;
    --fs-h3: 30px;
    --fs-body: 18px;
    
    /* Вес заголовков */
    --fw-bold: 900;
    
    /* Углы скругления */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;
    --radius-pill: 0px;
    
    /* Тени */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
    
    /* Отступы секций */
    --section-padding: 40px 0;
}

/* Стиль кнопок */
.btn-custom {
    border-radius: 8px;
    padding: 18px 36px;
}

/* Стиль карточек */
.icon-box, .service-card, .testimonial-card, .blog-card, .pricing-card {
    border-width: 3px;
    border-color: #D9960C;
}

/* ═══════════════════════════════════════════ */
/* STYLE TRICKS — автогенерация приёмов      */
/* ═══════════════════════════════════════════ */

/* Trick: card-dashed-border — пунктирная рамка */
.icon-box, .service-card, .blog-card, .pricing-card, .testimonial-card {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: none;
}
.icon-box:hover, .service-card:hover, .blog-card:hover, .pricing-card:hover, .testimonial-card:hover {
    border-color: var(--accent-1);
}

/* 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: gradient-headings — градиентные заголовки */
.section-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 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: 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);
}

/* Trick: tilt-cards — наклон карточек */
.icon-box, .service-card, .blog-card, .pricing-card, .testimonial-card {
    transform: rotate(-1.5deg);
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1);
}
.icon-box:hover, .service-card:hover, .blog-card:hover, .pricing-card:hover, .testimonial-card:hover {
    transform: rotate(0deg) translateY(-4px);
}

/* ═══════════════════════════════════════════ */
/* ELEMENT PRESETS — уникализация компонентов */
/* ═══════════════════════════════════════════ */

/* Hero: magazine layout — журнальная верстка */
.hero-section { padding-top: 140px; padding-bottom: 40px; background: var(--bg-primary); }
.hero-tagline {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 11px;
    background: none;
    padding: 0;
    color: var(--text-secondary) !important;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 32px;
    display: block;
}
.hero-title { font-size: calc(var(--fs-h1) * 1.2); line-height: 0.95; margin-bottom: 32px; }
.hero-image img {
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--border-color);
}
.hero-subtitle { font-style: italic; border-left: 2px solid var(--accent-1); padding-left: 20px; }

/* Header: frosted card — матовая карточка */
.site-header {
    background: transparent;
    padding: 12px 16px;
}
.site-header .header-inner {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border-radius: var(--radius-lg);
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
.site-header.scrolled { padding: 8px 16px; }
.site-header.scrolled .header-inner {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.main-nav .nav-link { font-size: 13px; font-weight: 500; }

/* Footer: dark classic — классический тёмный */
.site-footer { background: var(--footer-dark-bg); color: rgba(255,255,255,0.6); padding-top: 80px; }
.footer-widget .widget-title::after { width: 40px; height: 2px; background: var(--accent-1); }
.footer-social a { border-radius: 50%; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; margin-top: 60px; }

/* 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: minimal lowercase — минималистичный строчный */
.site-logo { font-size: 20px; font-weight: 300; letter-spacing: 3px; text-transform: lowercase; }

/* Headings: accent underline — подчёркивание акцентом */
.icon-title, .card-title, .step-title, .widget-title {
    position: relative;
    padding-bottom: 10px;
}
.icon-title::after, .card-title::after, .step-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-1);
    border-radius: 1px;
}

/* Img: hero — двойная рамка */
.hero-image img {
    border: 3px solid var(--accent-1);
    outline: 3px solid var(--accent-1);
    outline-offset: 6px;
    border-radius: var(--radius-md);
}

/* ═══ BURGER MENU DESIGN ═══ */
/* Burger: spin — вращающаяся анимация */
.mobile-toggle { width: 40px; height: 40px; gap: 6px; border: none; background: none; border-radius: 0; transition: transform 0.4s ease; }
.mobile-toggle .burger-line { width: 24px; height: 2px; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.mobile-toggle.active { transform: rotate(180deg); }
.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-fade-dots */
main > section + section::before{content:'';display:block;width:60%;height:1px;margin:0 auto;background:radial-gradient(circle,var(--accent-1) 1px,transparent 1px);background-size:12px 1px;opacity:0.25;}

/* Effect: progress-bar-top */
.progress-top{position:fixed;top:0;left:0;height:3px;background:var(--accent-gradient);z-index:99999;transition:width 0.05s;width:0;}

/* Effect: stagger-cards */
.icon-box,.service-card,.blog-card,.pricing-card,.team-card{opacity:0;animation:staggerIn 0.6s ease forwards;}.row>[class*="col"]:nth-child(1) .icon-box,.row>[class*="col"]:nth-child(1) .service-card,.row>[class*="col"]:nth-child(1) .blog-card{animation-delay:0.1s;}.row>[class*="col"]:nth-child(2) .icon-box,.row>[class*="col"]:nth-child(2) .service-card,.row>[class*="col"]:nth-child(2) .blog-card{animation-delay:0.2s;}.row>[class*="col"]:nth-child(3) .icon-box,.row>[class*="col"]:nth-child(3) .service-card,.row>[class*="col"]:nth-child(3) .blog-card{animation-delay:0.3s;}.row>[class*="col"]:nth-child(4) .icon-box,.row>[class*="col"]:nth-child(4) .service-card{animation-delay:0.4s;}.row>[class*="col"]:nth-child(5) .icon-box{animation-delay:0.5s;}.row>[class*="col"]:nth-child(6) .icon-box{animation-delay:0.6s;}@keyframes staggerIn{from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}

/* 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: scroll-cube-rotate — Cube Rotate — секции перелистываются как грани куба */
/* Scroll: cube-rotate — 3D-куб при смене секций */
main {
    perspective: 1200px;
    overflow: visible;
}
main > section {
    transition: transform 0.8s cubic-bezier(0.22,1,0.36,1), opacity 0.8s ease;
    transform-origin: center bottom;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
}
main > section.cube-up {
    transform: rotateX(90deg) translateZ(100px);
    opacity: 0;
}
main > section.cube-down {
    transform: rotateX(-90deg) translateZ(100px);
    opacity: 0;
}
main > section.in-view {
    transform: rotateX(0deg) translateZ(0);
    opacity: 1;
}
.hero-section { transform: none !important; opacity: 1 !important; backface-visibility: visible !important; }
@media (max-width: 768px) {
    main { perspective: none; }
    main > section { backface-visibility: visible; }
    main > section.cube-up { transform: translateY(40px); }
    main > section.cube-down { transform: translateY(-40px); }
}

/* 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-border-cards — Рамки карточек пульсируют акцентным цветом */
.icon-box,.service-card{animation:borderPulse 4s ease-in-out infinite;}.icon-box:nth-child(odd),.service-card:nth-child(odd){animation-delay:-2s;}@keyframes borderPulse{0%,100%{border-color:var(--border-color);}50%{border-color:var(--accent-1);}}

/* Effect: spin-gear-icon — Крутящаяся декоративная звезда рядом с hero */
.spin-gear{position:absolute;font-size:80px;opacity:0.04;animation:spinSlow 25s linear infinite;pointer-events:none;z-index:0;top:20%;left:5%;}@keyframes spinSlow{to{transform:rotate(360deg);}}@media(max-width:768px){.spin-gear{font-size:50px;}}

/* 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;}}

/* ═══ 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.659;
    letter-spacing: 0.006em;
}

.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: 22px 24px;
}
.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: 30px;
    border-radius: calc(var(--radius-md) + 1px);
}
.row > [class*="col"]:nth-child(3) .icon-box,
.row > [class*="col"]:nth-child(3) .service-card {
    padding: 30px;
    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) + 0px);
}
.row > [class*="col"]:nth-child(5) .icon-box,
.row > [class*="col"]:nth-child(5) .service-card {
    padding: 32px;
    border-radius: calc(var(--radius-md) + 1px);
}
.row > [class*="col"]:nth-child(6) .icon-box,
.row > [class*="col"]:nth-child(6) .service-card {
    padding: 30px;
    border-radius: calc(var(--radius-md) + 3px);
}

.btn-custom {
    padding: 13px 30px;
    font-size: 14px;
    letter-spacing: 0.266px;
    border-radius: calc(var(--radius-md) + 2px);
}
.btn-outline-custom {
    padding: 12px 29px;
    border-width: 1px;
}

main > section {
    padding-top: 77px;
    padding-bottom: 79px;
}
main > section:first-child {
    padding-top: 87px;
}
main > section:nth-child(2) {
    padding-top: 78px;
    padding-bottom: 85px;
}
main > section:nth-child(4) {
    padding-top: 79px;
    padding-bottom: 69px;
}

.section-header {
    margin-bottom: 57px;
}

.icon-box, .service-card, .blog-card, .pricing-card {
    box-shadow: 0px 3px 13px rgba(0,0,0,0.052);
}

.hero-section {
    padding-top: 116px;
}
.hero-title {
    margin-bottom: 22px;
}
.hero-subtitle {
    margin-bottom: 42px;
    font-size: 19px;
    line-height: 1.566;
}
.hero-tagline {
    font-size: 13px;
    letter-spacing: 3.443px;
    margin-bottom: 20px;
}
.hero-buttons {
    gap: 11px;
}

.hero-image img {
    border-radius: 9px;
    box-shadow: 0 12px 42px rgba(0,0,0,0.122);
}

.icon-wrap {
    width: 54px;
    height: 54px;
    font-size: 20px;
    border-radius: 8px;
    margin-bottom: 18px;
}

.icon-title, .card-title {
    font-size: 18px;
    margin-bottom: 11px;
}
.icon-text, .card-text {
    font-size: 15px;
    line-height: 1.633;
}

.section-title {
    margin-bottom: 14px;
    letter-spacing: 0.0px;
}
.section-tagline {
    font-size: 13px;
    letter-spacing: 2.392px;
    margin-bottom: 14px;
}
.section-desc {
    font-size: 16px;
    line-height: 1.602;
}

@media (min-width: 993px) {
    .main-nav {
        gap: 28px;
    }
    .main-nav .nav-link {
        font-size: 13px;
        padding: 8px 0;
    }
}

.site-footer {
    padding-top: 77px;
}
.footer-widget .widget-title {
    font-size: 18px;
    margin-bottom: 25px;
}
.footer-links a {
    font-size: 14px;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-social {
    gap: 9px;
}
.footer-social a {
    width: 40px;
    height: 40px;
}
.footer-bottom {
    padding: 26px 0;
    margin-top: 47px;
}

.form-control {
    border-radius: 6px;
    padding: 12px 17px;
    font-size: 14px;
}

.testimonial-card {
    padding: 31px;
}
.quote-text {
    font-size: 17px;
    line-height: 1.611;
    margin-bottom: 19px;
}
.author-image {
    width: 49px;
    height: 49px;
}
.author-name {
    font-size: 16px;
}
.author-role {
    font-size: 12px;
}

.pricing-card {
    padding: 33px;
}
.plan-name {
    font-size: 19px;
    margin-bottom: 5px;
}
.plan-price {
    font-size: 43px;
    margin-bottom: 17px;
}
.plan-features li {
    padding: 10px 0;
    font-size: 15px;
}

.counter-number, .stat-number {
    font-size: 37px;
    margin-bottom: 4px;
}
.counter-label {
    font-size: 13px;
    letter-spacing: 0.275px;
}

.team-image img {
    border-radius: 15px;
}
.team-name {
    font-size: 17px;
    margin-bottom: 6px;
}
.team-role {
    font-size: 12px;
}

.step-number {
    font-size: 37px;
    margin-bottom: 14px;
}
.step-title {
    font-size: 19px;
    margin-bottom: 8px;
}

.wow {
    animation-duration: 0.515s !important;
}
.icon-box, .service-card, .blog-card, .testimonial-card,
.pricing-card, .team-card {
    transition-duration: 0.357s;
}

.row {
    --bs-gutter-y: 27px;
}

.cta-section {
    padding: 89px 0;
}
.cta-title {
    font-size: 39px;
    margin-bottom: 19px;
}
.cta-text {
    font-size: 16px;
    margin-bottom: 33px;
}

.blog-card .card-image img {
    border-radius: 7px 7px 0 0;
}
.card-meta {
    font-size: 14px;
    margin-bottom: 9px;
    gap: 10px;
}

.site-header {
    padding: 20px 0;
}
.site-header.scrolled {
    padding: 17px 0;
}
.site-logo {
    font-size: 22px;
}
.header-cta {
    margin-left: 12px;
}

/* --- internal markers --- */
:root {
    --_tag: '4503';
    --_build: 'b14046';
    --_rev: 2.75;
    --_ref: 5939;
    --_ver: 4.22;
}
.layout-anchor { display: inherit }
.data-layer { unicode-bidi: normal; box-sizing: border-box }
.dom-hook { outline: 0 solid transparent; content: '' }


/* ═══════════════════════════════════════════════════════ */
/* 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; }

/* .bg-primary-custom — DARK bg → light 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: #fff !important; }
.bg-primary-custom { color: rgba(255,255,255,0.85) !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: rgba(255,255,255,0.78) !important; }
.bg-primary-custom a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.bg-primary-custom a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.bg-primary-custom .counter-number { color: #fff !important; }
.bg-primary-custom .counter-label { color: rgba(255,255,255,0.7) !important; }

/* .bg-secondary-custom — DARK bg → light 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: #fff !important; }
.bg-secondary-custom { color: rgba(255,255,255,0.85) !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: rgba(255,255,255,0.78) !important; }
.bg-secondary-custom .accordion-button { color: #fff !important; }
.bg-secondary-custom .accordion-button:not(.collapsed) { color: #fff !important; }
.bg-secondary-custom .accordion-button::after { filter: invert(1); }
.bg-secondary-custom .accordion-body { color: #fff !important; }
.bg-secondary-custom a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.bg-secondary-custom a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.bg-secondary-custom .counter-number { color: #fff !important; }
.bg-secondary-custom .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; }
