/* ═══ AUTO-GENERATED custom.css ═══ */
/* Стиль: углы=squircle, тени=strong, отступы=compact, кнопки=pill */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Inter:wght@400;500&display=swap');

:root {
    /* Акцентные цвета */
    --accent-1: #CE8530;
    --accent-2: #5AD19A;
    --accent-3: #7726BC;
    --accent-gradient: linear-gradient(120deg, var(--accent-1), var(--accent-2));
    
    /* Шрифты */
    --font-heading: 'Dancing Script', cursive;
    --font-body: 'Inter', sans-serif;
    
    /* Размеры шрифтов */
    --fs-h1: 48px;
    --fs-h2: 36px;
    --fs-h3: 26px;
    --fs-body: 16px;
    
    /* Вес заголовков */
    --fw-bold: 900;
    
    /* Углы скругления */
    --radius-sm: 18px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 44px;
    --radius-pill: 50px;
    
    /* Тени */
    --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: 60px 0;
}

/* Стиль кнопок */
.btn-custom {
    border-radius: 50px;
    padding: 14px 34px;
}

/* Стиль карточек */
.icon-box, .service-card, .testimonial-card, .blog-card, .pricing-card {
    border-width: 2px;
    border-color: var(--border-color);
}

/* Expanding cards — фиксим обрезание изображений */
.ix-exp-cards {
    display: flex;
    gap: 20px;
    width: 100%;
    height: 400px;
}

.ix-exp-card {
    flex: 0 0 120px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s ease;
    position: relative;
}

.ix-exp-card.active {
    flex: 1 1 auto;
}

.ix-exp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.ix-exp-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ix-exp-card.active .ix-exp-content {
    opacity: 1;
}

.ix-exp-content h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.ix-exp-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

/* ═══════════════════════════════════════════ */
/* STYLE TRICKS — автогенерация приёмов      */
/* ═══════════════════════════════════════════ */

/* 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: highlight-marker — маркерное выделение слов */
.hero-title strong, .hero-title em, .section-title strong {
    background: linear-gradient(transparent 60%, var(--accent-1) 60%);
    background-size: 100% 90%;
    background-repeat: no-repeat;
    background-position: 0 100%;
    padding: 0 4px;
    -webkit-text-fill-color: initial;
}

/* 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;
}

/* ═══════════════════════════════════════════ */
/* ELEMENT PRESETS — уникализация компонентов */
/* ═══════════════════════════════════════════ */

/* Hero: minimal elegant — минимализм с тонкими линиями */
.hero-section {
    background: var(--bg-primary);
    min-height: 90vh;
    border-bottom: 1px solid var(--border-color);
}
.hero-image img {
    border-radius: 2px;
    box-shadow: none;
    border: 1px solid var(--border-color);
}
.hero-tagline {
    background: none;
    padding: 0;
    letter-spacing: 5px;
    font-size: 11px;
    color: var(--text-secondary) !important;
    text-transform: uppercase;
}
.hero-title { font-weight: 400; letter-spacing: -0.5px; }
.hero-subtitle { font-size: 16px; letter-spacing: 0.3px; }
.hero-buttons .btn-primary-custom { background: var(--text-primary); border-color: var(--text-primary); }
.hero-buttons .btn-outline-custom { border-width: 1px; }

