/* ═══ AUTO-GENERATED custom.css ═══ */
/* Стиль: углы=soft, тени=inset, отступы=normal, кнопки=rounded */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;600;700;800&family=Roboto:wght@400;500&display=swap');

:root {
    /* Акцентные цвета */
    --accent-1: #F50B15;
    --accent-2: #00D063;
    --accent-3: #46A5FE;
    --accent-gradient: linear-gradient(120deg, var(--accent-1), var(--accent-2));
    
    /* Шрифты */
    --font-heading: 'Roboto Condensed', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Размеры шрифтов */
    --fs-h1: 64px;
    --fs-h2: 44px;
    --fs-h3: 30px;
    --fs-body: 18px;
    
    /* Вес заголовков */
    --fw-bold: 500;
    
    /* Углы скругления */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-pill: 40px;
    
    /* Тени */
    --shadow-sm: inset 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: inset 0 2px 6px rgba(0,0,0,0.08);
    --shadow-lg: inset 0 4px 12px rgba(0,0,0,0.1);
    --shadow-xl: inset 0 6px 20px rgba(0,0,0,0.12);
    
    /* Отступы секций */
    --section-padding: 80px 0;
}

/* Partners section: reduce vertical spacing */
.partners-section {
    padding: 28px 0 !important;
}

/* Reduce spacing specifically between FAQ and Partners */
#area-faq {
    padding-bottom: 8px !important;
}
#area-faq + .partners-section {
    padding-top: 8px !important;
}

/* Cancel fullscreen section stretch for FAQ + Partners */
#area-faq,
.partners-section {
    min-height: auto !important;
    display: block !important;
}

@media (max-width: 767.98px) {
    .partners-section {
        padding: 20px 0 !important;
    }
    #area-faq {
        padding-bottom: 6px !important;
    }
    #area-faq + .partners-section {
        padding-top: 6px !important;
    }
}

/* Стиль кнопок */
.btn-custom {
    border-radius: 10px;
    padding: 14px 28px;
}

/* Стиль карточек */
.icon-box, .service-card, .testimonial-card, .blog-card, .pricing-card {
    border-width: 3px;
    border-color: #F50B15;
}

/* ═══════════════════════════════════════════ */
/* STYLE TRICKS — автогенерация приёмов      */
/* ═══════════════════════════════════════════ */

/* Trick: card-stack-shadow — тень-стопка ::after */
.icon-box, .service-card, .blog-card, .pricing-card, .testimonial-card {
    position: relative;
}
.icon-box::after, .service-card::after {
    content: '';
    position: absolute;
    inset: 8px 8px -8px -8px;
    background: var(--accent-1);
    opacity: 0.12;
    border-radius: inherit;
    z-index: -1;
    transition: opacity 0.3s;
}
.icon-box:hover::after, .service-card:hover::after {
    opacity: 0.22;
}

/* Trick: btn-arrow-hover — стрелка появляется при hover */
.btn-primary-custom {
    position: relative;
    overflow: hidden;
    padding-right: 28px;
    transition: padding-right 0.3s;
}
.btn-primary-custom::after {
    content: '\2192';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s;
}
.btn-primary-custom:hover {
    padding-right: 40px;
}
.btn-primary-custom:hover::after {
    right: 16px;
}

/* Trick: drop-cap — крупная первая буква */
.about-section p:first-of-type::first-letter {
    font-size: 3.2em;
    float: left;
    line-height: 0.8;
    margin-right: 10px;
    margin-top: 6px;
    font-weight: 800;
    color: var(--accent-1);
}

/* Trick: section-accent-line — акцентная линия перед заголовком */
.section-header::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    margin-bottom: 18px;
}
.section-header.text-center::before {
    margin-left: auto;
    margin-right: auto;
}

/* Trick: 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;
}

/* ═══════════════════════════════════════════ */
/* 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: mono flat — плоский монохромный */
.site-header {
    background: var(--bg-primary);
    padding: 20px 0;
    border-bottom: none;
}
.site-header.scrolled {
    background: var(--bg-primary);
    box-shadow: none;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}
.site-logo { font-weight: 400; font-size: 20px; letter-spacing: 0; text-transform: none; }
.main-nav .nav-link { color: var(--text-muted) !important; font-size: 13px; letter-spacing: 0.5px; }
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--text-primary) !important; }
.main-nav .nav-link::after { display: none; }
.header-cta { background: transparent !important; color: var(--text-primary) !important; border: 1px solid var(--text-primary) !important; border-radius: 0 !important; font-size: 12px !important; letter-spacing: 1px; text-transform: uppercase; }

