/* ═══ AUTO-GENERATED custom.css ═══ */
/* Стиль: углы=round, тени=inset, отступы=airy, кнопки=chunky */

@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&family=Nunito+Sans:wght@400;500&display=swap');

:root {
    /* Акцентные цвета */
    --accent-1: #D33387;
    --accent-2: #D33C27;
    --accent-3: #9F1CAF;
    --accent-gradient: linear-gradient(to right, var(--accent-1), var(--accent-2));
    
    /* Шрифты */
    --font-heading: 'Comfortaa', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    
    /* Размеры шрифтов */
    --fs-h1: 56px;
    --fs-h2: 42px;
    --fs-h3: 30px;
    --fs-body: 17px;
    
    /* Вес заголовков */
    --fw-bold: 900;
    
    /* Углы скругления */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 50px;
    
    /* Тени */
    --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: 120px 0;
}

/* Стиль кнопок */
.btn-custom {
    border-radius: 8px;
    padding: 18px 36px;
}

/* Стиль карточек */
.icon-box, .service-card, .testimonial-card, .blog-card, .pricing-card {
    border-width: 1px;
    border-color: var(--border-color);
}

/* ═══════════════════════════════════════════ */
/* STYLE TRICKS — автогенерация приёмов      */
/* ═══════════════════════════════════════════ */

/* Trick: uppercase-taglines — uppercase на всех tagline */
.section-tagline, .hero-tagline {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 700;
}

/* Trick: wave-divider — волнистый разделитель перед секциями */
.bg-secondary-custom {
    position: relative;
    margin-top: 40px;
}
.bg-secondary-custom::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: inherit;
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* Trick: odd-card-lift — нечётные карточки приподняты */
.row > [class*="col"]:nth-child(odd) .icon-box,
.row > [class*="col"]:nth-child(odd) .service-card {
    transform: translateY(-10px);
}
.row > [class*="col"]:nth-child(even) .icon-box,
.row > [class*="col"]:nth-child(even) .service-card {
    transform: translateY(10px);
}

/* 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;
}

/* Trick: btn-fill-up — заливка снизу */
.btn-primary-custom {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-primary-custom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255,255,255,0.15);
    transition: height 0.35s ease;
    z-index: -1;
}
.btn-primary-custom:hover::before {
    height: 100%;
}

/* Trick: footer-wave-top — волна над футером */
.site-footer {
    position: relative;
    margin-top: 40px;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: inherit;
    clip-path: ellipse(55% 100% at 50% 100%);
}

