/* ═══ AUTO-GENERATED custom.css ═══ */
/* Стиль: углы=none, тени=subtle, отступы=normal, кнопки=soft */

@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;500;600;700&family=Source+Sans+3:wght@400;500&display=swap');

:root {
    /* Акцентные цвета */
    --accent-1: #1FE31F;
    --accent-2: #9A57E4;
    --accent-3: #AC1D64;
    --accent-gradient: linear-gradient(180deg, var(--accent-1), var(--accent-2));
    
    /* Шрифты */
    --font-heading: 'Source Code Pro', monospace;
    --font-body: 'Source Sans 3', sans-serif;
    
    /* Размеры шрифтов */
    --fs-h1: 34px;
    --fs-h2: 24px;
    --fs-h3: 18px;
    --fs-body: 14px;
    
    /* Вес заголовков */
    --fw-bold: 900;
    
    /* Углы скругления */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;
    --radius-pill: 0px;
    
    /* Тени */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-xl: 0 8px 24px rgba(0,0,0,0.1);
    
    /* Отступы секций */
    --section-padding: 80px 0;
}

/* Стиль кнопок */
.btn-custom {
    border-radius: 6px;
    padding: 12px 24px;
}

/* Стиль карточек */
.icon-box, .service-card, .testimonial-card, .blog-card, .pricing-card {
    border-width: 3px;
    border-color: #1FE31F;
}

/* ═══════════════════════════════════════════ */
/* STYLE TRICKS — автогенерация приёмов      */
/* ═══════════════════════════════════════════ */

/* Trick: dot-pattern-bg — точечный фон */
.bg-secondary-custom {
    background-image: radial-gradient(circle, var(--accent-1) 1px, transparent 1px);
    background-size: 24px 24px;
    background-blend-mode: overlay;
}

/* Trick: stroke-hero-title — обводка вместо заливки */
.hero-title {
    -webkit-text-stroke: 2px var(--accent-1);
    -webkit-text-fill-color: transparent;
}
.hero-title:hover {
    -webkit-text-fill-color: var(--accent-1);
    transition: -webkit-text-fill-color 0.4s;
}

/* 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: 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: 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);
}

/* Trick: card-asymmetric-radius — неравномерное скругление */
.icon-box, .service-card, .blog-card, .pricing-card, .testimonial-card {
    border-radius: 32px 6px 32px 6px;
}

/* Trick: arch-section-top — арка сверху секции */
.bg-secondary-custom {
    position: relative;
    margin-top: 30px;
}
.bg-secondary-custom::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 60px;
    background: inherit;
    border-radius: 50% 50% 0 0;
}

/* ═══════════════════════════════════════════ */
/* ELEMENT PRESETS — уникализация компонентов */
/* ═══════════════════════════════════════════ */

/* Hero: centered image top — картинка сверху, текст снизу */
.hero-section { text-align: center; padding-top: 100px; }
.hero-image {
    max-width: 900px;
    margin: 0 auto 40px;
}
.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
.hero-content { max-width: 700px; margin: 0 auto; }
.hero-buttons { justify-content: center; }
.hero-tagline { margin-bottom: 16px; }

