/* ═══ AUTO-GENERATED custom.css ═══ */
/* Стиль: углы=round, тени=subtle, отступы=airy, кнопки=square */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Open+Sans:wght@400;500&display=swap');

:root {
    /* Акцентные цвета */
    --accent-1: #3ABF0E;
    --accent-2: #BA37E6;
    --accent-3: #1399C5;
    --accent-gradient: linear-gradient(to bottom right, var(--accent-1), var(--accent-2));
    
    /* Шрифты */
    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Размеры шрифтов */
    --fs-h1: 64px;
    --fs-h2: 44px;
    --fs-h3: 30px;
    --fs-body: 18px;
    
    /* Вес заголовков */
    --fw-bold: 800;
    
    /* Углы скругления */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 50px;
    
    /* Тени */
    --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: 120px 0;
}

/* Стиль кнопок */
.btn-custom {
    border-radius: 2px;
    padding: 14px 28px;
}

/* Стиль карточек */
.icon-box, .service-card, .testimonial-card, .blog-card, .pricing-card {
    border-width: 1px;
    border-color: var(--border-color);
}

/* ═══════════════════════════════════════════ */
/* STYLE TRICKS — автогенерация приёмов      */
/* ═══════════════════════════════════════════ */

/* 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: image-duotone — дуотон-наложение */
.portfolio-item, .team-image {
    position: relative;
}
.portfolio-item::before, .team-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-1);
    mix-blend-mode: color;
    opacity: 0.35;
    z-index: 1;
    transition: opacity 0.4s;
    pointer-events: none;
}
.portfolio-item:hover::before, .team-card:hover .team-image::before {
    opacity: 0;
}

/* Trick: arch-section-top — арка сверху секции */
.bg-secondary-custom {
    position: relative;
    margin-top: 30px;
}
.bg-secondary-custom::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 60px;
    background: inherit;
    border-radius: 50% 50% 0 0;
}

/* ═══════════════════════════════════════════ */
/* ELEMENT PRESETS — уникализация компонентов */
/* ═══════════════════════════════════════════ */

/* Hero: side image bleed — картинка выходит за границы */
.hero-section { overflow: visible; padding-bottom: 80px; }
.hero-image {
    margin-right: -60px;
    position: relative;
}
.hero-image img {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    box-shadow: -10px 10px 40px rgba(0,0,0,0.12);
    max-height: 520px;
    object-fit: cover;
    width: 100%;
}
.hero-title span, .hero-title strong { color: var(--accent-1); }
.hero-tagline { background: none; padding: 0; font-weight: 700; letter-spacing: 5px; }