/* 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: card style — на карточке с тенью */
.site-footer {
    background: transparent;
    padding: 0 20px 40px;
}
.site-footer > .container {
    background: var(--footer-dark-bg);
    border-radius: var(--radius-xl);
    padding: 60px 40px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.site-footer h4,.site-footer h5 { color: #fff; }
.site-footer .footer-widget .widget-title::after { background: var(--accent-1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 40px; }
.footer-bottom p { color: rgba(255,255,255,0.3); }

/* Contact: minimal flat — плоские поля без рамок */
.contact-section .form-control {
    background: var(--bg-secondary);
    border: none;
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    font-size: 15px;
}
.contact-section .form-control:focus { background: var(--bg-primary); box-shadow: 0 0 0 2px var(--accent-1); }
.contact-section .btn-custom { border-radius: var(--radius-lg); }

/* Logo: condensed bold — сжатый жирный */
.site-logo { font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: -1px; }

/* Headings: large bold — крупные жирные */
.icon-title, .card-title { font-size: 22px; font-weight: 800; line-height: 1.2; }
.step-title { font-size: 20px; font-weight: 700; }
h4 { font-size: 20px; font-weight: 700; }
h5 { font-size: 16px; font-weight: 600; }

/* Img: section — треугольная маска */
section:not(.hero-section) .col-lg-6 img, section:not(.hero-section) .col-lg-5 img {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

/* ═══ BURGER MENU DESIGN ═══ */
/* Burger: dot accent — средняя линия-точка */
.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; transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease, border-radius 0.3s ease; }
.mobile-toggle .burger-line:nth-child(2) { width: 6px; height: 6px; border-radius: 50%; 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-gradient-fade */
main > section + section::before{content:'';display:block;height:1px;background:linear-gradient(90deg,transparent,var(--accent-1),transparent);margin:0 10%;opacity:0.3;}

/* Effect: cursor-highlight-row */
.cursor-highlight-row{position:fixed;left:0;width:100%;height:40px;pointer-events:none;z-index:99998;background:linear-gradient(180deg,transparent,var(--accent-1),transparent);opacity:0.015;transition:top 0.08s;}

/* Effect: scrollbar-dots */
.scroll-dots{position:fixed;right:20px;top:50%;transform:translateY(-50%);z-index:9990;display:flex;flex-direction:column;gap:12px;}.scroll-dots .dot{width:10px;height:10px;border-radius:50%;border:2px solid var(--accent-1);opacity:0.4;cursor:pointer;transition:all 0.3s;}.scroll-dots .dot.active{background:var(--accent-1);opacity:1;transform:scale(1.3);}@media(max-width:768px){.scroll-dots{display:none;}}

/* Effect: progress-bar-top */
.progress-top{position:fixed;top:0;left:0;height:3px;background:var(--accent-gradient);z-index:99999;transition:width 0.05s;width:0;}

/* 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: hover-card-lift-shadow — Карточки взлетают вверх с глубокой тенью */
.icon-box,.service-card,.blog-card,.testimonial-card,.pricing-card{transition:transform 0.35s ease,box-shadow 0.35s ease;}.icon-box:hover,.service-card:hover,.blog-card:hover,.testimonial-card:hover,.pricing-card:hover{transform:translateY(-10px);box-shadow:0 20px 50px rgba(0,0,0,0.12) !important;}

/* Effect: hover-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: pulse-taglines — Тэглайны секций мягко пульсируют цветом */
.section-tagline{animation:taglinePulse 3s ease-in-out infinite;}@keyframes taglinePulse{0%,100%{opacity:1;}50%{opacity:0.5;}}

/* Effect: spin-counter-numbers — Счётчики крутятся как слот при появлении */
.counter-spin{animation:counterSlot 0.8s cubic-bezier(0.16,1,0.3,1) forwards;}@keyframes counterSlot{0%{transform:translateY(100%);filter:blur(4px);}100%{transform:translateY(0);filter:blur(0);}}

/* 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: text-gradient-slide — Градиент скользит по заголовкам при hover */
.section-title{transition:background-position 0.6s ease;background:linear-gradient(90deg,var(--text-primary) 50%,var(--accent-1) 50%);background-size:200% 100%;background-position:0% 0;-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}.section-title:hover{background-position:100% 0;}

/* Effect: tex-marble-veins — Мраморные прожилки — тонкие извилистые линии */
/* Texture: marble-veins — мрамор */
main > section:nth-child(odd):not(:first-child) { position: relative; overflow: clip; }
main > section:nth-child(odd):not(:first-child)::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.015 0.08' numOctaves='5' seed='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23m)'/%3E%3C/svg%3E");
    background-size: 512px 512px;
    mix-blend-mode: overlay;
}
.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: fade-in-place — панель появляется на месте без скольжения */
@media (max-width: 992px) {
    .main-nav { right: 0 !important; left: auto !important; width: min(300px,85vw) !important; background: var(--bg-card) !important; padding: 100px 28px 40px !important; box-shadow: -4px 0 30px rgba(0,0,0,0.15) !important; opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; transform: scale(0.97) !important; transition: opacity 0.3s ease, visibility 0.3s, transform 0.3s ease !important; }
    .main-nav.active { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; transform: scale(1) !important; }
    .main-nav .nav-link { opacity: 0 !important; transform: translateY(10px) !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: translateY(0) !important; }
    .main-nav.active .nav-link:nth-child(1){transition-delay:.15s !important;}
    .main-nav.active .nav-link:nth-child(2){transition-delay:.20s !important;}
    .main-nav.active .nav-link:nth-child(3){transition-delay:.25s !important;}
    .main-nav.active .nav-link:nth-child(4){transition-delay:.30s !important;}
    .main-nav.active .nav-link:nth-child(5){transition-delay:.35s !important;}
    .main-nav.active .nav-link:nth-child(6){transition-delay:.40s !important;}
    .main-nav.active .nav-link:nth-child(7){transition-delay:.45s !important;}
    .main-nav.active .nav-link:nth-child(8){transition-delay:.50s !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.639;
    letter-spacing: 0.01em;
}

.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: 21px 24px;
}
.row > [class*="col"]:nth-child(1) .icon-box,
.row > [class*="col"]:nth-child(1) .service-card {
    padding: 28px;
    border-radius: calc(var(--radius-md) + 3px);
}
.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: 24px;
    border-radius: calc(var(--radius-md) + 2px);
}
.row > [class*="col"]:nth-child(4) .icon-box,
.row > [class*="col"]:nth-child(4) .service-card {
    padding: 23px;
    border-radius: calc(var(--radius-md) + -2px);
}
.row > [class*="col"]:nth-child(5) .icon-box,
.row > [class*="col"]:nth-child(5) .service-card {
    padding: 24px;
    border-radius: calc(var(--radius-md) + -1px);
}
.row > [class*="col"]:nth-child(6) .icon-box,
.row > [class*="col"]:nth-child(6) .service-card {
    padding: 27px;
    border-radius: calc(var(--radius-md) + 0px);
}

.btn-custom {
    padding: 12px 31px;
    font-size: 14px;
    letter-spacing: 0.382px;
    border-radius: calc(var(--radius-md) + 0px);
}
.btn-outline-custom {
    padding: 11px 33px;
    border-width: 1px;
}

main > section {
    padding-top: 100px;
    padding-bottom: 108px;
}
main > section:first-child {
    padding-top: 113px;
}
main > section:nth-child(4) {
    padding-top: 108px;
    padding-bottom: 106px;
}
main > section:nth-child(5) {
    padding-top: 100px;
    padding-bottom: 95px;
}

.section-header {
    margin-bottom: 52px;
}

.icon-box, .service-card, .blog-card, .pricing-card {
    box-shadow: 1px 4px 13px rgba(0,0,0,0.057);
}

.hero-section {
    padding-top: 104px;
}
.hero-title {
    margin-bottom: 26px;
}
.hero-subtitle {
    margin-bottom: 32px;
    font-size: 19px;
    line-height: 1.568;
}
.hero-tagline {
    font-size: 12px;
    letter-spacing: 3.657px;
    margin-bottom: 22px;
}
.hero-buttons {
    gap: 11px;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 17px 40px rgba(0,0,0,0.159);
}

.icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 22px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.icon-title, .card-title {
    font-size: 19px;
    margin-bottom: 7px;
}
.icon-text, .card-text {
    font-size: 16px;
    line-height: 1.606;
}

.section-title {
    margin-bottom: 14px;
    letter-spacing: 0.0px;
}
.section-tagline {
    font-size: 13px;
    letter-spacing: 2.631px;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 16px;
    line-height: 1.666;
}

@media (min-width: 993px) {
    .main-nav {
        gap: 26px;
    }
    .main-nav .nav-link {
        font-size: 14px;
        padding: 6px 0;
    }
}

.site-footer {
    padding-top: 79px;
}
.footer-widget .widget-title {
    font-size: 18px;
    margin-bottom: 21px;
}
.footer-links a {
    font-size: 13px;
}
.footer-links li {
    margin-bottom: 9px;
}
.footer-social {
    gap: 10px;
}
.footer-social a {
    width: 37px;
    height: 37px;
}
.footer-bottom {
    padding: 18px 0;
    margin-top: 54px;
}

.form-control {
    border-radius: 11px;
    padding: 12px 15px;
    font-size: 14px;
}

.testimonial-card {
    padding: 37px;
}
.quote-text {
    font-size: 17px;
    line-height: 1.626;
    margin-bottom: 20px;
}
.author-image {
    width: 47px;
    height: 47px;
}
.author-name {
    font-size: 16px;
}
.author-role {
    font-size: 12px;
}

.pricing-card {
    padding: 35px;
}
.plan-name {
    font-size: 20px;
    margin-bottom: 5px;
}
.plan-price {
    font-size: 44px;
    margin-bottom: 24px;
}
.plan-features li {
    padding: 11px 0;
    font-size: 14px;
}

.counter-number, .stat-number {
    font-size: 44px;
    margin-bottom: 9px;
}
.counter-label {
    font-size: 15px;
    letter-spacing: 0.527px;
}

.team-image img {
    border-radius: 9px;
}
.team-name {
    font-size: 19px;
    margin-bottom: 6px;
}
.team-role {
    font-size: 13px;
}

.step-number {
    font-size: 27px;
    margin-bottom: 12px;
}
.step-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.wow {
    animation-duration: 0.715s !important;
}
.icon-box, .service-card, .blog-card, .testimonial-card,
.pricing-card, .team-card {
    transition-duration: 0.352s;
}

.row {
    --bs-gutter-y: 27px;
}

.cta-section {
    padding: 76px 0;
}
.cta-title {
    font-size: 38px;
    margin-bottom: 19px;
}
.cta-text {
    font-size: 17px;
    margin-bottom: 26px;
}

.blog-card .card-image img {
    border-radius: 14px 14px 0 0;
}
.card-meta {
    font-size: 13px;
    margin-bottom: 8px;
    gap: 15px;
}

.site-header {
    padding: 16px 0;
}
.site-header.scrolled {
    padding: 12px 0;
}
.site-logo {
    font-size: 24px;
}
.header-cta {
    margin-left: 13px;
}

/* --- internal markers --- */
:root {
    --_uid: 5.72;
    --_rev: 'd4917a';
    --_ref: 15538;
}
.a11y-skip { display: inherit }
.node-stub { --_stamp: 183 }
.env-flag { box-sizing: border-box; unicode-bidi: normal; font-variant: normal }
.vis-helper { content: '' }
.scope-tag { 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; }

/* .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; }
