/* ═══ AUTO-GENERATED custom.css ═══ */
/* Стиль: углы=soft, тени=strong, отступы=normal, кнопки=asymmetric */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Open+Sans:wght@400;500&display=swap');

:root {
    /* Акцентные цвета */
    --accent-1: #7FD040;
    --accent-2: #7426AF;
    --accent-3: #27A1A9;
    --accent-gradient: linear-gradient(120deg, var(--accent-1), var(--accent-2));
    
    /* Шрифты */
    --font-heading: 'Baloo 2', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Размеры шрифтов */
    --fs-h1: 84px;
    --fs-h2: 52px;
    --fs-h3: 36px;
    --fs-body: 18px;
    
    /* Вес заголовков */
    --fw-bold: 900;
    
    /* Углы скругления */
    --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: 80px 0;
}

/* Стиль кнопок */
.btn-custom {
    border-radius: 20px 4px 20px 4px;
    padding: 14px 32px;
}

/* Стиль карточек */
.icon-box, .service-card, .testimonial-card, .blog-card, .pricing-card {
    border-width: 0px;
    border-color: transparent;
}

/* ═══════════════════════════════════════════ */
/* STYLE TRICKS — автогенерация приёмов      */
/* ═══════════════════════════════════════════ */

/* 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;
}

/* Trick: gradient-headings — градиентные заголовки */
.section-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Trick: card-scale-hover — масштаб при наведении */
.icon-box, .service-card, .blog-card, .pricing-card, .testimonial-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.icon-box:hover, .service-card:hover, .blog-card:hover, .pricing-card:hover, .testimonial-card:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-xl);
    z-index: 2;
    position: relative;
}

/* Trick: btn-lift-border — сдвиг вверх + смена рамки */
.btn-custom {
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.btn-outline-custom:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
}

/* Trick: striped-section-bg — диагональные полосы */
.bg-secondary-custom {
    background-image: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 40px,
        var(--accent-1) 40px,
        var(--accent-1) 41px
    );
    background-blend-mode: overlay;
}

/* Trick: image-zoom-hover — увеличение при hover */
.card-image, .portfolio-item, .team-image {
    overflow: hidden;
}
.card-image img, .portfolio-item img, .team-image img {
    transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
}
.card-image:hover img, .portfolio-item:hover img, .team-card:hover .team-image img {
    transform: scale(1.08);
}

/* ═══════════════════════════════════════════ */
/* ELEMENT PRESETS — уникализация компонентов */
/* ═══════════════════════════════════════════ */

/* Hero: framed image — картинка в декоративной рамке */
.hero-image { position: relative; padding: 20px; }
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--accent-1);
    border-radius: var(--radius-lg);
    transform: translate(12px, 12px);
    opacity: 0.3;
}
.hero-image img {
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
}
.hero-title { letter-spacing: -1px; }
.hero-buttons .btn-custom:first-child { min-width: 200px; text-align: center; }

/* Header: transparent blur — прозрачный с блюром */
.site-header { background: transparent; padding: 20px 0; }
.site-header.scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-color);
    padding: 14px 0;
}

/* Footer: brutalist — грубый стиль */
.site-footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding-top: 60px;
    border-top: 4px solid var(--text-primary);
}
.site-footer p, .site-footer li, .site-footer span,
.site-footer .footer-widget p, .site-footer .footer-contact li { color: rgba(255,255,255,0.95) !important; }
.site-footer a:not(.btn-custom) { color: rgba(255,255,255,0.95) !important; }
.site-footer a:not(.btn-custom):hover { color: var(--accent-1); }
.site-footer h1,.site-footer h2,.site-footer h3,.site-footer h4,.site-footer h5 { color: var(--text-primary); }
.footer-widget .widget-title { text-transform: uppercase; font-weight: 900; letter-spacing: 2px; border-bottom: 2px solid var(--text-primary); padding-bottom: 10px; }
.footer-widget .widget-title::after { display: none; }
.footer-links a { color: rgba(255,255,255,0.95) !important; font-weight: 600; text-transform: uppercase; font-size: 12px; }
.footer-links a:hover { color: var(--accent-1); padding-left: 10px; }
.footer-social a { border-radius: 0; background: var(--text-primary); color: var(--bg-primary); border: none; }
.footer-social a:hover { background: var(--accent-1); }
.footer-bottom { border-top: 2px solid var(--text-primary); }
.footer-bottom p { color: var(--text-secondary); }