/* Header: split accent — акцентная CTA-кнопка выделена */
.site-header { background: var(--bg-primary); padding: 0; }
.site-header .header-inner { padding: 16px 0; }
.header-cta {
    background: var(--accent-1) !important;
    color: #fff !important;
    padding: 12px 28px !important;
    border-radius: var(--radius-sm) !important;
    margin-left: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.main-nav { gap: 28px; }
.main-nav .nav-link { font-size: 14px; }

/* Footer: bordered grid — сетка с рамками */
.site-footer {
    background: var(--bg-primary);
    color: var(--text-secondary);
    padding-top: 0;
    border-top: 1px solid var(--border-color);
}
.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 .row > [class*="col-"] { padding: 40px 24px; border-right: 1px solid var(--border-color); }
.site-footer .row > [class*="col-"]:last-child { border-right: none; }
.footer-widget .widget-title { color: var(--text-primary); text-transform: uppercase; font-size: 12px; letter-spacing: 2px; }
.footer-widget .widget-title::after { display: none; }
.footer-links a { color: var(--text-secondary); font-size: 13px; }
.footer-links a:hover { color: var(--accent-1); }
.footer-social a { background: var(--bg-secondary); border-color: var(--border-color); color: var(--text-secondary); border-radius: 0; }
.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: 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: light wide — тонкий широкий */
.site-logo { font-size: 18px; font-weight: 300; text-transform: uppercase; letter-spacing: 8px; }

/* Headings: thin light — тонкие лёгкие */
h3, h4, h5 { font-weight: 400; color: var(--text-primary); }
.icon-title, .card-title { font-weight: 400; font-size: 20px; letter-spacing: 0.5px; }
.step-title { font-weight: 400; }

/* Img: hero — лёгкий наклон с тенью */
.hero-image {
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}
.hero-image:hover {
    transform: rotate(0deg);
}
.hero-image img {
    border-radius: var(--radius-md);
    box-shadow: 12px 12px 0 var(--accent-1);
}

/* Img: section — лёгкий скос контейнера */
section:not(.hero-section) .col-lg-6 img, section:not(.hero-section) .col-lg-5 img {
    border-radius: var(--radius-lg);
    transform: perspective(800px) rotateY(-4deg);
    transition: transform 0.5s ease;
    box-shadow: var(--shadow-lg);
}
section:not(.hero-section) .col-lg-6:hover img,
section:not(.hero-section) .col-lg-5:hover img {
    transform: perspective(800px) rotateY(0deg);
}

/* ═══ BURGER MENU DESIGN ═══ */
/* Burger: pill — капсульная форма кнопки */
.mobile-toggle { width: 52px; height: 36px; gap: 4px; border: none; background: var(--bg-secondary, rgba(0,0,0,0.05)); border-radius: 20px; }
.mobile-toggle .burger-line { width: 20px; height: 2px; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.mobile-toggle:hover { background: var(--accent-1); }
.mobile-toggle:hover .burger-line { background: #fff; }
.mobile-toggle.active .burger-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.active .burger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .burger-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }


/* Effect: divider-wave */
main > section + section::before{content:'\223F  \223F  \223F';display:block;text-align:center;color:var(--accent-1);opacity:0.2;font-size:16px;letter-spacing:4px;padding:10px 0;}

/* 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: marquee-text */
.marquee-strip{overflow:hidden;padding:14px 0;background:var(--bg-secondary,var(--bg-card));border-top:1px solid var(--border-color);border-bottom:1px solid var(--border-color);}.marquee-inner{display:flex;gap:60px;white-space:nowrap;animation:marqueeScroll 20s linear infinite;font-size:14px;text-transform:uppercase;letter-spacing:3px;opacity:0.3;font-weight:600;}@keyframes marqueeScroll{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* 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: deco-floating-circles */
.bg-deco{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden;}.bg-deco span{position:absolute;border-radius:50%;border:1px solid var(--accent-1);opacity:0.04;animation:decoFloat 18s ease-in-out infinite alternate;}@keyframes decoFloat{0%{transform:translateY(0) rotate(0deg);}100%{transform:translateY(-60px) rotate(45deg);}}

/* 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-shine — Блик-полоса бежит по карточке при наведении */
.icon-box,.service-card,.blog-card,.pricing-card{position:relative;overflow:hidden;}.icon-box::before,.service-card::before,.blog-card::before,.pricing-card::before{content:'';position:absolute;top:-50%;left:-75%;width:50%;height:200%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.12),transparent);transform:skewX(-15deg);transition:left 0.6s ease;pointer-events:none;z-index:10;}.icon-box:hover::before,.service-card:hover::before,.blog-card:hover::before,.pricing-card:hover::before{left:125%;}

/* 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-scroll-hint — Анимированная стрелка «скролль вниз» в hero */
.scroll-hint{position:absolute;bottom:30px;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:6px;opacity:0.5;animation:scrollHintBounce 2s ease-in-out infinite;z-index:10;}.scroll-hint span{display:block;width:24px;height:24px;border-right:2px solid var(--text-primary);border-bottom:2px solid var(--text-primary);transform:rotate(45deg);}@keyframes scrollHintBounce{0%,100%{transform:translateX(-50%) translateY(0);opacity:0.5;}50%{transform:translateX(-50%) translateY(12px);opacity:1;}}

/* 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: 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;}}

/* Effect: tex-woven-mesh — Плетёная сетка — переплетение полос */
/* Texture: woven-mesh — плетёная сетка */
main > section:nth-child(3n+1):not(:first-child) { position: relative; overflow: hidden; }
main > section:nth-child(3n+1):not(:first-child)::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.02;
    background-image:
        linear-gradient(0deg, var(--accent-1) 2px, transparent 2px),
        linear-gradient(90deg, var(--accent-1) 2px, transparent 2px);
    background-size: 20px 20px;
    mask-image:
        linear-gradient(45deg, rgba(0,0,0,1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,1) 75%);
    -webkit-mask-image:
        linear-gradient(45deg, rgba(0,0,0,1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,1) 75%);
    mask-size: 20px 20px;
    -webkit-mask-size: 20px 20px;
}
.hero-section::before { display: none !important; }

