/* ═══ AUTO-GENERATED custom.css ═══ */
/* Стиль: углы=extra-round, тени=inset, отступы=breathable, кнопки=pill */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700&family=Inter:wght@400;500&display=swap');

:root {
    /* Акцентные цвета */
    --accent-1: #F472B6;
    --accent-2: #2CC8F1;
    --accent-3: #2CC8F1;
    --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    
    /* Шрифты */
    --font-heading: 'Lexend', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Размеры шрифтов */
    --fs-h1: 64px;
    --fs-h2: 44px;
    --fs-h3: 30px;
    --fs-body: 18px;
    
    /* Вес заголовков */
    --fw-bold: 800;
    
    /* Углы скругления */
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --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: 140px 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);
}

/* ═══════════════════════════════════════════ */
/* STYLE TRICKS — автогенерация приёмов      */
/* ═══════════════════════════════════════════ */

/* Trick: mesh-gradient-bg — mesh-градиент на hero */
.hero-section {
    background:
        radial-gradient(ellipse at 20% 50%, var(--accent-1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, var(--accent-2, var(--accent-1)) 0%, transparent 50%),
        var(--bg-secondary);
    background-blend-mode: overlay;
}
.hero-section .hero-bg { opacity: 0.06; }

/* Trick: uppercase-taglines — uppercase на всех tagline */
.section-tagline, .hero-tagline {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 700;
}

/* Trick: btn-arrow-hover — стрелка появляется при hover */
.btn-primary-custom {
    position: relative;
    overflow: hidden;
    padding-right: 28px;
    transition: padding-right 0.3s;
}
.btn-primary-custom::after {
    content: '\2192';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s;
}
.btn-primary-custom:hover {
    padding-right: 40px;
}
.btn-primary-custom:hover::after {
    right: 16px;
}

/* Trick: 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: card-dashed-border — пунктирная рамка */
.icon-box, .service-card, .blog-card, .pricing-card, .testimonial-card {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: none;
}
.icon-box:hover, .service-card:hover, .blog-card:hover, .pricing-card:hover, .testimonial-card:hover {
    border-color: var(--accent-1);
}

/* 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%);
}

/* ═══════════════════════════════════════════ */
/* 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: solid bordered — чёткая нижняя граница */
.site-header {
    background: var(--bg-primary);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
}
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    backdrop-filter: none;
}

/* Footer: centered minimal — центрированный минимализм */
.site-footer { background: var(--bg-primary); color: var(--text-secondary); padding: 60px 0; text-align: center; border-top: 1px solid var(--border-color); }
.site-footer h1,.site-footer h2,.site-footer h3,.site-footer h4,.site-footer h5 { color: var(--text-primary); }
.footer-widget { text-align: center; }
.footer-widget .widget-title::after { margin: 12px auto 0; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.footer-links li { margin-bottom: 0; }
.footer-links a { color: var(--text-secondary); }
.footer-social { justify-content: center; }
.footer-social a { background: var(--bg-secondary); border-color: var(--border-color); color: var(--text-secondary); }
.footer-bottom { text-align: center; border-top: 1px solid var(--border-color); margin-top: 40px; }
.footer-bottom p { color: var(--text-muted); }

/* Contact: accent border — акцентная рамка */
.contact-section .form-custom {
    border: 2px solid var(--accent-1);
    padding: 40px;
    border-radius: var(--radius-md);
    position: relative;
}
.contact-section .form-custom::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 30px;
    right: 30px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 0 0 4px 4px;
}
.contact-section .form-control { border-radius: var(--radius-sm); }

/* Logo: outline letter — буква с обводкой */
.site-logo { font-size: 20px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.site-logo span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid var(--accent-1);
    color: var(--accent-1) !important;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 18px;
}

/* Headings: default — стандартные */
h3, h4, h5 { font-weight: var(--fw-bold); color: var(--text-primary); }
.icon-title, .card-title, .step-title { font-weight: 600; }

/* Img: hero — арка сверху */
.hero-image img {
    border-radius: 50% 50% var(--radius-sm) var(--radius-sm);
    object-fit: cover;
}

