/* ═══ AUTO-GENERATED custom.css ═══ */
/* Стиль: углы=round, тени=hard, отступы=breathable, кнопки=rounded */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Archivo:wght@400;500&display=swap');

:root {
    /* Акцентные цвета */
    --accent-1: #FB923C;
    --accent-2: #FF6EBF;
    --accent-3: #FF6EBF;
    --accent-gradient: linear-gradient(120deg, var(--accent-1), var(--accent-2));
    
    /* Шрифты */
    --font-heading: 'Archivo', sans-serif;
    --font-body: 'Archivo', sans-serif;
    
    /* Размеры шрифтов */
    --fs-h1: 72px;
    --fs-h2: 48px;
    --fs-h3: 32px;
    --fs-body: 18px;
    
    /* Вес заголовков */
    --fw-bold: 600;
    
    /* Углы скругления */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 50px;
    
    /* Тени */
    --shadow-sm: 3px 3px 0 rgba(0,0,0,0.08);
    --shadow-md: 5px 5px 0 rgba(0,0,0,0.10);
    --shadow-lg: 8px 8px 0 rgba(0,0,0,0.12);
    --shadow-xl: 12px 12px 0 rgba(0,0,0,0.15);
    
    /* Отступы секций */
    --section-padding: 140px 0;
}

/* Стиль кнопок */
.btn-custom {
    border-radius: 10px;
    padding: 14px 28px;
}

/* Стиль карточек */
.icon-box, .service-card, .testimonial-card, .blog-card, .pricing-card {
    border-width: 1px;
    border-color: var(--border-color);
}

/* ═══════════════════════════════════════════ */
/* STYLE TRICKS — автогенерация приёмов      */
/* ═══════════════════════════════════════════ */

/* Trick: section-accent-line — акцентная линия перед заголовком */
.section-header::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    margin-bottom: 18px;
}
.section-header.text-center::before {
    margin-left: auto;
    margin-right: auto;
}

/* Trick: card-double-border — рамка слева + снизу */
.icon-box, .service-card, .blog-card, .pricing-card, .testimonial-card {
    border-left: 4px solid var(--accent-1);
    border-bottom: 4px solid var(--accent-2, var(--accent-1));
    border-radius: 0;
}

/* 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: 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%);
}

/* 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: card-stack-shadow — тень-стопка ::after */
.icon-box, .service-card, .blog-card, .pricing-card, .testimonial-card {
    position: relative;
}
.icon-box::after, .service-card::after {
    content: '';
    position: absolute;
    inset: 8px 8px -8px -8px;
    background: var(--accent-1);
    opacity: 0.12;
    border-radius: inherit;
    z-index: -1;
    transition: opacity 0.3s;
}
.icon-box:hover::after, .service-card:hover::after {
    opacity: 0.22;
}