/* 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: monospace — моноширинный технический */
.site-logo { font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace; font-size: 18px; font-weight: 500; letter-spacing: -0.5px; }

/* Headings: gradient text — градиентные заголовки */
.icon-title, .card-title, .section-title {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
/* Safety: disable gradient-text inside footer/header */
.site-footer .icon-title, .site-footer .card-title, .site-footer .section-title,
.site-header .icon-title, .site-header .card-title, .site-header .section-title {
    -webkit-text-fill-color: initial;
    background: none;
}

/* 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: color shift — линии меняют цвет через transition */
.mobile-toggle { width: 40px; height: 40px; gap: 6px; border: none; background: none; border-radius: 0; }
.mobile-toggle .burger-line { width: 24px; height: 2px; border-radius: 2px; background: var(--text-primary); transition: transform 0.35s ease, opacity 0.3s ease, background 0.35s ease; }
.mobile-toggle:hover .burger-line { background: var(--accent-1); }
.mobile-toggle.active .burger-line { background: var(--accent-1); }
.mobile-toggle.active .burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active .burger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* Effect: divider-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: 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-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-slide-left */
.icon-box,.service-card{opacity:0;animation:slideLeft 0.6s ease forwards;}.row>[class*="col"]:nth-child(odd) .icon-box,.row>[class*="col"]:nth-child(odd) .service-card{animation-name:slideLeft;}.row>[class*="col"]:nth-child(even) .icon-box,.row>[class*="col"]:nth-child(even) .service-card{animation-name:slideRight;}.row>[class*="col"]:nth-child(1)>*{animation-delay:0.1s;}.row>[class*="col"]:nth-child(2)>*{animation-delay:0.2s;}.row>[class*="col"]:nth-child(3)>*{animation-delay:0.3s;}.row>[class*="col"]:nth-child(4)>*{animation-delay:0.4s;}@keyframes slideLeft{from{opacity:0;transform:translateX(-40px);}to{opacity:1;transform:translateX(0);}}@keyframes slideRight{from{opacity:0;transform:translateX(40px);}to{opacity:1;transform:translateX(0);}}

/* Effect: deco-rotating-ring */
.bg-deco{position:fixed;pointer-events:none;z-index:0;}.bg-deco .ring{position:fixed;border:1px solid var(--accent-1);border-radius:50%;opacity:0.03;animation:decoSpin 40s linear infinite;}.bg-deco .ring:nth-child(2){animation-direction:reverse;animation-duration:55s;}@keyframes decoSpin{to{transform:rotate(360deg);}}

/* Effect: scroll-horizontal-slide — Horizontal slide — секции прилетают сбоку по очереди */
/* Scroll: horizontal-slide — секции скользят сбоку */
main > section {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
main > section:nth-child(odd):not(.cta-section):not(.bg-dark-section) { transform: translateX(-80px); }
main > section:nth-child(even):not(.cta-section):not(.bg-dark-section) { transform: translateX(80px); }
main > section.in-view {
    opacity: 1;
    transform: translateX(0);
}
.hero-section { opacity: 1 !important; transform: none !important; }
@media (max-width: 768px) {
    main > section:nth-child(odd):not(.cta-section):not(.bg-dark-section),
    main > section:nth-child(even):not(.cta-section):not(.bg-dark-section) { transform: translateY(40px); }
}

/* Effect: hover-card-tilt-3d — Карточки слегка поворачиваются в 3D при наведении */
.icon-box,.service-card,.blog-card,.testimonial-card,.pricing-card{transition:transform 0.4s ease,box-shadow 0.4s ease;transform-style:preserve-3d;will-change:transform;}

/* Effect: hover-btn-magnetic — Кнопки магнитно притягиваются к курсору */
.btn-custom,.btn-primary-custom{transition:transform 0.25s cubic-bezier(0.23,1,0.32,1);}

/* 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-hero-cta — CTA-кнопка в hero мягко пульсирует */
@keyframes pulseGlow{0%,100%{box-shadow:0 0 0 0 rgba(var(--accent-1-rgb,99,102,241),0.45);}70%{box-shadow:0 0 0 14px rgba(var(--accent-1-rgb,99,102,241),0);}}
.hero-section .btn-primary-custom,.hero-section .btn-custom{animation:pulseGlow 2.5s ease-in-out infinite;}

/* 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: marquee-brand-strip — Брендовая бегущая строка после hero */
.js-marquee{overflow:hidden;padding:18px 0;border-top:1px solid var(--border-color);border-bottom:1px solid var(--border-color);}.js-marquee-inner{display:flex;gap:50px;white-space:nowrap;animation:jsMarquee 25s linear infinite;}.js-marquee-inner span{font-size:clamp(28px,4vw,52px);font-weight:var(--fw-bold);text-transform:uppercase;letter-spacing:-0.01em;opacity:0.15;flex-shrink:0;}.js-marquee-inner span:nth-child(even){-webkit-text-stroke:1px var(--text-primary);-webkit-text-fill-color:transparent;}@keyframes jsMarquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* Effect: tex-layered-waves — Многослойные SVG-волны на фоне — морские слои */
/* Texture: layered-waves — многослойные волны */
main > section:nth-child(even):not(.cta-section):not(.bg-dark-section) { position: relative; overflow: clip; }
main > section:nth-child(even):not(.cta-section):not(.bg-dark-section)::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; }

/* Fallback: без JS секции видимы сразу */
html:not(.js-fx) main > section {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
}

/* ═══ DESKTOP NAV OVERFLOW SAFETY-NET ═══ */
/* Не даём nav-ссылкам переполнять хедер при большом числе вкладок */
@media (min-width: 993px) {
    .header-inner {
        flex-wrap: nowrap;
        overflow: visible;
    }
    .main-nav {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
        flex-wrap: nowrap;
        overflow: hidden;
        gap: clamp(10px, 1.8vw, 36px) !important;
    }
    .main-nav .nav-link {
        white-space: nowrap;
        font-size: clamp(11px, 1.1vw, 15px) !important;
        padding: 8px 0;
        flex-shrink: 0;
    }
    /* Centered-logo split groups — адаптивный gap */
    .nav-group-left, .nav-group-right {
        gap: clamp(8px, 1.4vw, 32px) !important;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    .nav-group-left .nav-link,
    .nav-group-right .nav-link {
        white-space: nowrap;
        font-size: clamp(11px, 1.1vw, 15px) !important;
        flex-shrink: 0;
    }
    /* CTA-кнопка не сжимается */
    .header-cta {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .site-logo {
        flex-shrink: 0;
    }
}

/* ═══ TWO-LAYER HEADER FIX ═══ */
/* Вариант "Nav with Top Bar" — фиксируем top-bar (div) над хедером.
   Используем div.bg-secondary-custom (не section!) чтобы не зацепить секции. */
div.bg-secondary-custom:not(.section-padding) {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 6px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
div.bg-secondary-custom:not(.section-padding) + .site-header {
    top: 33px;
    transition: top 0.3s ease, background 0.3s ease, padding 0.3s ease;
}
/* При скролле: top-bar скрывается, header прижимается к верху */
div.bg-secondary-custom.top-bar-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
div.bg-secondary-custom.top-bar-hidden + .site-header,
div.bg-secondary-custom:not(.section-padding) + .site-header.scrolled {
    top: 0;
}
/* Компенсируем дополнительную высоту top-bar для hero */
div.bg-secondary-custom:not(.section-padding) ~ .hero-section {
    padding-top: 200px;
}

/* Мобильная адаптация top-bar */
@media (max-width: 992px) {
    div.bg-secondary-custom:not(.section-padding) {
        position: relative;
        z-index: auto;
        font-size: 11px;
        padding: 4px 0;
    }
    div.bg-secondary-custom:not(.section-padding) + .site-header {
        top: 0;
    }
    div.bg-secondary-custom:not(.section-padding) ~ .hero-section {
        padding-top: 140px;
    }
}


/* ═══ 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; }
}


/* ═══ MOBILE MENU PANEL DESIGN ═══ */
/* Mobile Menu: slide-left-stagger — левая панель, пункты выезжают с левой стороны */
@media (max-width: 992px) {
    .main-nav { left: -100% !important; right: auto !important; width: min(300px,80vw) !important; background: var(--bg-primary) !important; padding: 100px 28px 40px !important; box-shadow: 8px 0 40px rgba(0,0,0,0.2) !important; border-right: 2px solid var(--border-color) !important; transition: left 0.4s cubic-bezier(0.4,0,0.2,1) !important; }
    .main-nav.active { left: 0 !important; }
    .main-nav .nav-link { opacity: 0 !important; transform: translateX(-20px) !important; transition: opacity 0.3s ease, transform 0.3s ease !important; border-bottom: 1px solid var(--border-color) !important; }
    .main-nav.active .nav-link { opacity: 1 !important; transform: translateX(0) !important; }
    .main-nav.active .nav-link:nth-child(1){transition-delay:.06s !important;}
    .main-nav.active .nav-link:nth-child(2){transition-delay:.12s !important;}
    .main-nav.active .nav-link:nth-child(3){transition-delay:.18s !important;}
    .main-nav.active .nav-link:nth-child(4){transition-delay:.24s !important;}
    .main-nav.active .nav-link:nth-child(5){transition-delay:.30s !important;}
    .main-nav.active .nav-link:nth-child(6){transition-delay:.36s !important;}
    .main-nav.active .nav-link:nth-child(7){transition-delay:.42s !important;}
    .main-nav.active .nav-link:nth-child(8){transition-delay:.48s !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;
    }
}
/* Spacing for blog-cards stacked vertically in the same column (density expansion) */
.blog-card + .blog-card {
    margin-top: 1.5rem;
}


/* ═══════════════════════════════════════════ */
/* NOISE LAYER — микро-вариации для уникальности */
/* ═══════════════════════════════════════════ */

body {
    line-height: 1.684;
    letter-spacing: 0.0em;
}

.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card {
    padding: 28px;
}
.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card .card-body {
    padding: 23px 18px;
}
.row > [class*="col"]:nth-child(1) .icon-box,
.row > [class*="col"]:nth-child(1) .service-card {
    padding: 29px;
    border-radius: calc(var(--radius-md) + -2px);
}
.row > [class*="col"]:nth-child(2) .icon-box,
.row > [class*="col"]:nth-child(2) .service-card {
    padding: 29px;
    border-radius: calc(var(--radius-md) + -1px);
}
.row > [class*="col"]:nth-child(3) .icon-box,
.row > [class*="col"]:nth-child(3) .service-card {
    padding: 28px;
    border-radius: calc(var(--radius-md) + 3px);
}
.row > [class*="col"]:nth-child(4) .icon-box,
.row > [class*="col"]:nth-child(4) .service-card {
    padding: 26px;
    border-radius: calc(var(--radius-md) + 2px);
}
.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: 28px;
    border-radius: calc(var(--radius-md) + 2px);
}

.btn-custom {
    padding: 16px 27px;
    font-size: 16px;
    letter-spacing: 0.415px;
    border-radius: calc(var(--radius-md) + 0px);
}
.btn-outline-custom {
    padding: 15px 27px;
    border-width: 1px;
}

main > section {
    padding-top: 83px;
    padding-bottom: 81px;
}
main > section:first-child {
    padding-top: 91px;
}
main > section:nth-child(2) {
    padding-top: 77px;
    padding-bottom: 86px;
}
main > section:nth-child(3) {
    padding-top: 81px;
    padding-bottom: 84px;
}
main > section:nth-child(4) {
    padding-top: 82px;
    padding-bottom: 83px;
}
main > section:nth-child(6) {
    padding-top: 88px;
    padding-bottom: 85px;
}

.section-header {
    margin-bottom: 49px;
}

.icon-box, .service-card, .blog-card, .pricing-card {
    box-shadow: 1px 5px 18px rgba(0,0,0,0.051);
}

.hero-section {
    padding-top: 99px;
}
.hero-title {
    margin-bottom: 28px;
}
.hero-subtitle {
    margin-bottom: 32px;
    font-size: 19px;
    line-height: 1.553;
}
.hero-tagline {
    font-size: 12px;
    letter-spacing: 2.765px;
    margin-bottom: 21px;
}
.hero-buttons {
    gap: 17px;
}

.hero-image img {
    border-radius: 9px;
    box-shadow: 0 13px 41px rgba(0,0,0,0.106);
}

.icon-wrap {
    width: 53px;
    height: 53px;
    font-size: 24px;
    border-radius: 10px;
    margin-bottom: 19px;
}

.icon-title, .card-title {
    font-size: 18px;
    margin-bottom: 11px;
}
.icon-text, .card-text {
    font-size: 15px;
    line-height: 1.643;
}

.section-title {
    margin-bottom: 17px;
    letter-spacing: 0.0px;
}
.section-tagline {
    font-size: 14px;
    letter-spacing: 2.73px;
    margin-bottom: 12px;
}
.section-desc {
    font-size: 16px;
    line-height: 1.69;
}

@media (min-width: 993px) {
    .main-nav {
        gap: 33px;
    }
    .main-nav .nav-link {
        font-size: 14px;
        padding: 10px 0;
    }
}

.site-footer {
    padding-top: 69px;
}
.footer-widget .widget-title {
    font-size: 17px;
    margin-bottom: 18px;
}
.footer-links a {
    font-size: 15px;
}
.footer-links li {
    margin-bottom: 9px;
}
.footer-social {
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
}
.footer-bottom {
    padding: 20px 0;
    margin-top: 48px;
}

.form-control {
    border-radius: 6px;
    padding: 13px 14px;
    font-size: 14px;
}

.testimonial-card {
    padding: 30px;
}
.quote-text {
    font-size: 16px;
    line-height: 1.623;
    margin-bottom: 24px;
}
.author-image {
    width: 46px;
    height: 46px;
}
.author-name {
    font-size: 15px;
}
.author-role {
    font-size: 14px;
}

.pricing-card {
    padding: 31px;
}
.plan-name {
    font-size: 18px;
    margin-bottom: 8px;
}
.plan-price {
    font-size: 46px;
    margin-bottom: 23px;
}
.plan-features li {
    padding: 9px 0;
    font-size: 15px;
}

.counter-number, .stat-number {
    font-size: 39px;
    margin-bottom: 5px;
}
.counter-label {
    font-size: 14px;
    letter-spacing: 0.222px;
}

.team-image img {
    border-radius: 11px;
}
.team-name {
    font-size: 19px;
    margin-bottom: 4px;
}
.team-role {
    font-size: 13px;
}

.step-number {
    font-size: 27px;
    margin-bottom: 13px;
}
.step-title {
    font-size: 19px;
    margin-bottom: 10px;
}

.wow {
    animation-duration: 0.515s !important;
}
.icon-box, .service-card, .blog-card, .testimonial-card,
.pricing-card, .team-card {
    transition-duration: 0.279s;
}

.row {
    --bs-gutter-y: 30px;
}

.cta-section {
    padding: 73px 0;
}
.cta-title {
    font-size: 33px;
    margin-bottom: 18px;
}
.cta-text {
    font-size: 18px;
    margin-bottom: 24px;
}

.blog-card .card-image img {
    border-radius: 13px 13px 0 0;
}
.card-meta {
    font-size: 14px;
    margin-bottom: 6px;
    gap: 12px;
}

.site-header {
    padding: 17px 0;
}
.site-header.scrolled {
    padding: 12px 0;
}
.site-logo {
    font-size: 24px;
}
.header-cta {
    margin-left: 18px;
}

/* --- internal markers --- */
:root {
    --_run: 51855;
    --_build: 61132;
    --_rev: 3.3;
    --_tag: 6.58;
}
.env-flag { font-style: inherit }
.a11y-skip { --_stamp: 741; vertical-align: baseline }
.scope-tag { content: '' }
.frame-ref { pointer-events: auto; 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 with WHITE text */
.site-footer { color: rgba(255,255,255,0.95) !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.95) !important; }
.site-footer a:not(.btn-custom) { color: rgba(255,255,255,0.95) !important; }
.site-footer a:not(.btn-custom):hover { color: var(--accent-1) !important; }
.site-footer .footer-bottom p { color: rgba(255,255,255,0.85) !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; }