/* Header: neon bottom — неоновая линия снизу */
.site-header {
    background: var(--footer-dark-bg);
    padding: 16px 0;
    border-bottom: 2px solid var(--accent-1);
    box-shadow: 0 2px 20px color-mix(in srgb, var(--accent-1) 40%, transparent);
}
.site-header .site-logo { color: #fff; }
.site-header .nav-link { color: rgba(255,255,255,0.7) !important; }
.site-header .nav-link:hover, .site-header .nav-link.active { color: var(--accent-1) !important; }
.site-header .nav-link::after { background: var(--accent-1); }
.site-header .header-cta { background: var(--accent-1); color: #fff; border-color: var(--accent-1); }
.site-header .mobile-toggle .burger-line { background: #fff; }
.site-header.scrolled { box-shadow: 0 4px 25px color-mix(in srgb, var(--accent-1) 30%, transparent); }

/* 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: dark panel — тёмная панель формы */
.contact-section .form-custom {
    background: var(--footer-dark-bg);
    padding: 48px;
    border-radius: var(--radius-lg);
}
.contact-section .form-custom .form-control {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: var(--radius-sm);
}
.contact-section .form-custom .form-control::placeholder { color: rgba(255,255,255,0.4); }
.contact-section .form-custom .form-control:focus { border-color: var(--accent-1); background: rgba(255,255,255,0.12); }
.contact-section .form-custom .btn-custom { background: #fff; color: var(--footer-dark-bg); border-color: #fff; }
.contact-section .form-custom label { color: rgba(255,255,255,0.7); }

/* Logo: uppercase spaced — заглавные с отступами */
.site-logo { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 5px; }

/* Headings: default — стандартные */
h3, h4, h5 { font-weight: var(--fw-bold); color: var(--text-primary); }
.icon-title, .card-title, .step-title { font-weight: 600; }

/* Img: team — градиентное кольцо */
.team-image {
    padding: 3px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: inline-block;
}
.team-card .team-image img, .team-image img {
    border-radius: 50%;
    display: block;
}

/* ═══ BURGER MENU DESIGN ═══ */
/* Burger: scale in — кнопка слегка уменьшается при клике */
.mobile-toggle { width: 40px; height: 40px; gap: 6px; border: none; background: none; border-radius: 0; transition: transform 0.15s ease; }
.mobile-toggle:active { transform: scale(0.88); }
.mobile-toggle .burger-line { width: 24px; height: 2px; border-radius: 2px; transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), opacity 0.25s ease; }
.mobile-toggle.active .burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active .burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* Effect: divider-double-line */
main > section + section::before{content:'';display:block;width:100px;height:6px;border-top:2px solid var(--accent-1);border-bottom:2px solid var(--accent-1);margin:15px auto;opacity:0.3;}

/* 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: 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: 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-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-img-zoom-rotate — Картинки в карточках зумятся и слегка вращаются */
.service-card img,.blog-card img,.portfolio-item img,.icon-box img{transition:transform 0.5s cubic-bezier(0.23,1,0.32,1);}.service-card:hover img,.blog-card:hover img,.portfolio-item:hover img,.icon-box:hover img{transform:scale(1.08) rotate(1.5deg);}

/* Effect: pulse-taglines — Тэглайны секций мягко пульсируют цветом */
.section-tagline{animation:taglinePulse 3s ease-in-out infinite;}@keyframes taglinePulse{0%,100%{opacity:1;}50%{opacity:0.5;}}

/* Effect: float-blobs-parallax — Градиентные блобы двигаются при скролле */
.float-blobs{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden;}.float-blob{position:absolute;border-radius:50%;filter:blur(40px);opacity:0.035;will-change:transform;}

/* Effect: shimmer-accent-sections — Фон чётных секций переливается */
main>section:nth-child(even):not(.cta-section):not(.bg-dark-section){background:linear-gradient(135deg,var(--bg-primary),var(--bg-secondary,var(--bg-primary)),var(--bg-primary));background-size:400% 400%;animation:shimmerBg 12s ease infinite;}@keyframes shimmerBg{0%,100%{background-position:0% 50%;}50%{background-position:100% 50%;}}

/* Effect: 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-paper-grain — Текстура бумаги / зернистость — SVG feTurbulence */
/* Texture: paper-grain — зернистость бумаги */
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)::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; }

/* 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: editorial — широкая панель, крупная жирная типографика */
@media (max-width: 992px) {
    .main-nav { right: -100% !important; left: auto !important; width: min(400px,90vw) !important; background: var(--bg-secondary) !important; padding: 90px 40px 40px !important; box-shadow: -4px 0 60px rgba(0,0,0,0.2) !important; border-left: 1px solid var(--border-color) !important; transition: right 0.5s cubic-bezier(0.4,0,0.2,1) !important; }
    .main-nav.active { right: 0 !important; }
    .main-nav .nav-link { font-size: 22px !important; font-weight: 800 !important; letter-spacing: -0.5px !important; padding: 16px 0 !important; border-bottom: 1px solid var(--border-color) !important; opacity: 0 !important; transform: translateY(20px) !important; transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4,0,0.2,1) !important; }
    .main-nav.active .nav-link { opacity: 1 !important; transform: translateY(0) !important; }
    .main-nav.active .nav-link:nth-child(1){transition-delay:.10s !important;}
    .main-nav.active .nav-link:nth-child(2){transition-delay:.17s !important;}
    .main-nav.active .nav-link:nth-child(3){transition-delay:.24s !important;}
    .main-nav.active .nav-link:nth-child(4){transition-delay:.31s !important;}
    .main-nav.active .nav-link:nth-child(5){transition-delay:.38s !important;}
    .main-nav.active .nav-link:nth-child(6){transition-delay:.45s !important;}
    .main-nav.active .nav-link:nth-child(7){transition-delay:.52s !important;}
    .main-nav.active .nav-link:nth-child(8){transition-delay:.59s !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;
}


/* ═══ OVERLAY & DARK-SECTION TEXT SAFETY-NET ═══ */
/* Hero overlay → guarantee white text regardless of kit theme */
.hero-section .hero-overlay ~ .container,
.hero-section .hero-overlay ~ .container * {
    color: #fff;
}
.hero-section .hero-overlay ~ .container p,
.hero-section .hero-overlay ~ .container .hero-subtitle {
    color: rgba(255,255,255,0.85);
}
.hero-section .hero-overlay ~ .container .btn-custom {
    color: inherit;
}
/* bg-dark-section: ensure ALL inner text is light */
.bg-dark-section .hero-tagline { color: #fff; }
.bg-dark-section .section-tagline { color: var(--accent-1); }
.bg-dark-section .text-muted-custom { color: rgba(255,255,255,0.55); }
.bg-dark-section .footer-links a { color: rgba(255,255,255,0.65); }
.bg-dark-section .footer-links a:hover { color: #fff; }
/* Site-footer with own inner background → kill outer kit/preset bg */
.site-footer[style*="background:none"] { background: none !important; }
.site-footer[style*="background:none"]::before,
.site-footer[style*="background:none"]::after { display: none !important; }


/* ═══════════════════════════════════════════ */
/* NOISE LAYER — микро-вариации для уникальности */
/* ═══════════════════════════════════════════ */

body {
    line-height: 1.67;
    letter-spacing: 0.0em;
}

.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card {
    padding: 24px;
}
.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: 24px;
    border-radius: calc(var(--radius-md) + 2px);
}
.row > [class*="col"]:nth-child(2) .icon-box,
.row > [class*="col"]:nth-child(2) .service-card {
    padding: 26px;
    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) + 0px);
}
.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: 23px;
    border-radius: calc(var(--radius-md) + 2px);
}
.row > [class*="col"]:nth-child(6) .icon-box,
.row > [class*="col"]:nth-child(6) .service-card {
    padding: 21px;
    border-radius: calc(var(--radius-md) + 2px);
}