/* Effect: tex-corner-ornament — Угловые декоративные виньетки — gradient в углах */
/* Texture: corner-ornament — виньетки в углах */
main > section:nth-child(even) { position: relative; overflow: hidden; }
main > section:nth-child(even)::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background:
        radial-gradient(ellipse at 0% 0%, var(--accent-1) 0%, transparent 30%),
        radial-gradient(ellipse at 100% 100%, var(--accent-2, var(--accent-1)) 0%, transparent 30%);
}
main > section:nth-child(even)::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background:
        radial-gradient(ellipse at 100% 0%, var(--accent-1) 0%, transparent 25%),
        radial-gradient(ellipse at 0% 100%, var(--accent-2, var(--accent-1)) 0%, transparent 25%);
}
.hero-section::before, .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.66;
    letter-spacing: 0.007em;
}

.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card {
    padding: 27px;
}
.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card .card-body {
    padding: 22px 16px;
}
.row > [class*="col"]:nth-child(1) .icon-box,
.row > [class*="col"]:nth-child(1) .service-card {
    padding: 25px;
    border-radius: calc(var(--radius-md) + -2px);
}
.row > [class*="col"]:nth-child(2) .icon-box,
.row > [class*="col"]:nth-child(2) .service-card {
    padding: 28px;
    border-radius: calc(var(--radius-md) + -1px);
}
.row > [class*="col"]:nth-child(3) .icon-box,
.row > [class*="col"]:nth-child(3) .service-card {
    padding: 25px;
    border-radius: calc(var(--radius-md) + -1px);
}
.row > [class*="col"]:nth-child(4) .icon-box,
.row > [class*="col"]:nth-child(4) .service-card {
    padding: 27px;
    border-radius: calc(var(--radius-md) + 3px);
}
.row > [class*="col"]:nth-child(5) .icon-box,
.row > [class*="col"]:nth-child(5) .service-card {
    padding: 27px;
    border-radius: calc(var(--radius-md) + -2px);
}
.row > [class*="col"]:nth-child(6) .icon-box,
.row > [class*="col"]:nth-child(6) .service-card {
    padding: 25px;
    border-radius: calc(var(--radius-md) + -1px);
}

.btn-custom {
    padding: 13px 26px;
    font-size: 15px;
    letter-spacing: 0.204px;
    border-radius: calc(var(--radius-md) + -1px);
}
.btn-outline-custom {
    padding: 13px 28px;
    border-width: 1px;
}

main > section {
    padding-top: 85px;
    padding-bottom: 80px;
}
main > section:first-child {
    padding-top: 99px;
}
main > section:nth-child(4) {
    padding-top: 91px;
    padding-bottom: 77px;
}

.section-header {
    margin-bottom: 54px;
}

.icon-box, .service-card, .blog-card, .pricing-card {
    box-shadow: 2px 6px 14px rgba(0,0,0,0.052);
}

.hero-section {
    padding-top: 115px;
}
.hero-title {
    margin-bottom: 25px;
}
.hero-subtitle {
    margin-bottom: 38px;
    font-size: 16px;
    line-height: 1.545;
}
.hero-tagline {
    font-size: 12px;
    letter-spacing: 2.379px;
    margin-bottom: 22px;
}
.hero-buttons {
    gap: 16px;
}