/* Trick: card-left-accent-border — толстая рамка слева */
.icon-box, .service-card, .blog-card, .pricing-card, .testimonial-card {
    border-left: 5px solid var(--accent-1);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ═══════════════════════════════════════════ */
/* ELEMENT PRESETS — уникализация компонентов */
/* ═══════════════════════════════════════════ */

/* Hero: overlap card — картинка с наложенным текстовым блоком */
.hero-section { min-height: 100vh; padding-bottom: 120px; }
.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}
.hero-content {
    background: var(--bg-card, #fff);
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: -80px;
    position: relative;
    z-index: 5;
    border: 1px solid var(--border-color);
}
.hero-tagline { background: var(--accent-1); color: #fff !important; padding: 6px 16px; border-radius: var(--radius-sm); font-size: 11px; }

/* Header: shadow dramatic — драматичная тень */
.site-header {
    background: var(--bg-primary);
    padding: 18px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.site-header.scrolled {
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    padding: 12px 0;
}
.site-logo { font-size: 26px; font-weight: 800; }
.main-nav .nav-link { font-weight: 500; }

/* Footer: brutalist — грубый стиль */
.site-footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding-top: 60px;
    border-top: 4px solid var(--text-primary);
}
.site-footer p, .site-footer li, .site-footer span,
.site-footer .footer-widget p, .site-footer .footer-contact li { color: var(--text-secondary); }
.site-footer a:not(.btn-custom) { color: var(--text-primary); }
.site-footer a:not(.btn-custom):hover { color: var(--accent-1); }
.site-footer h1,.site-footer h2,.site-footer h3,.site-footer h4,.site-footer h5 { color: var(--text-primary); }
.footer-widget .widget-title { text-transform: uppercase; font-weight: 900; letter-spacing: 2px; border-bottom: 2px solid var(--text-primary); padding-bottom: 10px; }
.footer-widget .widget-title::after { display: none; }
.footer-links a { color: var(--text-primary); font-weight: 600; text-transform: uppercase; font-size: 12px; }
.footer-links a:hover { color: var(--accent-1); padding-left: 10px; }
.footer-social a { border-radius: 0; background: var(--text-primary); color: var(--bg-primary); border: none; }
.footer-social a:hover { background: var(--accent-1); }
.footer-bottom { border-top: 2px solid var(--text-primary); }
.footer-bottom p { color: var(--text-secondary); }

/* Contact: 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: gradient text — градиентный текст */
.site-logo { font-size: 24px; font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Headings: serif italic — элегантные курсивные */
h3, h4, h5 { font-family: var(--font-heading); }
.icon-title, .card-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 20px;
}
.step-title { font-style: italic; font-weight: 500; }

/* Img: cards — круглые картинки в карточках */
.service-card img, .icon-box img {
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    max-width: 140px;
    margin: 0 auto 16px;
    display: block;
    border: 3px solid var(--border-color);
}

/* ═══ 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-fade-dots */
main > section + section::before{content:'';display:block;width:60%;height:1px;margin:0 auto;background:radial-gradient(circle,var(--accent-1) 1px,transparent 1px);background-size:12px 1px;opacity:0.25;}

/* Effect: cursor-spotlight */
.cursor-spot{position:fixed;width:300px;height:300px;background:radial-gradient(circle,rgba(255,255,255,0.04) 0%,transparent 70%);border-radius:50%;pointer-events:none;z-index:99998;transform:translate(-50%,-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: 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: deco-gradient-blobs */
.bg-deco{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden;}.bg-deco span{position:absolute;border-radius:50%;filter:blur(60px);opacity:0.03;animation:decoBlob 22s ease-in-out infinite alternate;}@keyframes decoBlob{0%{transform:translate(0,0) scale(1);}50%{transform:translate(30px,-40px) scale(1.15);}100%{transform:translate(-20px,30px) scale(0.9);}}

/* Effect: pulse-hero-cta — CTA-кнопка в hero мягко пульсирует */
@keyframes pulseGlow{0%,100%{box-shadow:0 0 0 0 rgba(var(--accent-1-rgb,99,102,241),0.45);}70%{box-shadow:0 0 0 14px rgba(var(--accent-1-rgb,99,102,241),0);}}
.hero-section .btn-primary-custom,.hero-section .btn-custom{animation:pulseGlow 2.5s ease-in-out infinite;}

/* Effect: 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: float-triangles — Прозрачные треугольники дрейфуют */
.float-shapes{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden;}.float-tri{position:absolute;width:0;height:0;border-left:30px solid transparent;border-right:30px solid transparent;border-bottom:52px solid var(--accent-1);opacity:0.03;animation:floatDrift 20s ease-in-out infinite alternate;}@keyframes floatDrift{0%{transform:translate(0,0) rotate(0deg);}50%{transform:translate(40px,-60px) rotate(90deg);}100%{transform:translate(-30px,40px) rotate(180deg);}}

/* Effect: shimmer-iridescent-hero — Радужный перелив на hero-фоне */
.hero-section::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,0,150,0.03),rgba(0,150,255,0.03),rgba(255,200,0,0.02),rgba(0,255,150,0.03),rgba(150,0,255,0.03));background-size:500% 500%;animation:iridescentShift 15s ease infinite;pointer-events:none;z-index:0;}.hero-section{position:relative;}@keyframes iridescentShift{0%,100%{background-position:0% 50%;}25%{background-position:50% 0%;}50%{background-position:100% 50%;}75%{background-position:50% 100%;}}

/* Fallback: без JS секции видимы сразу */
html:not(.js-fx) main > section {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
}

/* ═══ DESKTOP NAV OVERFLOW SAFETY-NET ═══ */
/* Не даём nav-ссылкам переполнять хедер при большом числе вкладок */
@media (min-width: 993px) {
    .header-inner {
        flex-wrap: nowrap;
        overflow: visible;
    }
    .main-nav {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
        flex-wrap: nowrap;
        overflow: hidden;
        gap: clamp(10px, 1.8vw, 36px) !important;
    }
    .main-nav .nav-link {
        white-space: nowrap;
        font-size: clamp(11px, 1.1vw, 15px) !important;
        padding: 8px 0;
        flex-shrink: 0;
    }
    /* Centered-logo split groups — адаптивный gap */
    .nav-group-left, .nav-group-right {
        gap: clamp(8px, 1.4vw, 32px) !important;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    .nav-group-left .nav-link,
    .nav-group-right .nav-link {
        white-space: nowrap;
        font-size: clamp(11px, 1.1vw, 15px) !important;
        flex-shrink: 0;
    }
    /* CTA-кнопка не сжимается */
    .header-cta {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .site-logo {
        flex-shrink: 0;
    }
}

/* ═══ TWO-LAYER HEADER FIX ═══ */
/* Вариант "Nav with Top Bar" — фиксируем top-bar (div) над хедером.
   Используем div.bg-secondary-custom (не section!) чтобы не зацепить секции. */
div.bg-secondary-custom:not(.section-padding) {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 6px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
div.bg-secondary-custom:not(.section-padding) + .site-header {
    top: 33px;
    transition: top 0.3s ease, background 0.3s ease, padding 0.3s ease;
}
/* При скролле: top-bar скрывается, header прижимается к верху */
div.bg-secondary-custom.top-bar-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
div.bg-secondary-custom.top-bar-hidden + .site-header,
div.bg-secondary-custom:not(.section-padding) + .site-header.scrolled {
    top: 0;
}
/* Компенсируем дополнительную высоту top-bar для hero */
div.bg-secondary-custom:not(.section-padding) ~ .hero-section {
    padding-top: 200px;
}

/* Мобильная адаптация top-bar */
@media (max-width: 992px) {
    div.bg-secondary-custom:not(.section-padding) {
        position: relative;
        z-index: auto;
        font-size: 11px;
        padding: 4px 0;
    }
    div.bg-secondary-custom:not(.section-padding) + .site-header {
        top: 0;
    }
    div.bg-secondary-custom:not(.section-padding) ~ .hero-section {
        padding-top: 140px;
    }
}


/* ═══ MOBILE MENU SAFETY-NET ═══ */
@media (max-width: 992px) {
    /* Бургер-кнопка — ВСЕГДА видима и кликабельна */
    .mobile-toggle {
        display: flex !important;
        pointer-events: auto !important;
        opacity: 1 !important;
        z-index: 10001 !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent;
    }
    .mobile-toggle .burger-line {
        pointer-events: none;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    /* Мобильная панель навигации — правильное позиционирование */
    .main-nav {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        height: 100vh !important;
        height: 100dvh !important;
        z-index: 10000 !important;
        overflow-y: auto !important;
    }
    /* Ссылки навигации — крупные, читаемые, кликабельные */
    .main-nav .nav-link {
        font-size: 18px !important;
        padding: 14px 0 !important;
        display: block !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        line-height: 1.4 !important;
        text-decoration: none !important;
    }
    .main-nav .nav-link::after { display: none !important; }
    .header-cta { display: none !important; }
    /* CTA-кнопка скрыта на мобильном (меню важнее) */
    .nav-group-left, .nav-group-right { display: none !important; }
}


/* ═══ MOBILE MENU PANEL DESIGN ═══ */
/* Mobile Menu: slide-right-stagger — правая панель, пункты выезжают поочерёдно */
@media (max-width: 992px) {
    .main-nav { right: -100% !important; left: auto !important; width: min(320px,85vw) !important; background: var(--bg-card) !important; padding: 100px 32px 40px !important; box-shadow: -8px 0 40px rgba(0,0,0,0.25) !important; border-left: 3px solid var(--accent-1) !important; transition: right 0.4s cubic-bezier(0.4,0,0.2,1) !important; }
    .main-nav.active { right: 0 !important; }
    .main-nav .nav-link { opacity: 0 !important; transform: translateX(24px) !important; transition: opacity 0.35s ease, transform 0.35s ease !important; border-bottom: 1px solid var(--border-color) !important; }
    .main-nav.active .nav-link { opacity: 1 !important; transform: translateX(0) !important; }
    .main-nav.active .nav-link:nth-child(1){transition-delay:.06s !important;}
    .main-nav.active .nav-link:nth-child(2){transition-delay:.12s !important;}
    .main-nav.active .nav-link:nth-child(3){transition-delay:.18s !important;}
    .main-nav.active .nav-link:nth-child(4){transition-delay:.24s !important;}
    .main-nav.active .nav-link:nth-child(5){transition-delay:.30s !important;}
    .main-nav.active .nav-link:nth-child(6){transition-delay:.36s !important;}
    .main-nav.active .nav-link:nth-child(7){transition-delay:.42s !important;}
    .main-nav.active .nav-link:nth-child(8){transition-delay:.48s !important;}
}


/* ═══ BLUR SAFETY-NET ═══ */
/* Cards/content blocks: cap backdrop-filter blur at 8px, ensure solid-enough bg */
.icon-box,
.service-card,
.blog-card,
.pricing-card,
.feature-card,
.team-card {
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}
/* Guarantee text inside cards is never blurred by filter */
.icon-box *,
.service-card *,
.blog-card *,
.pricing-card *,
.feature-card * {
    filter: none !important;
}
/* Animation safety: blurIn cards MUST reach final state even if animation fails */
@supports (animation: none) {
    .icon-box, .service-card, .blog-card {
        animation-fill-mode: forwards !important;
    }
}
/* Spacing for blog-cards stacked vertically in the same column (density expansion) */
.blog-card + .blog-card {
    margin-top: 1.5rem;
}


/* ═══════════════════════════════════════════ */
/* NOISE LAYER — микро-вариации для уникальности */
/* ═══════════════════════════════════════════ */

body {
    line-height: 1.672;
    letter-spacing: 0.003em;
}

.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card {
    padding: 30px;
}
.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card .card-body {
    padding: 21px 23px;
}
.row > [class*="col"]:nth-child(1) .icon-box,
.row > [class*="col"]:nth-child(1) .service-card {
    padding: 33px;
    border-radius: calc(var(--radius-md) + 3px);
}
.row > [class*="col"]:nth-child(2) .icon-box,
.row > [class*="col"]:nth-child(2) .service-card {
    padding: 30px;
    border-radius: calc(var(--radius-md) + -1px);
}
.row > [class*="col"]:nth-child(3) .icon-box,
.row > [class*="col"]:nth-child(3) .service-card {
    padding: 28px;
    border-radius: calc(var(--radius-md) + 0px);
}
.row > [class*="col"]:nth-child(4) .icon-box,
.row > [class*="col"]:nth-child(4) .service-card {
    padding: 31px;
    border-radius: calc(var(--radius-md) + 0px);
}
.row > [class*="col"]:nth-child(5) .icon-box,
.row > [class*="col"]:nth-child(5) .service-card {
    padding: 27px;
    border-radius: calc(var(--radius-md) + 0px);
}
.row > [class*="col"]:nth-child(6) .icon-box,
.row > [class*="col"]:nth-child(6) .service-card {
    padding: 32px;
    border-radius: calc(var(--radius-md) + 0px);
}

.btn-custom {
    padding: 14px 30px;
    font-size: 15px;
    letter-spacing: 0.321px;
    border-radius: calc(var(--radius-md) + 3px);
}
.btn-outline-custom {
    padding: 14px 28px;
    border-width: 1px;
}

main > section {
    padding-top: 82px;
    padding-bottom: 89px;
}
main > section:first-child {
    padding-top: 93px;
}

.section-header {
    margin-bottom: 45px;
}

.icon-box, .service-card, .blog-card, .pricing-card {
    box-shadow: 0px 2px 13px rgba(0,0,0,0.085);
}

.hero-section {
    padding-top: 103px;
}
.hero-title {
    margin-bottom: 28px;
}
.hero-subtitle {
    margin-bottom: 42px;
    font-size: 17px;
    line-height: 1.636;
}
.hero-tagline {
    font-size: 11px;
    letter-spacing: 2.485px;
    margin-bottom: 18px;
}
.hero-buttons {
    gap: 15px;
}

.hero-image img {
    border-radius: 11px;
    box-shadow: 0 14px 44px rgba(0,0,0,0.122);
}

.icon-wrap {
    width: 50px;
    height: 50px;
    font-size: 21px;
    border-radius: 13px;
    margin-bottom: 17px;
}

.icon-title, .card-title {
    font-size: 18px;
    margin-bottom: 9px;
}
.icon-text, .card-text {
    font-size: 15px;
    line-height: 1.632;
}

.section-title {
    margin-bottom: 14px;
    letter-spacing: 0.0px;
}
.section-tagline {
    font-size: 13px;
    letter-spacing: 3.175px;
    margin-bottom: 12px;
}
.section-desc {
    font-size: 18px;
    line-height: 1.691;
}

@media (min-width: 993px) {
    .main-nav {
        gap: 31px;
    }
    .main-nav .nav-link {
        font-size: 15px;
        padding: 8px 0;
    }
}

.site-footer {
    padding-top: 67px;
}
.footer-widget .widget-title {
    font-size: 16px;
    margin-bottom: 19px;
}
.footer-links a {
    font-size: 15px;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-social {
    gap: 8px;
}
.footer-social a {
    width: 35px;
    height: 35px;
}
.footer-bottom {
    padding: 22px 0;
    margin-top: 56px;
}

.form-control {
    border-radius: 11px;
    padding: 12px 19px;
    font-size: 15px;
}

.testimonial-card {
    padding: 35px;
}
.quote-text {
    font-size: 18px;
    line-height: 1.692;
    margin-bottom: 20px;
}
.author-image {
    width: 45px;
    height: 45px;
}
.author-name {
    font-size: 14px;
}
.author-role {
    font-size: 13px;
}

.pricing-card {
    padding: 31px;
}
.plan-name {
    font-size: 22px;
    margin-bottom: 10px;
}
.plan-price {
    font-size: 43px;
    margin-bottom: 18px;
}
.plan-features li {
    padding: 12px 0;
    font-size: 13px;
}

.counter-number, .stat-number {
    font-size: 46px;
    margin-bottom: 9px;
}
.counter-label {
    font-size: 13px;
    letter-spacing: 0.621px;
}

.team-image img {
    border-radius: 15px;
}
.team-name {
    font-size: 18px;
    margin-bottom: 5px;
}
.team-role {
    font-size: 14px;
}

.step-number {
    font-size: 32px;
    margin-bottom: 13px;
}
.step-title {
    font-size: 18px;
    margin-bottom: 9px;
}

.wow {
    animation-duration: 0.551s !important;
}
.icon-box, .service-card, .blog-card, .testimonial-card,
.pricing-card, .team-card {
    transition-duration: 0.316s;
}

.row {
    --bs-gutter-y: 24px;
}

.cta-section {
    padding: 68px 0;
}
.cta-title {
    font-size: 33px;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 17px;
    margin-bottom: 23px;
}

.blog-card .card-image img {
    border-radius: 9px 9px 0 0;
}
.card-meta {
    font-size: 13px;
    margin-bottom: 11px;
    gap: 15px;
}

.site-header {
    padding: 21px 0;
}
.site-header.scrolled {
    padding: 18px 0;
}
.site-logo {
    font-size: 21px;
}
.header-cta {
    margin-left: 13px;
}

/* --- internal markers --- */
:root {
    --_stamp: 71046;
    --_flag: 4.26;
    --_hash: 99296;
    --_tag: 6.49;
    --_ver: 4.56;
}
.sr-only-fx { --_ref: '9195'; font-variant: normal }
.theme-marker { font-variant: normal }
.frame-ref { --_stamp: 255; display: inherit; font-style: inherit }
.init-marker { box-sizing: border-box }


/* ═══════════════════════════════════════════════════════ */
/* 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; }