/* Trick: footer-wave-top — волна над футером */
.site-footer {
    position: relative;
    margin-top: 40px;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: inherit;
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* ═══════════════════════════════════════════ */
/* ELEMENT PRESETS — уникализация компонентов */
/* ═══════════════════════════════════════════ */

/* Hero: gradient blob — градиентные круги за контентом */
.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--accent-1);
    opacity: 0.08;
    top: -100px;
    right: -100px;
    filter: blur(80px);
}
.hero-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--accent-2, var(--accent-1));
    opacity: 0.06;
    bottom: -50px;
    left: -50px;
    filter: blur(60px);
    z-index: 0;
}
.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.hero-content { position: relative; z-index: 2; }
.hero-tagline { background: linear-gradient(135deg, var(--accent-1), var(--accent-2, var(--accent-1))); color: #fff !important; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; padding: 0; }

/* Header: neon bottom — неоновая линия снизу */
.site-header {
    background: var(--footer-dark-bg);
    padding: 16px 0;
    border-bottom: 2px solid var(--accent-1);
    box-shadow: 0 2px 20px color-mix(in srgb, var(--accent-1) 40%, transparent);
}
.site-header .site-logo { color: #fff; }
.site-header .nav-link { color: rgba(255,255,255,0.7) !important; }
.site-header .nav-link:hover, .site-header .nav-link.active { color: var(--accent-1) !important; }
.site-header .nav-link::after { background: var(--accent-1); }
.site-header .header-cta { background: var(--accent-1); color: #fff; border-color: var(--accent-1); }
.site-header .mobile-toggle .burger-line { background: #fff; }
.site-header.scrolled { box-shadow: 0 4px 25px color-mix(in srgb, var(--accent-1) 30%, transparent); }

/* Footer: gradient bg — градиентный фон */
.site-footer {
    background: linear-gradient(135deg, var(--footer-dark-bg) 0%, color-mix(in srgb, var(--footer-dark-bg) 70%, var(--accent-1)) 100%);
    color: rgba(255,255,255,0.6);
    padding-top: 80px;
}
.site-footer h4,.site-footer h5 { color: #fff; }
.footer-widget .widget-title::after { background: rgba(255,255,255,0.3); }
.footer-links a { color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: #fff; }
.footer-social a { border-color: rgba(255,255,255,0.15); }
.footer-social a:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom p { color: rgba(255,255,255,0.3); }

/* Contact: accent border — акцентная рамка */
.contact-section .form-custom {
    border: 2px solid var(--accent-1);
    padding: 40px;
    border-radius: var(--radius-md);
    position: relative;
}
.contact-section .form-custom::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 30px;
    right: 30px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 0 0 4px 4px;
}
.contact-section .form-control { border-radius: var(--radius-sm); }

/* Logo: serif elegant — элегантный с засечками */
.site-logo {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 2px;
    font-style: italic;
}
.site-logo span { color: var(--accent-1); font-style: normal; font-weight: 700; }

/* Headings: accent left border — левая акцентная полоса */
.icon-title, .card-title, .step-title {
    padding-left: 14px;
    border-left: 3px solid var(--accent-1);
}
h4, h5 { padding-left: 12px; border-left: 2px solid var(--accent-1); }

/* ═══ BURGER MENU DESIGN ═══ */
/* Burger: thin wide — тонкие широкие линии */
.mobile-toggle { width: 44px; height: 40px; gap: 7px; border: none; background: none; border-radius: 0; }
.mobile-toggle .burger-line { width: 30px; height: 1.5px; border-radius: 0; transition: transform 0.3s ease, opacity 0.3s ease; }
.mobile-toggle.active .burger-line:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.mobile-toggle.active .burger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .burger-line:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }


/* Effect: scrollbar-line */
.scroll-line{position:fixed;right:16px;top:20%;height:60%;width:3px;background:var(--border-color);border-radius:2px;z-index:9990;opacity:0.4;}.scroll-line .indicator{width:100%;background:var(--accent-1);border-radius:2px;transition:height 0.1s;}@media(max-width:768px){.scroll-line{display:none;}}

/* Effect: progress-header-line */
.progress-header{position:fixed;top:0;left:0;height:2px;z-index:100000;background:var(--accent-1);width:0;opacity:0.8;}

/* Effect: stagger-rotate-in */
.icon-box,.service-card{opacity:0;animation:rotateIn 0.7s 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;}@keyframes rotateIn{from{opacity:0;transform:perspective(600px) rotateY(15deg) translateX(30px);}to{opacity:1;transform:perspective(600px) rotateY(0) translateX(0);}}

/* Effect: deco-cross-pattern */
.bg-deco{position:fixed;inset:0;pointer-events:none;z-index:0;opacity:0.015;background-image:linear-gradient(var(--accent-1) 1px,transparent 1px),linear-gradient(90deg,var(--accent-1) 1px,transparent 1px);background-size:60px 60px;}

/* Effect: scroll-overlap-sections — Overlap — секции наезжают друг на друга сверху при скролле */
/* Scroll: overlap-sections — секции перекрывают друг друга */
main > section {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--bg-primary);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.08);
}
main > section:nth-child(even) { background: var(--bg-secondary, var(--bg-primary)); }
main > section:nth-child(1) { z-index: 2; }
main > section:nth-child(2) { z-index: 3; }
main > section:nth-child(3) { z-index: 4; }
main > section:nth-child(4) { z-index: 5; }
main > section:nth-child(5) { z-index: 6; }
main > section:nth-child(6) { z-index: 7; }
main > section:nth-child(7) { z-index: 8; }
main > section:nth-child(8) { z-index: 9; }
main > section:nth-child(9) { z-index: 10; }
main > section:nth-child(10) { z-index: 11; }
main > section:nth-child(11) { z-index: 12; }
main > section:nth-child(12) { z-index: 13; }
.hero-section { z-index: 0; position: relative; }
.site-footer { position: relative; z-index: 20; }
@media (max-width: 768px) { main > section { position: relative; box-shadow: none; } }

/* Effect: hover-cursor-text-follow — Текст-подсказка следует за курсором на карточках */
.hover-tooltip{position:fixed;padding:6px 14px;background:var(--text-primary);color:#fff;font-size:11px;font-weight:600;border-radius:var(--radius-sm);pointer-events:none;z-index:99999;opacity:0;transition:opacity 0.2s;font-family:var(--font-body);letter-spacing:0.5px;white-space:nowrap;}

/* Effect: hover-card-border-glow — Рамка карточки мягко подсвечивается при наведении */
.icon-box,.service-card,.blog-card,.testimonial-card,.pricing-card{transition:border-color 0.4s ease,box-shadow 0.4s ease;}.icon-box:hover,.service-card:hover,.blog-card:hover,.testimonial-card:hover,.pricing-card:hover{border-color:var(--accent-1) !important;box-shadow:0 0 0 1px var(--accent-1),0 8px 30px rgba(0,0,0,0.08) !important;}

/* Effect: pulse-notification-badge — Пульсирующий бейдж на кнопке в хедере */
.nav-badge{position:relative;}.nav-badge::after{content:'';position:absolute;top:-2px;right:-2px;width:8px;height:8px;background:#ef4444;border-radius:50%;animation:badgePing 1.5s cubic-bezier(0,0,0.2,1) infinite;}@keyframes badgePing{75%,100%{transform:scale(2);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: float-hexagons — Шестиугольники парят и поворачиваются */
.float-shapes{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden;}.float-hex{position:absolute;width:60px;height:34px;background:var(--accent-1);opacity:0.025;animation:floatHex 22s ease-in-out infinite alternate;clip-path:polygon(25% 0%,75% 0%,100% 50%,75% 100%,25% 100%,0% 50%);}@keyframes floatHex{0%{transform:translateY(0) rotate(0deg);}100%{transform:translateY(-80px) rotate(60deg);}}

/* Effect: shimmer-loading-skeleton — Карточки мерцают как скелет-лоадер при появлении */
.shimmer-reveal{position:relative;overflow:hidden;}.shimmer-reveal::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,transparent 0%,rgba(255,255,255,0.08) 50%,transparent 100%);transform:translateX(-100%);animation:shimmerLoad 1.5s ease forwards;}@keyframes shimmerLoad{to{transform:translateX(100%);}}

/* 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-gradient-slide — Градиент скользит по заголовкам при hover */
.section-title{transition:background-position 0.6s ease;background:linear-gradient(90deg,var(--text-primary) 50%,var(--accent-1) 50%);background-size:200% 100%;background-position:0% 0;-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}.section-title:hover{background-position:100% 0;}

/* 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;
        background: var(--bg-primary) !important;
    }
    /* Ссылки навигации — крупные, читаемые, кликабельные */
    .main-nav .nav-link {
        font-size: 18px !important;
        padding: 14px 0 !important;
        display: block !important;
        width: 100% !important;
        color: var(--text-primary) !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.672;
    letter-spacing: 0.002em;
}

.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card {
    padding: 24px;
}
.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card .card-body {
    padding: 25px 19px;
}
.row > [class*="col"]:nth-child(1) .icon-box,
.row > [class*="col"]:nth-child(1) .service-card {
    padding: 24px;
    border-radius: calc(var(--radius-md) + 3px);
}
.row > [class*="col"]:nth-child(2) .icon-box,
.row > [class*="col"]:nth-child(2) .service-card {
    padding: 25px;
    border-radius: calc(var(--radius-md) + 1px);
}
.row > [class*="col"]:nth-child(3) .icon-box,
.row > [class*="col"]:nth-child(3) .service-card {
    padding: 27px;
    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) + 1px);
}
.row > [class*="col"]:nth-child(5) .icon-box,
.row > [class*="col"]:nth-child(5) .service-card {
    padding: 23px;
    border-radius: calc(var(--radius-md) + -1px);
}
.row > [class*="col"]:nth-child(6) .icon-box,
.row > [class*="col"]:nth-child(6) .service-card {
    padding: 21px;
    border-radius: calc(var(--radius-md) + -2px);
}

