/* ═══ AUTO-GENERATED custom.css ═══ */
/* Стиль: углы=soft, тени=strong, отступы=breathable, кнопки=pill */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&family=Figtree:wght@400;500&display=swap');

:root {
    /* Акцентные цвета */
    --accent-1: #0C20C1;
    --accent-2: #B19B22;
    --accent-3: #1FAE55;
    --accent-gradient: linear-gradient(180deg, var(--accent-1), var(--accent-2));
    
    /* Шрифты */
    --font-heading: 'Figtree', sans-serif;
    --font-body: 'Figtree', sans-serif;
    
    /* Размеры шрифтов */
    --fs-h1: 84px;
    --fs-h2: 52px;
    --fs-h3: 36px;
    --fs-body: 18px;
    
    /* Вес заголовков */
    --fw-bold: 700;
    
    /* Углы скругления */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-pill: 40px;
    
    /* Тени */
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.14);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.18);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.22);
    
    /* Отступы секций */
    --section-padding: 140px 0;
}

/* Стиль кнопок */
.btn-custom {
    border-radius: 50px;
    padding: 14px 34px;
}

/* Стиль карточек */
.icon-box, .service-card, .testimonial-card, .blog-card, .pricing-card {
    border-width: 0px;
    border-color: transparent;
}

/* ═══════════════════════════════════════════ */
/* STYLE TRICKS — автогенерация приёмов      */
/* ═══════════════════════════════════════════ */

/* Trick: cascade-offset — каскадный сдвиг колонок */
.row > [class*="col"]:nth-child(2) { transform: translate(6px, 14px); }
.row > [class*="col"]:nth-child(3) { transform: translate(-6px, 28px); }
.row > [class*="col"]:nth-child(4) { transform: translate(6px, 14px); }
.row > [class*="col"]:nth-child(5) { transform: translate(-6px, 28px); }
.row > [class*="col"]:nth-child(6) { transform: translate(6px, 14px); }
@media (max-width: 768px) { .row > [class*="col"] { transform: none !important; } }

/* 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: dot-pattern-bg — точечный фон */
.bg-secondary-custom {
    background-image: radial-gradient(circle, var(--accent-1) 1px, transparent 1px);
    background-size: 24px 24px;
    background-blend-mode: overlay;
}

/* Trick: dark-cta-section — тёмный CTA */
.cta-section {
    background: var(--footer-dark-bg);
    color: #fff;
    border-radius: var(--radius-xl);
    margin: 0 20px;
}
.cta-section .cta-title { color: #fff; }
.cta-section .cta-text { color: rgba(255,255,255,0.7); }
.cta-section .btn-custom { background: #fff; color: var(--footer-dark-bg); }

/* ═══════════════════════════════════════════ */
/* ELEMENT PRESETS — уникализация компонентов */
/* ═══════════════════════════════════════════ */

/* Hero: fullbleed bg — фон на весь экран с оверлеем */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}
.hero-section .hero-bg { opacity: 0.5 !important; }
.hero-section .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%) !important;
}
.hero-section .hero-content { text-align: center; }
.hero-section .hero-title { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-section .hero-subtitle { color: rgba(255,255,255,0.85); }
.hero-section .hero-tagline { background: rgba(255,255,255,0.15); color: #fff !important; backdrop-filter: blur(8px); }
.hero-section .btn-outline-custom { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero-section .hero-buttons { justify-content: center; }

/* Header: top line accent — тонкая акцентная линия сверху */
.site-header {
    background: var(--bg-primary);
    padding: 16px 0;
    border-top: 3px solid var(--accent-1);
}
.site-header.scrolled {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 12px 0;
}
.main-nav .nav-link { font-weight: 500; }
.main-nav .nav-link::after { background: var(--accent-1); border-radius: var(--radius-pill); height: 2px; }

/* Footer: layered card — многослойный вид */
.site-footer {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0 20px 20px;
    border-top: none;
}
.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); }
.site-footer > .container,
.site-footer > div > .container {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 60px 40px 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
.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-social a { background: var(--bg-secondary); 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); margin-top: 40px; }
.footer-bottom p { color: var(--text-muted); }

/* Contact: underline fields — поля с нижней чертой */
.contact-section .form-control {
    border: none;
    border-bottom: 2px solid var(--border-color);
    border-radius: 0;
    padding: 12px 0;
    background: transparent;
    font-size: 16px;
}
.contact-section .form-control:focus { border-bottom-color: var(--accent-1); box-shadow: none; }
.contact-section .btn-custom { border-radius: 0; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; padding: 16px 40px; }

/* Logo: badge — значок/бейдж */
.site-logo { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; border: 2px solid var(--text-primary); padding: 6px 16px; border-radius: 0; }

/* Headings: uppercase small — маленькие заглавные */
.icon-title, .card-title, .step-title {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 700;
}
h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }

