/* ═══ AUTO-GENERATED custom.css ═══ */
/* Стиль: углы=squircle, тени=none, отступы=compact, кнопки=asymmetric */

@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Raleway:wght@400;500;600&display=swap');

:root {
    /* Акцентные цвета */
    --accent-1: #3F12A9;
    --accent-2: #93186E;
    --accent-3: #0C55C0;
    --accent-gradient: linear-gradient(120deg, var(--accent-1), var(--accent-2));
    
    /* Шрифты */
    --font-heading: 'Cardo', serif;
    --font-body: 'Raleway', sans-serif;
    
    /* Размеры шрифтов */
    --fs-h1: 34px;
    --fs-h2: 24px;
    --fs-h3: 18px;
    --fs-body: 14px;
    
    /* Вес заголовков */
    --fw-bold: 700;
    
    /* Углы скругления */
    --radius-sm: 18px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 44px;
    --radius-pill: 50px;
    
    /* Тени */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-xl: none;
    
    /* Отступы секций */
    --section-padding: 60px 0;
}

/* Стиль кнопок */
.btn-custom {
    border-radius: 20px 4px 20px 4px;
    padding: 14px 32px;
}

/* Стиль карточек */
.icon-box, .service-card, .testimonial-card, .blog-card, .pricing-card {
    border-width: 1px;
    border-color: var(--border-color);
}

/* ═══════════════════════════════════════════ */
/* STYLE TRICKS — автогенерация приёмов      */
/* ═══════════════════════════════════════════ */

/* Trick: btn-slide-bg — скользящий фон слева */
.btn-primary-custom {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.12);
    transition: left 0.35s ease;
    z-index: -1;
}
.btn-primary-custom:hover::before {
    left: 0;
}

/* Trick: pricing-ribbon — ленточка на featured pricing */
.pricing-card.featured {
    overflow: hidden;
}
.pricing-card.featured::before {
    content: '★';
    position: absolute;
    top: 18px;
    right: -30px;
    width: 120px;
    text-align: center;
    padding: 4px 0;
    background: var(--accent-1);
    color: #fff;
    font-size: 12px;
    transform: rotate(45deg);
}

/* 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);
}

/* ═══════════════════════════════════════════ */
/* ELEMENT PRESETS — уникализация компонентов */
/* ═══════════════════════════════════════════ */

/* Hero: brutalist block — грубый стиль, жёсткие линии */
.hero-section { 
    background: var(--bg-primary);
    border-bottom: 4px solid var(--text-primary);
    min-height: auto;
    padding: 140px 0 80px;
}
.hero-image img {
    border-radius: 0;
    box-shadow: 8px 8px 0 var(--accent-1);
    border: 3px solid var(--text-primary);
}
.hero-title { font-weight: 900; text-transform: uppercase; letter-spacing: -2px; }
.hero-tagline { 
    background: var(--text-primary);
    color: var(--bg-primary) !important;
    padding: 6px 14px;
    border-radius: 0;
    font-weight: 800;
    text-transform: uppercase;
}
.hero-subtitle { font-size: 18px; max-width: 500px; }
.hero-buttons .btn-custom { border-radius: 0; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }

/* Header: solid bordered — чёткая нижняя граница */
.site-header {
    background: var(--bg-primary);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
}
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    backdrop-filter: none;
}