.btn-custom {
    padding: 15px 32px;
    font-size: 14px;
    letter-spacing: 0.147px;
    border-radius: calc(var(--radius-md) + 0px);
}
.btn-outline-custom {
    padding: 16px 34px;
    border-width: 2px;
}

main > section {
    padding-top: 94px;
    padding-bottom: 98px;
}
main > section:first-child {
    padding-top: 104px;
}

.section-header {
    margin-bottom: 49px;
}

.icon-box, .service-card, .blog-card, .pricing-card {
    box-shadow: 1px 2px 15px rgba(0,0,0,0.089);
}

.hero-section {
    padding-top: 109px;
}
.hero-title {
    margin-bottom: 22px;
}
.hero-subtitle {
    margin-bottom: 33px;
    font-size: 16px;
    line-height: 1.552;
}
.hero-tagline {
    font-size: 13px;
    letter-spacing: 2.458px;
    margin-bottom: 23px;
}
.hero-buttons {
    gap: 12px;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 15px 29px rgba(0,0,0,0.147);
}

.icon-wrap {
    width: 49px;
    height: 49px;
    font-size: 21px;
    border-radius: 9px;
    margin-bottom: 16px;
}

.icon-title, .card-title {
    font-size: 18px;
    margin-bottom: 8px;
}
.icon-text, .card-text {
    font-size: 15px;
    line-height: 1.601;
}