/* Img: cards — штамп-рамка */
.service-card img, .icon-box img, .blog-card img, .portfolio-item img {
    border: 3px dashed var(--border-color);
    padding: 4px;
    border-radius: var(--radius-sm);
}

/* Img: section — контур со смещением */
section:not(.hero-section) .col-lg-6 img, section:not(.hero-section) .col-lg-5 img, .about-section img, section img.rounded {
    outline: 2px solid var(--accent-1);
    outline-offset: 8px;
    border-radius: var(--radius-md);
}

/* ═══ BURGER MENU DESIGN ═══ */
/* Burger: stagger — разноширокие полоски */
.mobile-toggle { width: 40px; height: 40px; gap: 5px; border: none; background: none; border-radius: 0; align-items: flex-start; padding-left: 8px; }
.mobile-toggle .burger-line { height: 2px; border-radius: 2px; transition: width 0.3s ease, transform 0.3s ease, opacity 0.3s ease; }
.mobile-toggle .burger-line:nth-child(1) { width: 24px; }
.mobile-toggle .burger-line:nth-child(2) { width: 18px; }
.mobile-toggle .burger-line:nth-child(3) { width: 24px; }
.mobile-toggle:hover .burger-line:nth-child(2) { width: 24px; }
.mobile-toggle.active .burger-line { width: 24px; }
.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: progress-percentage */
.progress-pct{position:fixed;bottom:20px;left:20px;width:36px;height:36px;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:700;color:var(--accent-1);background:var(--bg-card);border:1px solid var(--border-color);border-radius:50%;z-index:9990;opacity:0.6;font-family:var(--font-body);}@media(max-width:768px){.progress-pct{display:none;}}

/* Effect: stagger-rotate-in */
.icon-box,.service-card{opacity:0;animation:rotateIn 0.7s 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;}@keyframes rotateIn{from{opacity:0;transform:perspective(600px) rotateY(15deg) translateX(30px);}to{opacity:1;transform:perspective(600px) rotateY(0) translateX(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);}}

/* ═══════════════════════════════════════════ */
/* NOISE LAYER — микро-вариации для уникальности */
/* ═══════════════════════════════════════════ */

body {
    line-height: 1.61;
    letter-spacing: 0.013em;
}

.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card {
    padding: 31px;
}
.icon-box, .service-card, .blog-card, .testimonial-card, .pricing-card .card-body {
    padding: 22px 24px;
}
.row > [class*="col"]:nth-child(1) .icon-box,
.row > [class*="col"]:nth-child(1) .service-card {
    padding: 33px;
    border-radius: calc(var(--radius-md) + 2px);
}
.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: 29px;
    border-radius: calc(var(--radius-md) + 1px);
}
.row > [class*="col"]:nth-child(4) .icon-box,
.row > [class*="col"]:nth-child(4) .service-card {
    padding: 31px;
    border-radius: calc(var(--radius-md) + 1px);
}
.row > [class*="col"]:nth-child(5) .icon-box,
.row > [class*="col"]:nth-child(5) .service-card {
    padding: 28px;
    border-radius: calc(var(--radius-md) + 3px);
}
.row > [class*="col"]:nth-child(6) .icon-box,
.row > [class*="col"]:nth-child(6) .service-card {
    padding: 31px;
    border-radius: calc(var(--radius-md) + 3px);
}

.btn-custom {
    padding: 15px 31px;
    font-size: 14px;
    letter-spacing: 0.467px;
    border-radius: calc(var(--radius-md) + 2px);
}
.btn-outline-custom {
    padding: 15px 30px;
    border-width: 1px;
}

main > section {
    padding-top: 74px;
    padding-bottom: 67px;
}
main > section:first-child {
    padding-top: 80px;
}
main > section:nth-child(3) {
    padding-top: 69px;
    padding-bottom: 80px;
}

.section-header {
    margin-bottom: 52px;
}

.icon-box, .service-card, .blog-card, .pricing-card {
    box-shadow: 2px 4px 15px rgba(0,0,0,0.068);
}