/* Footer: gradient top — градиентный переход сверху */
.site-footer {
    background: var(--footer-dark-bg);
    color: rgba(255,255,255,0.6);
    padding-top: 100px;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--footer-dark-bg));
}
.footer-widget .widget-title::after { width: 100%; height: 1px; opacity: 0.2; background: #fff; }
.footer-social a { border-radius: var(--radius-sm); }

/* 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: gradient text — градиентный текст */
.site-logo { font-size: 24px; font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Headings: numbered counter — нумерация заголовков */
.icon-box { counter-increment: card-counter; }
.icon-title::before {
    content: counter(card-counter, decimal-leading-zero) '.';
    display: block;
    color: var(--accent-1);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 6px;
    opacity: 0.6;
}
.services-section, .features-section { counter-reset: card-counter; }

/* Img: cards — скругление только сверху */
.service-card img, .icon-box img, .blog-card img, .portfolio-item img {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Img: team — яркая тень */
.team-card .team-image img, .team-image img {
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(var(--accent-1-rgb, 99,102,241), 0.25);
    transition: box-shadow 0.3s ease;
}
.team-card:hover .team-image img {
    box-shadow: 0 12px 40px rgba(var(--accent-1-rgb, 99,102,241), 0.4);
}

/* 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: circle — круглая кнопка */
.mobile-toggle { width: 44px; height: 44px; gap: 5px; border: 1.5px solid var(--border-color); background: var(--bg-secondary, transparent); border-radius: 50%; }
.mobile-toggle .burger-line { width: 18px; height: 2px; border-radius: 2px; transition: transform 0.35s ease, opacity 0.3s ease; }
.mobile-toggle:hover { background: var(--accent-1); border-color: var(--accent-1); }
.mobile-toggle:hover .burger-line { background: #fff; }
.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: scrollbar-dots */
.scroll-dots{position:fixed;right:20px;top:50%;transform:translateY(-50%);z-index:9990;display:flex;flex-direction:column;gap:12px;}.scroll-dots .dot{width:10px;height:10px;border-radius:50%;border:2px solid var(--accent-1);opacity:0.4;cursor:pointer;transition:all 0.3s;}.scroll-dots .dot.active{background:var(--accent-1);opacity:1;transform:scale(1.3);}@media(max-width:768px){.scroll-dots{display:none;}}

/* Effect: progress-percentage */
.progress-pct{position:fixed;bottom:20px;left:20px;width:36px;height:36px;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:700;color:var(--accent-1);background:var(--bg-card);border:1px solid var(--border-color);border-radius:50%;z-index:9990;opacity:0.6;font-family:var(--font-body);}@media(max-width:768px){.progress-pct{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-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-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-gradient-blobs */
.bg-deco{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden;}.bg-deco span{position:absolute;border-radius:50%;filter:blur(60px);opacity:0.03;animation:decoBlob 22s ease-in-out infinite alternate;}@keyframes decoBlob{0%{transform:translate(0,0) scale(1);}50%{transform:translate(30px,-40px) scale(1.15);}100%{transform:translate(-20px,30px) scale(0.9);}}

/* Effect: scroll-cascade-fall — Cascade Fall — секции падают сверху с лёгким отскоком */
/* Scroll: cascade-fall — секции падают с bounce */
main > section {
    opacity: 0;
    transform: translateY(-120px) scale(0.95);
    animation: none;
}
main > section.in-view {
    animation: cascadeDrop 0.9s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.hero-section { opacity: 1 !important; transform: none !important; animation: none !important; }
@keyframes cascadeDrop {
    0% { opacity: 0; transform: translateY(-120px) scale(0.95); }
    60% { opacity: 1; transform: translateY(10px) scale(1.01); }
    80% { transform: translateY(-5px) scale(0.995); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 768px) {
    @keyframes cascadeDrop {
        0% { opacity: 0; transform: translateY(-60px); }
        100% { opacity: 1; transform: translateY(0); }
    }
}

/* Effect: hover-card-lift-shadow — Карточки взлетают вверх с глубокой тенью */
.icon-box,.service-card,.blog-card,.testimonial-card,.pricing-card{transition:transform 0.35s ease,box-shadow 0.35s ease;}.icon-box:hover,.service-card:hover,.blog-card:hover,.testimonial-card:hover,.pricing-card:hover{transform:translateY(-10px);box-shadow:0 20px 50px rgba(0,0,0,0.12) !important;}

/* 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,.service-card:hover .card-title,.service-card:hover .card-text{color:#fff !important;}.icon-box:hover .icon-wrap{background:rgba(255,255,255,0.15) !important;color:#fff !important;}

/* 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: spin-gradient-circle — Градиентный полукруг медленно вращается */
.spin-gradient{position:fixed;width:500px;height:500px;border-radius:50%;background:conic-gradient(from 0deg,var(--accent-1),transparent 120deg,transparent);opacity:0.025;animation:spinSlow 30s linear infinite;pointer-events:none;z-index:0;top:-150px;right:-150px;}@keyframes spinSlow{to{transform:rotate(360deg);}}@media(max-width:768px){.spin-gradient{width:300px;height:300px;}}

/* 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: text-fade-up-words — Слова в hero-описании появляются по одному */
.word-reveal{display:inline-block;opacity:0;transform:translateY(20px);transition:opacity 0.4s ease,transform 0.4s ease;}.word-reveal.visible{opacity:1;transform:translateY(0);}

/* Effect: marquee-reverse-double — Двойная лента — вторая в обратном направлении */
.js-marquee-wrap{overflow:hidden;padding:20px 0;border-top:1px solid var(--border-color);border-bottom:1px solid var(--border-color);display:flex;flex-direction:column;gap:8px;}.js-mq-row{display:flex;gap:40px;white-space:nowrap;font-size:clamp(20px,3vw,38px);font-weight:var(--fw-bold);text-transform:uppercase;letter-spacing:0.02em;opacity:0.12;}.js-mq-row span{flex-shrink:0;}.js-mq-row.fwd{animation:jsMarquee 30s linear infinite;}.js-mq-row.rev{animation:jsMarqueeRev 30s linear infinite;}@keyframes jsMarquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}@keyframes jsMarqueeRev{from{transform:translateX(-50%);}to{transform:translateX(0);}}

/* Effect: tex-paper-grain — Текстура бумаги / зернистость — SVG feTurbulence */
/* Texture: paper-grain — зернистость бумаги */
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.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}
.hero-section::before { 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.639;
    letter-spacing: 0.006em;
}

.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card {
    padding: 31px;
}
.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card .card-body {
    padding: 26px 16px;
}
.row > [class*="col"]:nth-child(1) .icon-box,
.row > [class*="col"]:nth-child(1) .service-card {
    padding: 29px;
    border-radius: calc(var(--radius-md) + 0px);
}
.row > [class*="col"]:nth-child(2) .icon-box,
.row > [class*="col"]:nth-child(2) .service-card {
    padding: 34px;
    border-radius: calc(var(--radius-md) + 1px);
}
.row > [class*="col"]:nth-child(3) .icon-box,
.row > [class*="col"]:nth-child(3) .service-card {
    padding: 32px;
    border-radius: calc(var(--radius-md) + -1px);
}
.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: 29px;
    border-radius: calc(var(--radius-md) + -2px);
}
.row > [class*="col"]:nth-child(6) .icon-box,
.row > [class*="col"]:nth-child(6) .service-card {
    padding: 33px;
    border-radius: calc(var(--radius-md) + 3px);
}

.btn-custom {
    padding: 12px 26px;
    font-size: 16px;
    letter-spacing: 0.44px;
    border-radius: calc(var(--radius-md) + 2px);
}
.btn-outline-custom {
    padding: 11px 26px;
    border-width: 1px;
}

main > section {
    padding-top: 72px;
    padding-bottom: 75px;
}
main > section:first-child {
    padding-top: 86px;
}
main > section:nth-child(3) {
    padding-top: 68px;
    padding-bottom: 71px;
}
main > section:nth-child(6) {
    padding-top: 75px;
    padding-bottom: 78px;
}

.section-header {
    margin-bottom: 55px;
}

.icon-box, .service-card, .blog-card, .pricing-card {
    box-shadow: 2px 3px 13px rgba(0,0,0,0.081);
}

.hero-section {
    padding-top: 121px;
}
.hero-title {
    margin-bottom: 28px;
}
.hero-subtitle {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 1.574;
}
.hero-tagline {
    font-size: 13px;
    letter-spacing: 3.05px;
    margin-bottom: 26px;
}
.hero-buttons {
    gap: 16px;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.089);
}

.icon-wrap {
    width: 49px;
    height: 49px;
    font-size: 21px;
    border-radius: 8px;
    margin-bottom: 17px;
}

.icon-title, .card-title {
    font-size: 19px;
    margin-bottom: 8px;
}
.icon-text, .card-text {
    font-size: 14px;
    line-height: 1.577;
}

.section-title {
    margin-bottom: 15px;
    letter-spacing: 0.0px;
}
.section-tagline {
    font-size: 12px;
    letter-spacing: 2.437px;
    margin-bottom: 11px;
}
.section-desc {
    font-size: 17px;
    line-height: 1.617;
}

@media (min-width: 993px) {
    .main-nav {
        gap: 33px;
    }
    .main-nav .nav-link {
        font-size: 13px;
        padding: 10px 0;
    }
}

.site-footer {
    padding-top: 78px;
}
.footer-widget .widget-title {
    font-size: 17px;
    margin-bottom: 19px;
}
.footer-links a {
    font-size: 14px;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-social {
    gap: 9px;
}
.footer-social a {
    width: 38px;
    height: 38px;
}
.footer-bottom {
    padding: 23px 0;
    margin-top: 45px;
}

.form-control {
    border-radius: 7px;
    padding: 13px 14px;
    font-size: 14px;
}

.testimonial-card {
    padding: 29px;
}
.quote-text {
    font-size: 18px;
    line-height: 1.699;
    margin-bottom: 19px;
}
.author-image {
    width: 49px;
    height: 49px;
}
.author-name {
    font-size: 16px;
}
.author-role {
    font-size: 12px;
}

.pricing-card {
    padding: 34px;
}
.plan-name {
    font-size: 18px;
    margin-bottom: 11px;
}
.plan-price {
    font-size: 47px;
    margin-bottom: 20px;
}
.plan-features li {
    padding: 12px 0;
    font-size: 15px;
}

.counter-number, .stat-number {
    font-size: 43px;
    margin-bottom: 7px;
}
.counter-label {
    font-size: 15px;
    letter-spacing: 0.728px;
}

.team-image img {
    border-radius: 16px;
}
.team-name {
    font-size: 19px;
    margin-bottom: 5px;
}
.team-role {
    font-size: 14px;
}

.step-number {
    font-size: 32px;
    margin-bottom: 11px;
}
.step-title {
    font-size: 18px;
    margin-bottom: 7px;
}

.wow {
    animation-duration: 0.661s !important;
}
.icon-box, .service-card, .blog-card, .testimonial-card,
.pricing-card, .team-card {
    transition-duration: 0.27s;
}

.row {
    --bs-gutter-y: 25px;
}

.cta-section {
    padding: 70px 0;
}
.cta-title {
    font-size: 33px;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 16px;
    margin-bottom: 27px;
}

.blog-card .card-image img {
    border-radius: 8px 8px 0 0;
}
.card-meta {
    font-size: 12px;
    margin-bottom: 9px;
    gap: 9px;
}

.site-header {
    padding: 17px 0;
}
.site-header.scrolled {
    padding: 14px 0;
}
.site-logo {
    font-size: 21px;
}
.header-cta {
    margin-left: 15px;
}

/* --- internal markers --- */
:root {
    --_gen: 28099;
    --_ref: 'f4974cb';
    --_run: 'e27c83';
    --_tag: 42863;
}
.sr-only-fx { content: ''; --_ref: '9c'; --_stamp: 434 }
.grid-debug { vertical-align: baseline; font-variant: normal }
.ui-ghost { box-sizing: border-box; outline: 0 solid transparent; font-style: inherit }
.ctx-mark { --_stamp: 827 }


/* ═══════════════════════════════════════════════════════ */
/* 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: #b0aca0 !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; }