.section-title {
    margin-bottom: 17px;
    letter-spacing: 0.0px;
}
.section-tagline {
    font-size: 14px;
    letter-spacing: 2.33px;
    margin-bottom: 12px;
}
.section-desc {
    font-size: 17px;
    line-height: 1.651;
}

@media (min-width: 993px) {
    .main-nav {
        gap: 26px;
    }
    .main-nav .nav-link {
        font-size: 13px;
        padding: 6px 0;
    }
}

.site-footer {
    padding-top: 64px;
}
.footer-widget .widget-title {
    font-size: 18px;
    margin-bottom: 23px;
}
.footer-links a {
    font-size: 13px;
}
.footer-links li {
    margin-bottom: 9px;
}
.footer-social {
    gap: 9px;
}
.footer-social a {
    width: 39px;
    height: 39px;
}
.footer-bottom {
    padding: 26px 0;
    margin-top: 55px;
}

.form-control {
    border-radius: 11px;
    padding: 11px 19px;
    font-size: 15px;
}

.testimonial-card {
    padding: 29px;
}
.quote-text {
    font-size: 17px;
    line-height: 1.625;
    margin-bottom: 18px;
}
.author-image {
    width: 47px;
    height: 47px;
}
.author-name {
    font-size: 14px;
}
.author-role {
    font-size: 12px;
}

.pricing-card {
    padding: 38px;
}
.plan-name {
    font-size: 22px;
    margin-bottom: 5px;
}
.plan-price {
    font-size: 46px;
    margin-bottom: 20px;
}
.plan-features li {
    padding: 11px 0;
    font-size: 13px;
}

.counter-number, .stat-number {
    font-size: 42px;
    margin-bottom: 9px;
}
.counter-label {
    font-size: 14px;
    letter-spacing: 0.589px;
}

.team-image img {
    border-radius: 16px;
}
.team-name {
    font-size: 17px;
    margin-bottom: 6px;
}
.team-role {
    font-size: 13px;
}

.step-number {
    font-size: 29px;
    margin-bottom: 13px;
}
.step-title {
    font-size: 19px;
    margin-bottom: 8px;
}

.wow {
    animation-duration: 0.72s !important;
}
.icon-box, .service-card, .blog-card, .testimonial-card,
.pricing-card, .team-card {
    transition-duration: 0.296s;
}

.row {
    --bs-gutter-y: 26px;
}

.cta-section {
    padding: 69px 0;
}
.cta-title {
    font-size: 35px;
    margin-bottom: 13px;
}
.cta-text {
    font-size: 17px;
    margin-bottom: 31px;
}

.blog-card .card-image img {
    border-radius: 14px 14px 0 0;
}
.card-meta {
    font-size: 12px;
    margin-bottom: 6px;
    gap: 11px;
}

.site-header {
    padding: 21px 0;
}
.site-header.scrolled {
    padding: 18px 0;
}
.site-logo {
    font-size: 23px;
}
.header-cta {
    margin-left: 16px;
}

/* --- internal markers --- */
:root {
    --_tag: '0ca99';
    --_idx: 9.53;
}
.view-anchor { pointer-events: auto; vertical-align: baseline }
.render-flag { visibility: inherit; content: ''; vertical-align: baseline }
.node-stub { vertical-align: baseline; pointer-events: auto }
.layout-anchor { visibility: inherit }
.dom-hook { display: inherit; box-sizing: border-box; unicode-bidi: normal }


/* ═══════════════════════════════════════════════════════ */
/* 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: 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; }