.btn-custom {
    padding: 13px 28px;
    font-size: 14px;
    letter-spacing: 0.109px;
    border-radius: calc(var(--radius-md) + 3px);
}
.btn-outline-custom {
    padding: 14px 30px;
    border-width: 2px;
}

main > section {
    padding-top: 80px;
    padding-bottom: 79px;
}
main > section:first-child {
    padding-top: 93px;
}
main > section:nth-child(4) {
    padding-top: 79px;
    padding-bottom: 79px;
}
main > section:nth-child(5) {
    padding-top: 86px;
    padding-bottom: 80px;
}
main > section:nth-child(6) {
    padding-top: 79px;
    padding-bottom: 78px;
}

.section-header {
    margin-bottom: 57px;
}

.icon-box, .service-card, .blog-card, .pricing-card {
    box-shadow: 2px 5px 18px rgba(0,0,0,0.079);
}

.hero-section {
    padding-top: 104px;
}
.hero-title {
    margin-bottom: 26px;
}
.hero-subtitle {
    margin-bottom: 36px;
    font-size: 19px;
    line-height: 1.624;
}
.hero-tagline {
    font-size: 13px;
    letter-spacing: 3.558px;
    margin-bottom: 24px;
}
.hero-buttons {
    gap: 15px;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.142);
}

.icon-wrap {
    width: 49px;
    height: 49px;
    font-size: 21px;
    border-radius: 8px;
    margin-bottom: 19px;
}

.icon-title, .card-title {
    font-size: 18px;
    margin-bottom: 11px;
}
.icon-text, .card-text {
    font-size: 16px;
    line-height: 1.556;
}

.section-title {
    margin-bottom: 14px;
    letter-spacing: 0.0px;
}
.section-tagline {
    font-size: 14px;
    letter-spacing: 2.938px;
    margin-bottom: 14px;
}
.section-desc {
    font-size: 16px;
    line-height: 1.682;
}

@media (min-width: 993px) {
    .main-nav {
        gap: 26px;
    }
    .main-nav .nav-link {
        font-size: 15px;
        padding: 8px 0;
    }
}