/* ═══ BURGER MENU DESIGN ═══ */
/* Burger: gradient bg — градиентный фон */
.mobile-toggle { width: 42px; height: 42px; gap: 5px; border: none; background: var(--accent-gradient, var(--accent-1)); border-radius: var(--radius-sm, 6px); }
.mobile-toggle .burger-line { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.mobile-toggle.active .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active .burger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* Effect: divider-chevron */
main > section + section::before{content:'\276F';display:block;text-align:center;transform:rotate(90deg);color:var(--accent-1);opacity:0.3;font-size:20px;padding:10px 0;}

/* Effect: cursor-glow */
.cursor-glow{position:fixed;width:200px;height:200px;background:radial-gradient(circle,var(--accent-1) 0%,transparent 70%);border-radius:50%;pointer-events:none;z-index:99998;opacity:0.07;transform:translate(-50%,-50%);transition:opacity 0.3s;}

/* 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: 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-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: scroll-alternate-slide — Alternate Slide — чётные секции уходят влево, нечётные вправо */
/* Scroll: alternate-slide — попеременное скольжение */
main > section {
    transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), opacity 0.7s ease;
    will-change: transform, opacity;
    opacity: 0;
}
main > section:nth-child(odd) { transform: translateX(-80vw) rotate(-2deg); }
main > section:nth-child(even) { transform: translateX(80vw) rotate(2deg); }
main > section.in-view {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
}
.hero-section { transform: none !important; opacity: 1 !important; }
@media (max-width: 768px) {
    main > section:nth-child(odd),
    main > section:nth-child(even) { transform: translateY(50px) rotate(0deg); }
}

/* 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: hover-card-bg-accent — Фон карточки плавно становится акцентным при наведении */
.icon-box,.service-card{transition:background 0.4s ease,color 0.4s ease,border-color 0.4s ease,box-shadow 0.4s ease;}.icon-box:hover,.service-card:hover{background:var(--accent-1) !important;border-color:var(--accent-1) !important;box-shadow:0 12px 30px rgba(0,0,0,0.15) !important;}.icon-box:hover .icon-title,.icon-box:hover .icon-text,.icon-box:hover i{color:#fff !important;}.service-card:hover .card-title,.service-card:hover .card-text{color:#1f2937 !important;}.icon-box:hover .icon-wrap{background:rgba(255,255,255,0.15) !important;color:#fff !important;}

/* Effect: float-cross-particles — Мелкие крестики плавают и вращаются */
.float-shapes{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden;}.float-cross{position:absolute;width:16px;height:16px;opacity:0.035;animation:crossFloat 20s ease-in-out infinite alternate;}.float-cross::before,.float-cross::after{content:'';position:absolute;background:var(--accent-1);border-radius:1px;}.float-cross::before{width:100%;height:2px;top:50%;transform:translateY(-50%);}.float-cross::after{width:2px;height:100%;left:50%;transform:translateX(-50%);}@keyframes crossFloat{0%{transform:rotate(0deg) translate(0,0);}100%{transform:rotate(180deg) translate(30px,-50px);}}

/* 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-glassmorphism-cards — Карточки с glass-эффектом */
.icon-box,.service-card{background:rgba(var(--bg-card-rgb,255,255,255),0.75) !important;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);border:1px solid rgba(255,255,255,0.18) !important;}.icon-box:hover,.service-card:hover{border-color:rgba(var(--accent-1-rgb,99,102,241),0.4) !important;background:rgba(var(--bg-card-rgb,255,255,255),0.88) !important;}