.hero-section {
    padding-top: 114px;
}
.hero-title {
    margin-bottom: 21px;
}
.hero-subtitle {
    margin-bottom: 36px;
    font-size: 17px;
    line-height: 1.599;
}
.hero-tagline {
    font-size: 12px;
    letter-spacing: 2.817px;
    margin-bottom: 18px;
}
.hero-buttons {
    gap: 12px;
}

.hero-image img {
    border-radius: 9px;
    box-shadow: 0 13px 45px rgba(0,0,0,0.112);
}

.icon-wrap {
    width: 54px;
    height: 54px;
    font-size: 24px;
    border-radius: 8px;
    margin-bottom: 21px;
}

.icon-title, .card-title {
    font-size: 18px;
    margin-bottom: 7px;
}
.icon-text, .card-text {
    font-size: 14px;
    line-height: 1.634;
}

.section-title {
    margin-bottom: 15px;
    letter-spacing: 0.0px;
}
.section-tagline {
    font-size: 14px;
    letter-spacing: 3.493px;
    margin-bottom: 12px;
}
.section-desc {
    font-size: 18px;
    line-height: 1.651;
}

.main-nav {
    gap: 34px;
}
.main-nav .nav-link {
    font-size: 13px;
    padding: 8px 0;
}

.site-footer {
    padding-top: 75px;
}
.footer-widget .widget-title {
    font-size: 17px;
    margin-bottom: 24px;
}
.footer-links a {
    font-size: 15px;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-social {
    gap: 11px;
}
.footer-social a {
    width: 38px;
    height: 38px;
}
.footer-bottom {
    padding: 23px 0;
    margin-top: 52px;
}

.form-control {
    border-radius: 9px;
    padding: 12px 13px;
    font-size: 14px;
}

.testimonial-card {
    padding: 36px;
}
.quote-text {
    font-size: 16px;
    line-height: 1.649;
    margin-bottom: 17px;
}
.author-image {
    width: 46px;
    height: 46px;
}
.author-name {
    font-size: 14px;
}
.author-role {
    font-size: 13px;
}

.pricing-card {
    padding: 35px;
}
.plan-name {
    font-size: 22px;
    margin-bottom: 9px;
}
.plan-price {
    font-size: 40px;
    margin-bottom: 19px;
}
.plan-features li {
    padding: 10px 0;
    font-size: 14px;
}

.counter-number, .stat-number {
    font-size: 37px;
    margin-bottom: 7px;
}
.counter-label {
    font-size: 14px;
    letter-spacing: 0.248px;
}

.team-image img {
    border-radius: 10px;
}
.team-name {
    font-size: 17px;
    margin-bottom: 2px;
}
.team-role {
    font-size: 14px;
}

.step-number {
    font-size: 37px;
    margin-bottom: 12px;
}
.step-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.wow {
    animation-duration: 0.499s !important;
}
.icon-box, .service-card, .blog-card, .testimonial-card,
.pricing-card, .team-card {
    transition-duration: 0.249s;
}

.row {
    --bs-gutter-y: 25px;
}

.cta-section {
    padding: 82px 0;
}
.cta-title {
    font-size: 33px;
    margin-bottom: 15px;
}
.cta-text {
    font-size: 17px;
    margin-bottom: 32px;
}

.blog-card .card-image img {
    border-radius: 10px 10px 0 0;
}
.card-meta {
    font-size: 14px;
    margin-bottom: 7px;
    gap: 12px;
}

.site-header {
    padding: 17px 0;
}
.site-header.scrolled {
    padding: 11px 0;
}
.site-logo {
    font-size: 24px;
}
.header-cta {
    margin-left: 14px;
}

/* --- internal markers --- */
:root {
    --_ref: '5b3b';
    --_build: 'a3f4900';
    --_seed: 9.85;
}
.view-anchor { font-style: inherit; box-sizing: border-box; content: '' }
.base-ref { outline: 0 solid transparent; font-style: inherit; pointer-events: auto }
.grid-debug { unicode-bidi: normal }