.site-footer {
    padding-top: 81px;
}
.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: 9px;
}
.footer-social a {
    width: 35px;
    height: 35px;
}
.footer-bottom {
    padding: 25px 0;
    margin-top: 55px;
}

.form-control {
    border-radius: 5px;
    padding: 14px 16px;
    font-size: 15px;
}

.testimonial-card {
    padding: 28px;
}
.quote-text {
    font-size: 17px;
    line-height: 1.615;
    margin-bottom: 18px;
}
.author-image {
    width: 46px;
    height: 46px;
}
.author-name {
    font-size: 15px;
}
.author-role {
    font-size: 12px;
}

.pricing-card {
    padding: 41px;
}
.plan-name {
    font-size: 20px;
    margin-bottom: 11px;
}
.plan-price {
    font-size: 41px;
    margin-bottom: 22px;
}
.plan-features li {
    padding: 10px 0;
    font-size: 15px;
}

.counter-number, .stat-number {
    font-size: 39px;
    margin-bottom: 3px;
}
.counter-label {
    font-size: 15px;
    letter-spacing: 0.222px;
}

.team-image img {
    border-radius: 8px;
}
.team-name {
    font-size: 17px;
    margin-bottom: 5px;
}
.team-role {
    font-size: 14px;
}

.step-number {
    font-size: 28px;
    margin-bottom: 14px;
}
.step-title {
    font-size: 18px;
    margin-bottom: 6px;
}

.wow {
    animation-duration: 0.529s !important;
}
.icon-box, .service-card, .blog-card, .testimonial-card,
.pricing-card, .team-card {
    transition-duration: 0.301s;
}

.row {
    --bs-gutter-y: 29px;
}

.cta-section {
    padding: 91px 0;
}
.cta-title {
    font-size: 39px;
    margin-bottom: 17px;
}
.cta-text {
    font-size: 17px;
    margin-bottom: 29px;
}

.blog-card .card-image img {
    border-radius: 8px 8px 0 0;
}
.card-meta {
    font-size: 12px;
    margin-bottom: 8px;
    gap: 9px;
}

.site-header {
    padding: 21px 0;
}
.site-header.scrolled {
    padding: 19px 0;
}
.site-logo {
    font-size: 23px;
}
.header-cta {
    margin-left: 14px;
}

/* --- internal markers --- */
:root {
    --_hash: 11864;
    --_flag: 37119;
    --_env: 16671;
    --_build: '0522cbf';
    --_tag: 2.27;
}
.grid-debug { content: ''; visibility: inherit }
.render-flag { display: inherit; --_stamp: 387 }
.sr-only-fx { box-sizing: border-box }
.bind-ref { font-variant: normal; display: inherit; unicode-bidi: normal }
.scope-tag { unicode-bidi: normal; font-style: inherit; visibility: inherit }


/* ═══════════════════════════════════════════════════════ */
/* CONTRAST GUARD — auto-generated, do NOT edit           */
/* Ensures readable text on ALL dark/gradient sections     */
/* ═══════════════════════════════════════════════════════ */