/* Effect: text-reveal-clip — Заголовки секций раскрываются снизу */
.section-title{overflow:hidden;}.section-title-inner{display:inline-block;transform:translateY(100%);opacity:0;transition:transform 0.8s cubic-bezier(0.16,1,0.3,1),opacity 0.8s ease;}.in-view .section-title-inner,.wow.animated .section-title-inner{transform:translateY(0);opacity:1;}

/* Effect: tex-gradient-mesh — Градиентная сетка — множество мягких цветных пятен */
/* Texture: gradient-mesh — мягкая градиентная сетка */
main > section:nth-child(3n+2) { position: relative; overflow: hidden; }
main > section:nth-child(3n+2)::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background:
        radial-gradient(ellipse at 15% 20%, var(--accent-1) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 30%, var(--accent-2, var(--accent-1)) 0%, transparent 45%),
        radial-gradient(ellipse at 40% 80%, var(--accent-1) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 70%, var(--accent-2, var(--accent-1)) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, var(--accent-1) 0%, transparent 60%);
}
.hero-section::before { display: none !important; }

/* Effect: tex-layered-waves — Многослойные SVG-волны на фоне — морские слои */
/* Texture: layered-waves — многослойные волны */
main > section:nth-child(even) { position: relative; overflow: hidden; }
main > section:nth-child(even)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 120px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='currentColor' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z'/%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
    animation: waveDrift 18s linear infinite;
}
@keyframes waveDrift {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.hero-section::after { display: none !important; }

/* ═══ 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.666;
    letter-spacing: 0.009em;
}

.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card {
    padding: 30px;
}
.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card .card-body {
    padding: 22px 20px;
}
.row > [class*="col"]:nth-child(1) .icon-box,
.row > [class*="col"]:nth-child(1) .service-card {
    padding: 29px;
    border-radius: calc(var(--radius-md) + -1px);
}
.row > [class*="col"]:nth-child(2) .icon-box,
.row > [class*="col"]:nth-child(2) .service-card {
    padding: 27px;
    border-radius: calc(var(--radius-md) + -2px);
}
.row > [class*="col"]:nth-child(3) .icon-box,
.row > [class*="col"]:nth-child(3) .service-card {
    padding: 28px;
    border-radius: calc(var(--radius-md) + -2px);
}
.row > [class*="col"]:nth-child(4) .icon-box,
.row > [class*="col"]:nth-child(4) .service-card {
    padding: 31px;
    border-radius: calc(var(--radius-md) + -1px);
}
.row > [class*="col"]:nth-child(5) .icon-box,
.row > [class*="col"]:nth-child(5) .service-card {
    padding: 32px;
    border-radius: calc(var(--radius-md) + 0px);
}
.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 27px;
    font-size: 16px;
    letter-spacing: 0.432px;
    border-radius: calc(var(--radius-md) + 1px);
}
.btn-outline-custom {
    padding: 12px 29px;
    border-width: 1px;
}

main > section {
    padding-top: 87px;
    padding-bottom: 85px;
}
main > section:first-child {
    padding-top: 93px;
}
main > section:nth-child(2) {
    padding-top: 93px;
    padding-bottom: 80px;
}
main > section:nth-child(4) {
    padding-top: 85px;
    padding-bottom: 83px;
}
main > section:nth-child(5) {
    padding-top: 85px;
    padding-bottom: 84px;
}

.section-header {
    margin-bottom: 53px;
}

.icon-box, .service-card, .blog-card, .pricing-card {
    box-shadow: 0px 2px 20px rgba(0,0,0,0.061);
}

.hero-section {
    padding-top: 120px;
}
.hero-title {
    margin-bottom: 21px;
}
.hero-subtitle {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.648;
}
.hero-tagline {
    font-size: 12px;
    letter-spacing: 3.418px;
    margin-bottom: 26px;
}
.hero-buttons {
    gap: 15px;
}

.hero-image img {
    border-radius: 14px;
    box-shadow: 0 17px 41px rgba(0,0,0,0.086);
}

.icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.icon-title, .card-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.icon-text, .card-text {
    font-size: 15px;
    line-height: 1.631;
}

.section-title {
    margin-bottom: 16px;
    letter-spacing: 0.055px;
}
.section-tagline {
    font-size: 14px;
    letter-spacing: 2.632px;
    margin-bottom: 12px;
}
.section-desc {
    font-size: 18px;
    line-height: 1.637;
}

@media (min-width: 993px) {
    .main-nav {
        gap: 30px;
    }
    .main-nav .nav-link {
        font-size: 14px;
        padding: 6px 0;
    }
}

.site-footer {
    padding-top: 65px;
}
.footer-widget .widget-title {
    font-size: 16px;
    margin-bottom: 23px;
}
.footer-links a {
    font-size: 13px;
}
.footer-links li {
    margin-bottom: 9px;
}
.footer-social {
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
}
.footer-bottom {
    padding: 22px 0;
    margin-top: 56px;
}

.form-control {
    border-radius: 5px;
    padding: 13px 14px;
    font-size: 16px;
}

.testimonial-card {
    padding: 27px;
}
.quote-text {
    font-size: 17px;
    line-height: 1.633;
    margin-bottom: 20px;
}
.author-image {
    width: 46px;
    height: 46px;
}
.author-name {
    font-size: 14px;
}
.author-role {
    font-size: 12px;
}

.pricing-card {
    padding: 40px;
}
.plan-name {
    font-size: 19px;
    margin-bottom: 11px;
}
.plan-price {
    font-size: 47px;
    margin-bottom: 23px;
}
.plan-features li {
    padding: 11px 0;
    font-size: 15px;
}

.counter-number, .stat-number {
    font-size: 44px;
    margin-bottom: 7px;
}
.counter-label {
    font-size: 15px;
    letter-spacing: 0.704px;
}

.team-image img {
    border-radius: 10px;
}
.team-name {
    font-size: 17px;
    margin-bottom: 5px;
}
.team-role {
    font-size: 12px;
}

.step-number {
    font-size: 27px;
    margin-bottom: 12px;
}
.step-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.wow {
    animation-duration: 0.581s !important;
}
.icon-box, .service-card, .blog-card, .testimonial-card,
.pricing-card, .team-card {
    transition-duration: 0.249s;
}

.row {
    --bs-gutter-y: 30px;
}

.cta-section {
    padding: 87px 0;
}
.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 16px;
    margin-bottom: 31px;
}

.blog-card .card-image img {
    border-radius: 10px 10px 0 0;
}
.card-meta {
    font-size: 14px;
    margin-bottom: 6px;
    gap: 10px;
}

.site-header {
    padding: 18px 0;
}
.site-header.scrolled {
    padding: 12px 0;
}
.site-logo {
    font-size: 21px;
}
.header-cta {
    margin-left: 17px;
}

/* --- internal markers --- */
:root {
    --_gen: 'dfb8b';
    --_stamp: '135f8';
    --_ref: 'd2d331a';
}
.ctx-mark { pointer-events: auto; font-variant: normal }
.ui-ghost { --_ref: 'd4dd'; --_stamp: 234 }
.render-flag { 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; }