.hero-image img {
    border-radius: 7px;
    box-shadow: 0 11px 37px rgba(0,0,0,0.136);
}

.icon-wrap {
    width: 57px;
    height: 57px;
    font-size: 21px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.icon-title, .card-title {
    font-size: 20px;
    margin-bottom: 8px;
}
.icon-text, .card-text {
    font-size: 16px;
    line-height: 1.62;
}

.section-title {
    margin-bottom: 14px;
    letter-spacing: 0.0px;
}
.section-tagline {
    font-size: 12px;
    letter-spacing: 3.794px;
    margin-bottom: 14px;
}
.section-desc {
    font-size: 16px;
    line-height: 1.625;
}

@media (min-width: 993px) {
    .main-nav {
        gap: 31px;
    }
    .main-nav .nav-link {
        font-size: 15px;
        padding: 7px 0;
    }
}

.site-footer {
    padding-top: 80px;
}
.footer-widget .widget-title {
    font-size: 16px;
    margin-bottom: 22px;
}
.footer-links a {
    font-size: 14px;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-social {
    gap: 11px;
}
.footer-social a {
    width: 39px;
    height: 39px;
}
.footer-bottom {
    padding: 19px 0;
    margin-top: 52px;
}

.form-control {
    border-radius: 9px;
    padding: 15px 15px;
    font-size: 16px;
}

.testimonial-card {
    padding: 33px;
}
.quote-text {
    font-size: 16px;
    line-height: 1.667;
    margin-bottom: 18px;
}
.author-image {
    width: 45px;
    height: 45px;
}
.author-name {
    font-size: 15px;
}
.author-role {
    font-size: 12px;
}

.pricing-card {
    padding: 35px;
}
.plan-name {
    font-size: 22px;
    margin-bottom: 9px;
}
.plan-price {
    font-size: 45px;
    margin-bottom: 19px;
}
.plan-features li {
    padding: 9px 0;
    font-size: 15px;
}

.counter-number, .stat-number {
    font-size: 40px;
    margin-bottom: 9px;
}
.counter-label {
    font-size: 14px;
    letter-spacing: 0.266px;
}

.team-image img {
    border-radius: 11px;
}
.team-name {
    font-size: 18px;
    margin-bottom: 4px;
}
.team-role {
    font-size: 14px;
}

.step-number {
    font-size: 35px;
    margin-bottom: 10px;
}
.step-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.wow {
    animation-duration: 0.685s !important;
}
.icon-box, .service-card, .blog-card, .testimonial-card,
.pricing-card, .team-card {
    transition-duration: 0.258s;
}

.row {
    --bs-gutter-y: 27px;
}

.cta-section {
    padding: 77px 0;
}
.cta-title {
    font-size: 33px;
    margin-bottom: 15px;
}
.cta-text {
    font-size: 18px;
    margin-bottom: 29px;
}

.blog-card .card-image img {
    border-radius: 13px 13px 0 0;
}
.card-meta {
    font-size: 13px;
    margin-bottom: 8px;
    gap: 10px;
}

.site-header {
    padding: 15px 0;
}
.site-header.scrolled {
    padding: 13px 0;
}
.site-logo {
    font-size: 24px;
}
.header-cta {
    margin-left: 12px;
}

/* --- internal markers --- */
:root {
    --_flag: 2.29;
    --_ver: 4.4;
    --_key: 'f71bbf';
    --_idx: 71821;
    --_rev: 'c9da774';
}
.base-ref { vertical-align: baseline; --_stamp: 211; unicode-bidi: normal }
.page-ref { outline: 0 solid transparent; --_stamp: 875; font-variant: normal }
.build-stamp { --_ref: 'be7'; visibility: inherit }
.init-marker { outline: 0 solid transparent; pointer-events: auto; font-style: inherit }
.grid-debug { display: inherit }


/* ═══════════════════════════════════════════════════════ */
/* 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; }