/* .bg-dark-section — DARK bg → light text */
.bg-dark-section h1, .bg-dark-section h2, .bg-dark-section h3, .bg-dark-section h4, .bg-dark-section h5, .bg-dark-section h6 { color: #fff !important; }
.bg-dark-section { color: rgba(255,255,255,0.85) !important; }
.bg-dark-section p, .bg-dark-section li, .bg-dark-section span:not(.badge):not(.btn-custom), .bg-dark-section .section-subtitle, .bg-dark-section label, .bg-dark-section blockquote, .bg-dark-section figcaption, .bg-dark-section dt, .bg-dark-section dd, .bg-dark-section td, .bg-dark-section th { color: rgba(255,255,255,0.78) !important; }
.bg-dark-section a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.bg-dark-section a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.bg-dark-section .counter-number { color: #fff !important; }
.bg-dark-section .counter-label { color: rgba(255,255,255,0.7) !important; }

/* .bg-dark-custom — DARK bg → light text */
.bg-dark-custom h1, .bg-dark-custom h2, .bg-dark-custom h3, .bg-dark-custom h4, .bg-dark-custom h5, .bg-dark-custom h6 { color: #fff !important; }
.bg-dark-custom { color: rgba(255,255,255,0.85) !important; }
.bg-dark-custom p, .bg-dark-custom li, .bg-dark-custom span:not(.badge):not(.btn-custom), .bg-dark-custom .section-subtitle, .bg-dark-custom label, .bg-dark-custom blockquote, .bg-dark-custom figcaption, .bg-dark-custom dt, .bg-dark-custom dd, .bg-dark-custom td, .bg-dark-custom th { color: rgba(255,255,255,0.78) !important; }
.bg-dark-custom a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.bg-dark-custom a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.bg-dark-custom .counter-number { color: #fff !important; }
.bg-dark-custom .counter-label { color: rgba(255,255,255,0.7) !important; }

/* .bg-gradient-custom — DARK bg → light text */
.bg-gradient-custom h1, .bg-gradient-custom h2, .bg-gradient-custom h3, .bg-gradient-custom h4, .bg-gradient-custom h5, .bg-gradient-custom h6 { color: #fff !important; }
.bg-gradient-custom { color: rgba(255,255,255,0.85) !important; }
.bg-gradient-custom p, .bg-gradient-custom li, .bg-gradient-custom span:not(.badge):not(.btn-custom), .bg-gradient-custom .section-subtitle, .bg-gradient-custom label, .bg-gradient-custom blockquote, .bg-gradient-custom figcaption, .bg-gradient-custom dt, .bg-gradient-custom dd, .bg-gradient-custom td, .bg-gradient-custom th { color: rgba(255,255,255,0.78) !important; }
.bg-gradient-custom a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.bg-gradient-custom a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.bg-gradient-custom .counter-number { color: #fff !important; }
.bg-gradient-custom .counter-label { color: rgba(255,255,255,0.7) !important; }

/* .bg-accent-custom — DARK bg → light text */
.bg-accent-custom h1, .bg-accent-custom h2, .bg-accent-custom h3, .bg-accent-custom h4, .bg-accent-custom h5, .bg-accent-custom h6 { color: #fff !important; }
.bg-accent-custom { color: rgba(255,255,255,0.85) !important; }
.bg-accent-custom p, .bg-accent-custom li, .bg-accent-custom span:not(.badge):not(.btn-custom), .bg-accent-custom .section-subtitle, .bg-accent-custom label, .bg-accent-custom blockquote, .bg-accent-custom figcaption, .bg-accent-custom dt, .bg-accent-custom dd, .bg-accent-custom td, .bg-accent-custom th { color: rgba(255,255,255,0.78) !important; }
.bg-accent-custom a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.bg-accent-custom a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.bg-accent-custom .counter-number { color: #fff !important; }
.bg-accent-custom .counter-label { color: rgba(255,255,255,0.7) !important; }

/* .cta-section — DARK bg → light text */
.cta-section h1, .cta-section h2, .cta-section h3, .cta-section h4, .cta-section h5, .cta-section h6 { color: #fff !important; }
.cta-section { color: rgba(255,255,255,0.85) !important; }
.cta-section p, .cta-section li, .cta-section span:not(.badge):not(.btn-custom), .cta-section .section-subtitle, .cta-section label, .cta-section blockquote, .cta-section figcaption, .cta-section dt, .cta-section dd, .cta-section td, .cta-section th { color: rgba(255,255,255,0.78) !important; }
.cta-section a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.cta-section a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.cta-section .counter-number { color: #fff !important; }
.cta-section .counter-label { color: rgba(255,255,255,0.7) !important; }

/* .bg-primary-custom — DARK bg → light 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: #fff !important; }
.bg-primary-custom { color: rgba(255,255,255,0.85) !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: rgba(255,255,255,0.78) !important; }
.bg-primary-custom a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.bg-primary-custom a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.bg-primary-custom .counter-number { color: #fff !important; }
.bg-primary-custom .counter-label { color: rgba(255,255,255,0.7) !important; }

/* .bg-secondary-custom — DARK bg → light 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: #fff !important; }
.bg-secondary-custom { color: rgba(255,255,255,0.85) !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: rgba(255,255,255,0.78) !important; }
.bg-secondary-custom a:not(.btn-custom):not(.nav-link) { color: rgba(255,255,255,0.85) !important; }
.bg-secondary-custom a:not(.btn-custom):not(.nav-link):hover { color: #fff !important; }
.bg-secondary-custom .counter-number { color: #fff !important; }
.bg-secondary-custom .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; }