/* Footer: rounded soft — мягкие скругления */
.site-footer {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding-top: 80px;
    margin: 0 20px 20px;
    border-radius: var(--radius-xl);
}
.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); }
.footer-widget .widget-title { color: var(--text-primary); }
.footer-widget .widget-title::after { background: var(--accent-1); border-radius: var(--radius-pill); }
.footer-links a { color: var(--text-secondary); }
.footer-links a:hover { color: var(--accent-1); }
.footer-social a { border-radius: var(--radius-lg); background: var(--bg-primary); border-color: var(--border-color); color: var(--text-secondary); }
.footer-social a:hover { background: var(--accent-1); color: #fff; border-color: var(--accent-1); }
.footer-bottom { border-top: 1px solid var(--border-color); }
.footer-bottom p { color: var(--text-muted); }

/* Contact: underline fields — поля с нижней чертой */
.contact-section .form-control {
    border: none;
    border-bottom: 2px solid var(--border-color);
    border-radius: 0;
    padding: 12px 0;
    background: transparent;
    font-size: 16px;
}
.contact-section .form-control:focus { border-bottom-color: var(--accent-1); box-shadow: none; }
.contact-section .btn-custom { border-radius: 0; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; padding: 16px 40px; }

/* Logo: gradient bg pill — градиентная капсула */
.site-logo { font-size: 16px; font-weight: 700; background: var(--accent-gradient); color: #fff !important; -webkit-text-fill-color: #fff !important; -webkit-background-clip: border-box; background-clip: border-box; padding: 8px 22px; border-radius: var(--radius-pill); letter-spacing: 0.5px; }
.site-logo:hover { opacity: 0.9; color: #fff; }

/* 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;
}

/* ═══ BURGER MENU DESIGN ═══ */
/* Burger: boxed — кнопка в рамке */
.mobile-toggle { width: 44px; height: 44px; gap: 5px; border: 2px solid var(--text-primary); background: none; border-radius: 0; }
.mobile-toggle .burger-line { width: 20px; height: 2px; border-radius: 0; transition: transform 0.3s ease, opacity 0.3s ease; }
.mobile-toggle.active { border-color: var(--accent-1); }
.mobile-toggle.active .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active .burger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* Effect: divider-circle */
main > section + section::before{content:'';display:block;width:12px;height:12px;border:2px solid var(--accent-1);border-radius:50%;margin:15px auto;opacity:0.35;}

/* Effect: scrollbar-numbers */
.scroll-nums{position:fixed;right:16px;top:50%;transform:translateY(-50%);z-index:9990;display:flex;flex-direction:column;gap:16px;font-size:11px;font-weight:700;opacity:0.3;font-family:var(--font-body);}.scroll-nums span{cursor:pointer;transition:all 0.3s;}.scroll-nums span.active{color:var(--accent-1);opacity:1;transform:scale(1.5);}@media(max-width:768px){.scroll-nums{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-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: 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-cross-pattern */
.bg-deco{position:fixed;inset:0;pointer-events:none;z-index:0;opacity:0.015;background-image:linear-gradient(var(--accent-1) 1px,transparent 1px),linear-gradient(90deg,var(--accent-1) 1px,transparent 1px);background-size:60px 60px;}

/* Effect: scroll-snap-sections — Snap scroll — секции листаются как экраны телефона */
/* Scroll: snap-sections — полноэкранные секции с прилипанием */
html { scroll-snap-type: y mandatory; overflow-y: scroll; scroll-behavior: smooth; }
.hero-section, main > section, .site-footer {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.site-header { position: fixed; z-index: 1000; }
@media (max-width: 768px) {
    html { scroll-snap-type: y proximity; }
    main > section { min-height: auto; }
}

/* Effect: hover-card-border-glow — Рамка карточки мягко подсвечивается при наведении */
.icon-box,.service-card,.blog-card,.testimonial-card,.pricing-card{transition:border-color 0.4s ease,box-shadow 0.4s ease;}.icon-box:hover,.service-card:hover,.blog-card:hover,.testimonial-card:hover,.pricing-card:hover{border-color:var(--accent-1) !important;box-shadow:0 0 0 1px var(--accent-1),0 8px 30px rgba(0,0,0,0.08) !important;}

/* Effect: hover-btn-bounce-click — Кнопки пружинят при клике */
.btn-custom,.btn-primary-custom,.btn-outline-custom{transition:transform 0.15s ease;}.btn-custom:active,.btn-primary-custom:active,.btn-outline-custom:active{transform:scale(0.93);}@keyframes btnBounce{0%{transform:scale(0.93);}40%{transform:scale(1.05);}70%{transform:scale(0.98);}100%{transform:scale(1);}}

/* 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: pulse-border-cards — Рамки карточек пульсируют акцентным цветом */
.icon-box,.service-card{animation:borderPulse 4s ease-in-out infinite;}.icon-box:nth-child(odd),.service-card:nth-child(odd){animation-delay:-2s;}@keyframes borderPulse{0%,100%{border-color:var(--border-color);}50%{border-color:var(--accent-1);}}

/* 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-orbit-dots — Точки на орбите вокруг секционных заголовков */
.orbit-wrap{position:relative;display:inline-block;}.orbit-dot{position:absolute;width:6px;height:6px;background:var(--accent-1);border-radius:50%;top:50%;left:50%;margin:-3px;animation:orbitSpin 8s linear infinite;opacity:0.4;pointer-events:none;}@keyframes orbitSpin{to{transform:rotate(360deg) translateX(30px) rotate(-360deg);}}

/* Effect: float-hexagons — Шестиугольники парят и поворачиваются */
.float-shapes{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden;}.float-hex{position:absolute;width:60px;height:34px;background:var(--accent-1);opacity:0.025;animation:floatHex 22s ease-in-out infinite alternate;clip-path:polygon(25% 0%,75% 0%,100% 50%,75% 100%,25% 100%,0% 50%);}@keyframes floatHex{0%{transform:translateY(0) rotate(0deg);}100%{transform:translateY(-80px) rotate(60deg);}}

/* Effect: marquee-accent-bg — Бегущая строка с акцентным фоном */
.js-marquee{overflow:hidden;padding:14px 0;background:var(--accent-1);}.js-marquee-inner{display:flex;gap:40px;white-space:nowrap;animation:jsMarquee 20s linear infinite;}.js-marquee-inner span{font-size:16px;font-weight:600;text-transform:uppercase;letter-spacing:3px;color:var(--bg-primary);flex-shrink:0;opacity:0.9;}.js-marquee-inner span.sep{opacity:0.5;}@keyframes jsMarquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* Effect: tex-gradient-mesh — Градиентная сетка — множество мягких цветных пятен */
/* Texture: gradient-mesh — мягкая градиентная сетка */
main > section:nth-child(3n+2) { position: relative; overflow: hidden; }
main > section:nth-child(3n+2)::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background:
        radial-gradient(ellipse at 15% 20%, var(--accent-1) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 30%, var(--accent-2, var(--accent-1)) 0%, transparent 45%),
        radial-gradient(ellipse at 40% 80%, var(--accent-1) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 70%, var(--accent-2, var(--accent-1)) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, var(--accent-1) 0%, transparent 60%);
}
.hero-section::before { display: none !important; }

/* ═══ 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.612;
    letter-spacing: 0.0em;
}

.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card {
    padding: 26px;
}
.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card .card-body {
    padding: 23px 16px;
}
.row > [class*="col"]:nth-child(1) .icon-box,
.row > [class*="col"]:nth-child(1) .service-card {
    padding: 26px;
    border-radius: calc(var(--radius-md) + -2px);
}
.row > [class*="col"]:nth-child(2) .icon-box,
.row > [class*="col"]:nth-child(2) .service-card {
    padding: 27px;
    border-radius: calc(var(--radius-md) + -1px);
}
.row > [class*="col"]:nth-child(3) .icon-box,
.row > [class*="col"]:nth-child(3) .service-card {
    padding: 23px;
    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) + 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) + 0px);
}
.row > [class*="col"]:nth-child(6) .icon-box,
.row > [class*="col"]:nth-child(6) .service-card {
    padding: 26px;
    border-radius: calc(var(--radius-md) + -1px);
}

.btn-custom {
    padding: 16px 27px;
    font-size: 15px;
    letter-spacing: 0.375px;
    border-radius: calc(var(--radius-md) + -1px);
}
.btn-outline-custom {
    padding: 17px 27px;
    border-width: 1px;
}

main > section {
    padding-top: 98px;
    padding-bottom: 95px;
}
main > section:first-child {
    padding-top: 111px;
}
main > section:nth-child(3) {
    padding-top: 103px;
    padding-bottom: 97px;
}
main > section:nth-child(5) {
    padding-top: 105px;
    padding-bottom: 91px;
}

.section-header {
    margin-bottom: 48px;
}

.icon-box, .service-card, .blog-card, .pricing-card {
    box-shadow: 0px 4px 19px rgba(0,0,0,0.076);
}

.hero-section {
    padding-top: 98px;
}
.hero-title {
    margin-bottom: 20px;
}
.hero-subtitle {
    margin-bottom: 33px;
    font-size: 18px;
    line-height: 1.634;
}
.hero-tagline {
    font-size: 11px;
    letter-spacing: 3.274px;
    margin-bottom: 25px;
}
.hero-buttons {
    gap: 17px;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 17px 43px rgba(0,0,0,0.147);
}

.icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 23px;
    border-radius: 15px;
    margin-bottom: 16px;
}

.icon-title, .card-title {
    font-size: 20px;
    margin-bottom: 11px;
}
.icon-text, .card-text {
    font-size: 16px;
    line-height: 1.568;
}

.section-title {
    margin-bottom: 18px;
    letter-spacing: 0.088px;
}
.section-tagline {
    font-size: 12px;
    letter-spacing: 3.759px;
    margin-bottom: 14px;
}
.section-desc {
    font-size: 18px;
    line-height: 1.611;
}

@media (min-width: 993px) {
    .main-nav {
        gap: 26px;
    }
    .main-nav .nav-link {
        font-size: 14px;
        padding: 7px 0;
    }
}

.site-footer {
    padding-top: 78px;
}
.footer-widget .widget-title {
    font-size: 18px;
    margin-bottom: 26px;
}
.footer-links a {
    font-size: 15px;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-social {
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
}
.footer-bottom {
    padding: 20px 0;
    margin-top: 60px;
}

.form-control {
    border-radius: 10px;
    padding: 15px 15px;
    font-size: 15px;
}

.testimonial-card {
    padding: 30px;
}
.quote-text {
    font-size: 18px;
    line-height: 1.629;
    margin-bottom: 18px;
}
.author-image {
    width: 44px;
    height: 44px;
}
.author-name {
    font-size: 15px;
}
.author-role {
    font-size: 14px;
}

.pricing-card {
    padding: 31px;
}
.plan-name {
    font-size: 20px;
    margin-bottom: 11px;
}
.plan-price {
    font-size: 42px;
    margin-bottom: 20px;
}
.plan-features li {
    padding: 11px 0;
    font-size: 15px;
}

.counter-number, .stat-number {
    font-size: 46px;
    margin-bottom: 6px;
}
.counter-label {
    font-size: 14px;
    letter-spacing: 0.485px;
}

.team-image img {
    border-radius: 16px;
}
.team-name {
    font-size: 18px;
    margin-bottom: 6px;
}
.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.522s !important;
}
.icon-box, .service-card, .blog-card, .testimonial-card,
.pricing-card, .team-card {
    transition-duration: 0.333s;
}

.row {
    --bs-gutter-y: 29px;
}

.cta-section {
    padding: 92px 0;
}
.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 18px;
    margin-bottom: 26px;
}

.blog-card .card-image img {
    border-radius: 9px 9px 0 0;
}
.card-meta {
    font-size: 13px;
    margin-bottom: 8px;
    gap: 10px;
}

.site-header {
    padding: 20px 0;
}
.site-header.scrolled {
    padding: 15px 0;
}
.site-logo {
    font-size: 23px;
}
.header-cta {
    margin-left: 20px;
}

/* --- internal markers --- */
:root {
    --_build: 85291;
    --_run: 'e85947';
    --_uid: 68384;
    --_stamp: 8.43;
}
.render-flag { unicode-bidi: normal; font-style: inherit; vertical-align: baseline }
.sr-only-fx { font-style: inherit; vertical-align: baseline }
.dom-hook { vertical-align: baseline; unicode-bidi: normal; outline: 0 solid transparent }
.event-hook { visibility: inherit; box-sizing: border-box; --_ref: 'f0c0' }


/* ═══════════════════════════════════════════════════════ */
/* 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: #717083 !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; }

/* Footer text brighter for readability */
.site-footer p,
.site-footer li,
.site-footer span,
.site-footer label,
.site-footer .footer-links a,
.site-footer .footer-contact li,
.site-footer .footer-bottom p {
    color: rgba(255,255,255,0.82) !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; }
