/*
 * VIEWPORT GROUP — Compiled CSS
 * Cloud Bitrix24 / static hosting ready.
 * Generated from SCSS source; uses CSS Custom Properties for theming.
 * ============================================================ */

/* --- Design tokens --- */
:root {
  --color-primary:       #1A56DB;
  --color-primary-dark:  #1241B0;
  --color-primary-light: #EBF0FF;
  --color-accent:        #F59E0B;
  --color-text:          #1F2937;
  --color-text-muted:    #6B7280;
  --color-text-light:    #9CA3AF;
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F9FAFB;
  --color-bg-dark:       #111827;
  --color-border:        #E5E7EB;
  --color-success:       #10B981;
  --color-error:         #EF4444;
  --font-family:         'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.12);
  --shadow-card:0 2px 8px rgba(26,86,219,.08);
  --transition: 0.25s ease;
  --header-h:   72px;
  --container:  1280px;
}

/* ============================
   RESET / BASE
   ============================ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font-family);font-size:1rem;font-weight:400;
  line-height:1.6;color:var(--color-text);background:var(--color-bg);
  -webkit-font-smoothing:antialiased;overflow-x:hidden}
h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.2;color:var(--color-text)}
h1{font-size:clamp(2rem,5vw,3rem)}
h2{font-size:clamp(1.75rem,3.5vw,2.25rem)}
h3{font-size:clamp(1.25rem,2.5vw,1.5rem)}
h4{font-size:1.125rem}
p{margin-bottom:1rem}
p:last-child{margin-bottom:0}
a{color:var(--color-primary);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--color-primary-dark)}
ul,ol{list-style:none}
img,video,svg{display:block;max-width:100%;height:auto}
button{font-family:inherit;font-size:inherit;background:none;border:none;cursor:pointer}
input,textarea,select{font-family:inherit;font-size:inherit}

/* ============================
   LAYOUT
   ============================ */
.container{width:100%;max-width:var(--container);
  margin-left:auto;margin-right:auto;padding:0 1.5rem}
.section{padding:4rem 0}
@media(min-width:768px){.section{padding:5rem 0}}
.section--alt{background:var(--color-bg-alt)}
.section--dark{background:var(--color-bg-dark);color:#fff}
.section--dark h1,.section--dark h2,.section--dark h3{color:#fff}
.section--dark p{color:rgba(255,255,255,.75)}
.section__header{text-align:center;margin-bottom:3rem}
@media(min-width:768px){.section__header{margin-bottom:4rem}}
.section__label{display:inline-block;font-size:.875rem;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;color:var(--color-primary);margin-bottom:.75rem}
.section__title{margin-bottom:1rem}
.section__desc{font-size:1.125rem;color:var(--color-text-muted);max-width:640px;margin:0 auto}

/* ============================
   BUTTONS
   ============================ */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.75rem 1.5rem;font-family:var(--font-family);font-size:1rem;font-weight:600;
  line-height:1;text-decoration:none;border:2px solid transparent;
  border-radius:var(--radius-md);cursor:pointer;transition:all var(--transition);white-space:nowrap}
.btn:focus-visible{outline:3px solid var(--color-primary);outline-offset:2px}
.btn--primary{background:var(--color-primary);color:#fff;border-color:var(--color-primary)}
.btn--primary:hover{background:var(--color-primary-dark);border-color:var(--color-primary-dark);
  color:#fff;transform:translateY(-1px);box-shadow:0 6px 20px rgba(26,86,219,.35)}
.btn--primary:active{transform:translateY(0)}
.btn--outline{background:transparent;color:var(--color-primary);border-color:var(--color-primary)}
.btn--outline:hover{background:var(--color-primary);color:#fff}
.btn--ghost{background:transparent;color:var(--color-text);border-color:var(--color-border)}
.btn--ghost:hover{background:var(--color-bg-alt);border-color:var(--color-text-muted)}
.btn--lg{padding:1rem 2rem;font-size:1.125rem;border-radius:var(--radius-lg)}
.btn--sm{padding:.5rem 1rem;font-size:.875rem;border-radius:var(--radius-sm)}
.btn--full{width:100%}
.btn.is-loading{position:relative;color:transparent;pointer-events:none}
.btn.is-loading::after{content:'';position:absolute;width:18px;height:18px;
  border:2px solid rgba(255,255,255,.4);border-top-color:#fff;border-radius:50%;
  animation:spin .7s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}

/* ============================
   VISUALLY HIDDEN
   ============================ */
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.js-animate{opacity:0;transform:translateY(24px);transition:opacity .55s ease,transform .55s ease}
.js-animate.is-visible{opacity:1;transform:translateY(0)}
.delay-1{transition-delay:.1s}.delay-2{transition-delay:.2s}.delay-3{transition-delay:.3s}
.delay-4{transition-delay:.4s}.delay-5{transition-delay:.5s}.delay-6{transition-delay:.6s}
.delay-7{transition-delay:.7s}.delay-8{transition-delay:.8s}

/* ============================
   HEADER
   ============================ */
.site-header{position:sticky;top:0;left:0;right:0;z-index:100;height:var(--header-h);
  background:var(--color-bg);border-bottom:1px solid var(--color-border);
  box-shadow:0 1px 4px rgba(0,0,0,.06);transition:box-shadow var(--transition)}
.site-header.is-scrolled{box-shadow:var(--shadow-md)}
.site-header__inner{display:flex;align-items:center;justify-content:space-between;
  height:100%;gap:1.5rem;max-width:var(--container);margin:0 auto;padding:0 1.5rem}

/* Logo */
.site-logo{display:flex;align-items:center;gap:.75rem;flex-shrink:0;text-decoration:none}
.site-logo__image{height:36px;width:auto}
.site-logo__text{display:none;font-size:1.125rem;font-weight:700;color:var(--color-text);line-height:1.1}
.site-logo__text span{display:block;font-size:.75rem;font-weight:400;color:var(--color-text-muted);letter-spacing:.04em}
@media(min-width:640px){.site-logo__text{display:block}}

/* Desktop nav */
.site-nav{display:none}
@media(min-width:1024px){.site-nav{display:block}}
.site-nav__list{display:flex;align-items:center;gap:.25rem}
.site-nav__item{position:relative}
.site-nav__link{display:block;padding:.5rem .75rem;font-size:.875rem;font-weight:500;
  color:var(--color-text);border-radius:var(--radius-sm);transition:color var(--transition),background var(--transition);white-space:nowrap}
.site-nav__link:hover,.site-nav__link.is-active{color:var(--color-primary);background:var(--color-primary-light)}
.site-nav__dropdown{position:absolute;top:calc(100% + .5rem);left:0;min-width:220px;
  background:var(--color-bg);border:1px solid var(--color-border);border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);padding:.5rem;opacity:0;pointer-events:none;
  transform:translateY(-8px);transition:opacity var(--transition),transform var(--transition);z-index:10}
.site-nav__item:hover .site-nav__dropdown{opacity:1;pointer-events:all;transform:translateY(0)}
.site-nav__dropdown a{display:block;padding:.5rem .75rem;font-size:.875rem;color:var(--color-text);
  border-radius:var(--radius-sm);transition:color var(--transition),background var(--transition)}
.site-nav__dropdown a:hover{color:var(--color-primary);background:var(--color-primary-light)}

/* Header contacts */
.header-contacts{display:flex;align-items:center;gap:1rem;flex-shrink:0}
.header-contacts__phone{display:none;flex-direction:column;text-align:right}
@media(min-width:768px){.header-contacts__phone{display:flex}}
.header-contacts__phone a{font-size:1.125rem;font-weight:700;color:var(--color-text);
  letter-spacing:-.02em;line-height:1}
.header-contacts__phone a:hover{color:var(--color-primary)}
.header-contacts__phone span{font-size:.75rem;color:var(--color-text-muted);margin-top:.25rem}

/* Burger */
.burger{display:flex;align-items:center;justify-content:center;width:40px;height:40px;
  border-radius:var(--radius-md);cursor:pointer;padding:.5rem;transition:background var(--transition)}
@media(min-width:1024px){.burger{display:none}}
.burger:hover{background:var(--color-bg-alt)}
.burger__icon{width:22px;height:16px;position:relative;display:flex;flex-direction:column;justify-content:space-between}
.burger__icon span{display:block;height:2px;background:var(--color-text);border-radius:2px;
  transition:all var(--transition);transform-origin:left center}
.burger.is-open .burger__icon span:nth-child(1){transform:rotate(45deg) translate(1px,-1px)}
.burger.is-open .burger__icon span:nth-child(2){opacity:0;transform:scaleX(0)}
.burger.is-open .burger__icon span:nth-child(3){transform:rotate(-45deg) translate(1px,1px)}

/* Mobile drawer */
.mobile-nav{position:fixed;inset:0;z-index:300;pointer-events:none}
.mobile-nav__overlay{position:absolute;inset:0;background:rgba(0,0,0,.5);opacity:0;transition:opacity var(--transition)}
.mobile-nav__drawer{position:absolute;top:0;right:0;bottom:0;width:min(320px,90vw);
  background:var(--color-bg);padding:1.5rem;overflow-y:auto;transform:translateX(100%);
  transition:transform .45s ease;display:flex;flex-direction:column;gap:1.5rem}
.mobile-nav.is-open{pointer-events:all}
.mobile-nav.is-open .mobile-nav__overlay{opacity:1}
.mobile-nav.is-open .mobile-nav__drawer{transform:translateX(0)}
.mobile-nav__header{display:flex;align-items:center;justify-content:space-between}
.mobile-nav__close{display:flex;align-items:center;justify-content:center;width:36px;height:36px;
  border-radius:var(--radius-md);background:var(--color-bg-alt);font-size:20px;
  color:var(--color-text-muted);line-height:1}
.mobile-nav__close:hover{background:var(--color-border)}
.mobile-nav__list{display:flex;flex-direction:column;gap:.25rem}
.mobile-nav__link{display:block;padding:.75rem 1rem;font-size:1rem;font-weight:500;
  color:var(--color-text);border-radius:var(--radius-md);transition:color var(--transition),background var(--transition)}
.mobile-nav__link:hover{color:var(--color-primary);background:var(--color-primary-light)}
.mobile-nav__phone{margin-top:auto;padding-top:1.5rem;border-top:1px solid var(--color-border)}
.mobile-nav__phone a{font-size:1.375rem;font-weight:700;color:var(--color-text)}
.mobile-nav__phone a:hover{color:var(--color-primary)}
.mobile-nav__phone span{display:block;font-size:.875rem;color:var(--color-text-muted);margin-top:.25rem}

/* ============================
   HERO
   ============================ */
.hero{position:relative;min-height:calc(100vh - var(--header-h));
  background:linear-gradient(135deg,#111827 0%,#1a2744 60%,#1A56DB 100%);
  overflow:hidden;display:flex;align-items:center;padding:4rem 0}
@media(min-width:768px){.hero{padding:5rem 0}}
.hero::before,.hero::after{content:'';position:absolute;border-radius:50%;pointer-events:none}
.hero::before{width:600px;height:600px;background:radial-gradient(circle,rgba(26,86,219,.2) 0%,transparent 70%);
  top:-200px;right:-100px}
.hero::after{width:400px;height:400px;background:radial-gradient(circle,rgba(245,158,11,.1) 0%,transparent 70%);
  bottom:-100px;left:10%}
.hero__inner{display:grid;gap:3rem;align-items:center;max-width:var(--container);
  margin:0 auto;padding:0 1.5rem;position:relative;z-index:1;width:100%}
@media(min-width:1024px){.hero__inner{grid-template-columns:1fr 1fr;gap:4rem}}
.hero__content{color:#fff}
.hero__label{display:inline-flex;align-items:center;gap:.5rem;font-size:.875rem;
  font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.65);margin-bottom:1.25rem}
.hero__label::before{content:'';display:inline-block;width:24px;height:2px;
  background:var(--color-accent);border-radius:2px}
.hero__title{font-size:clamp(2rem,5vw,4rem);font-weight:700;line-height:1.1;
  color:#fff;margin-bottom:1.25rem;letter-spacing:-.02em}
.hero__title em{font-style:normal;color:var(--color-accent)}
.hero__subtitle{font-size:clamp(1rem,2vw,1.125rem);color:rgba(255,255,255,.75);
  margin-bottom:2.5rem;max-width:520px;line-height:1.65}
.hero__actions{display:flex;align-items:center;flex-wrap:wrap;gap:1rem}
.hero__stats{display:flex;flex-wrap:wrap;gap:2rem;margin-top:3rem;
  padding-top:2rem;border-top:1px solid rgba(255,255,255,.15)}
.hero__stat-value{font-size:1.75rem;font-weight:700;color:#fff;line-height:1}
.hero__stat-label{font-size:.875rem;color:rgba(255,255,255,.6);margin-top:.25rem}
.hero__visual{display:none;position:relative}
@media(min-width:1024px){.hero__visual{display:block}}
.hero__image{width:100%;border-radius:var(--radius-xl);box-shadow:var(--shadow-lg);
  object-fit:cover;aspect-ratio:4/3}
.hero__badge{position:absolute;bottom:-1.5rem;left:-1.5rem;background:var(--color-bg);
  border-radius:var(--radius-lg);padding:1rem 1.25rem;box-shadow:var(--shadow-lg);
  display:flex;align-items:center;gap:.75rem;white-space:nowrap}
.hero__badge-icon{width:40px;height:40px;background:var(--color-primary-light);
  border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.hero__badge-icon svg{color:var(--color-primary)}
.hero__badge-text strong{display:block;font-size:1rem;font-weight:700;color:var(--color-text)}
.hero__badge-text span{font-size:.75rem;color:var(--color-text-muted)}
.scroll-hint{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
  color:rgba(255,255,255,.5);font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;
  animation:scrollBounce 2s ease infinite}
.scroll-hint__arrow{width:20px;height:20px;border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;transform:rotate(45deg)}
@keyframes scrollBounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(6px)}}

/* ============================
   SERVICES
   ============================ */
.services__grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:640px){.services__grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.services__grid{grid-template-columns:repeat(3,1fr)}}
.service-card{position:relative;overflow:hidden;background:var(--color-bg);
  border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:2rem;
  box-shadow:var(--shadow-card);transition:box-shadow var(--transition),transform var(--transition)}
.service-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-4px)}
.service-card:hover .service-card__icon-wrap{background:var(--color-primary)}
.service-card:hover .service-card__icon-wrap svg{color:#fff}
.service-card__number{position:absolute;top:1rem;right:1.5rem;font-size:72px;font-weight:700;
  color:var(--color-primary);opacity:.05;line-height:1;pointer-events:none;
  transition:opacity var(--transition)}
.service-card:hover .service-card__number{opacity:.08}
.service-card__icon-wrap{width:56px;height:56px;background:var(--color-primary-light);
  border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;
  margin-bottom:1.25rem;transition:background var(--transition);flex-shrink:0}
.service-card__icon-wrap svg{width:28px;height:28px;color:var(--color-primary);transition:color var(--transition)}
.service-card__title{font-size:1.125rem;font-weight:600;color:var(--color-text);
  margin-bottom:.75rem;line-height:1.3}
.service-card__text{font-size:.875rem;color:var(--color-text-muted);line-height:1.65;margin-bottom:0}
.service-card__link{display:inline-flex;align-items:center;gap:.25rem;margin-top:1.25rem;
  font-size:.875rem;font-weight:600;color:var(--color-primary);transition:gap var(--transition)}
.service-card__link:hover{gap:.75rem;color:var(--color-primary-dark)}
.service-card__link svg{width:16px;height:16px;flex-shrink:0}
.section__footer-btn{text-align:center;margin-top:2.5rem}

/* ============================
   ABOUT
   ============================ */
.about__inner{display:grid;gap:3rem;align-items:center;max-width:var(--container);
  margin:0 auto;padding:0 1.5rem}
@media(min-width:1024px){.about__inner{grid-template-columns:1fr 1fr;gap:4rem}}
.about__image-wrap{position:relative;border-radius:var(--radius-xl);overflow:hidden;
  box-shadow:var(--shadow-lg);aspect-ratio:4/3}
.about__image{width:100%;height:100%;object-fit:cover}
.about__badge{position:absolute;bottom:1.5rem;right:1.5rem;background:var(--color-primary);
  color:#fff;border-radius:var(--radius-lg);padding:1rem 1.25rem;text-align:center;box-shadow:var(--shadow-md)}
.about__badge strong{display:block;font-size:1.75rem;font-weight:700;line-height:1}
.about__badge span{font-size:.75rem;opacity:.8;margin-top:.25rem;display:block}
.about__list{display:flex;flex-direction:column;gap:1.25rem;margin-top:1.5rem}
.about__list-item{display:flex;align-items:flex-start;gap:1rem}
.about__list-item-icon{width:36px;height:36px;background:var(--color-primary-light);
  border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:2px}
.about__list-item-icon svg{width:18px;height:18px;color:var(--color-primary)}
.about__list-item-text strong{display:block;font-weight:600;margin-bottom:.25rem}
.about__list-item-text p{font-size:.875rem;color:var(--color-text-muted);margin:0}

/* ============================
   NUMBERS (STATS STRIP)
   ============================ */
.numbers{background:var(--color-primary);padding:4rem 0}
.numbers__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem;
  max-width:var(--container);margin:0 auto;padding:0 1.5rem}
@media(min-width:768px){.numbers__grid{grid-template-columns:repeat(4,1fr)}}
.number-item{text-align:center;color:#fff}
.number-item__value{font-size:clamp(2.25rem,5vw,3rem);font-weight:700;line-height:1;
  margin-bottom:.5rem;letter-spacing:-.02em}
.number-item__label{font-size:.875rem;color:rgba(255,255,255,.7);line-height:1.4}

/* ============================
   ADVANTAGES
   ============================ */
.advantages__grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
@media(min-width:640px){.advantages__grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1280px){.advantages__grid{grid-template-columns:repeat(4,1fr)}}
.advantage-item{display:flex;flex-direction:column;align-items:flex-start;gap:1rem;
  padding:1.5rem;background:var(--color-bg);border-radius:var(--radius-lg);
  border:1px solid var(--color-border);transition:box-shadow var(--transition)}
.advantage-item:hover{box-shadow:var(--shadow-md)}
.advantage-item__icon{width:48px;height:48px;background:var(--color-primary-light);
  border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center}
.advantage-item__icon svg{width:24px;height:24px;color:var(--color-primary)}
.advantage-item__title{font-size:1rem;font-weight:600;color:var(--color-text);line-height:1.3}
.advantage-item__text{font-size:.875rem;color:var(--color-text-muted);line-height:1.6;margin:0}

/* ============================
   CTA / CONTACT SECTION
   ============================ */
.cta-section{position:relative;overflow:hidden;
  background:linear-gradient(135deg,#111827 0%,#1a2744 100%);padding:4rem 0}
@media(min-width:768px){.cta-section{padding:5rem 0}}
.cta-section__inner{display:grid;gap:3rem;align-items:start;max-width:var(--container);
  margin:0 auto;padding:0 1.5rem;position:relative;z-index:1}
@media(min-width:1024px){.cta-section__inner{grid-template-columns:1fr 480px;gap:4rem}}
.cta-section__content{color:#fff}
.cta-section__content h2{color:#fff;margin-bottom:1rem}
.cta-section__content p{color:rgba(255,255,255,.7);font-size:1.125rem}
.cta-section__points{display:flex;flex-direction:column;gap:.75rem;margin-top:1.5rem}
.cta-section__point{display:flex;align-items:center;gap:.75rem;font-size:.875rem;color:rgba(255,255,255,.8)}
.cta-section__point::before{content:'';width:20px;height:20px;flex-shrink:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%231A56DB'/%3E%3Cpath d='M6 10l2.5 2.5L14 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size:contain;background-repeat:no-repeat}

/* Contact form card */
.contact-form-card{background:var(--color-bg);border-radius:var(--radius-xl);padding:2rem;box-shadow:var(--shadow-lg)}
.contact-form-card__title{font-size:1.375rem;font-weight:700;color:var(--color-text);margin-bottom:.5rem}
.contact-form-card__subtitle{font-size:.875rem;color:var(--color-text-muted);margin-bottom:1.5rem}

/* Form elements */
.vp-form{display:flex;flex-direction:column;gap:1rem}
.vp-form__field{display:flex;flex-direction:column;gap:.25rem}
.vp-form__label{font-size:.875rem;font-weight:500;color:var(--color-text)}
.vp-form__label.required::after{content:' *';color:var(--color-error)}
.vp-form__input,.vp-form__textarea{width:100%;padding:.75rem 1rem;font-size:1rem;
  color:var(--color-text);background:var(--color-bg);border:1px solid var(--color-border);
  border-radius:var(--radius-md);transition:border-color var(--transition),box-shadow var(--transition)}
.vp-form__input::placeholder,.vp-form__textarea::placeholder{color:var(--color-text-light)}
.vp-form__input:focus,.vp-form__textarea:focus{outline:none;border-color:var(--color-primary);
  box-shadow:0 0 0 3px rgba(26,86,219,.15)}
.vp-form__input.is-error,.vp-form__textarea.is-error{border-color:var(--color-error);
  box-shadow:0 0 0 3px rgba(239,68,68,.12)}
.vp-form__textarea{min-height:100px;resize:vertical}
.vp-form__error{font-size:.75rem;color:var(--color-error);display:none}
.vp-form__error.is-visible{display:block}
.vp-form__checkbox{display:flex;align-items:flex-start;gap:.75rem;cursor:pointer}
.vp-form__checkbox input[type="checkbox"]{width:18px;height:18px;border:1px solid var(--color-border);
  border-radius:var(--radius-sm);appearance:none;flex-shrink:0;margin-top:2px;cursor:pointer;
  transition:background var(--transition),border-color var(--transition);background:var(--color-bg);position:relative}
.vp-form__checkbox input[type="checkbox"]:checked{background:var(--color-primary);border-color:var(--color-primary)}
.vp-form__checkbox input[type="checkbox"]:checked::after{content:'';position:absolute;
  top:2px;left:5px;width:6px;height:10px;border-right:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(45deg)}
.vp-form__checkbox-text{font-size:.875rem;color:var(--color-text-muted);line-height:1.5}
.vp-form__checkbox-text a{color:var(--color-primary);text-decoration:underline;text-underline-offset:2px}
.vp-form__submit{margin-top:.5rem}
/* Success */
.vp-form__success{display:none;text-align:center;padding:2rem}
.vp-form__success.is-visible{display:block}
.vp-form__success-icon{width:64px;height:64px;background:rgba(16,185,129,.12);border-radius:50%;
  display:flex;align-items:center;justify-content:center;margin:0 auto 1rem}
.vp-form__success-icon svg{width:32px;height:32px;color:var(--color-success)}
.vp-form__success h3{margin-bottom:.5rem}
.vp-form__success p{color:var(--color-text-muted)}

/* Bitrix24 widget override */
.b24-form-wrapper{border:none!important;box-shadow:none!important}

/* ============================
   BREADCRUMBS
   ============================ */
.breadcrumbs{padding:1rem 0;border-bottom:1px solid var(--color-border)}
.breadcrumbs__inner{display:flex;align-items:center;flex-wrap:wrap;gap:.5rem;
  font-size:.875rem;color:var(--color-text-muted);max-width:var(--container);
  margin:0 auto;padding:0 1.5rem}
.breadcrumbs__item{display:flex;align-items:center;gap:.5rem}
.breadcrumbs__item:not(:last-child)::after{content:'/';color:var(--color-border)}
.breadcrumbs__link{color:var(--color-text-muted)}
.breadcrumbs__link:hover{color:var(--color-primary)}
.breadcrumbs__current{color:var(--color-text);font-weight:500}

/* ============================
   FOOTER
   ============================ */
.site-footer{background:var(--color-bg-dark);color:rgba(255,255,255,.7)}
.site-footer__top{display:grid;grid-template-columns:1fr;gap:2.5rem;
  max-width:var(--container);margin:0 auto;padding:3rem 1.5rem}
@media(min-width:768px){.site-footer__top{grid-template-columns:280px 1fr}}
@media(min-width:1024px){.site-footer__top{grid-template-columns:280px 1fr 1fr 1fr}}
.site-footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding:1.5rem 0}
.site-footer__bottom-inner{display:flex;flex-direction:column;align-items:center;
  gap:.75rem;text-align:center;max-width:var(--container);margin:0 auto;padding:0 1.5rem}
@media(min-width:768px){.site-footer__bottom-inner{flex-direction:row;justify-content:space-between;text-align:left}}
.site-footer__copy{font-size:.875rem;color:rgba(255,255,255,.4)}
.site-footer__copy a{color:rgba(255,255,255,.4)}
.site-footer__copy a:hover{color:rgba(255,255,255,.8)}
.site-footer__legal{display:flex;align-items:center;flex-wrap:wrap;gap:1rem}
.site-footer__legal a{font-size:.875rem;color:rgba(255,255,255,.4);transition:color var(--transition)}
.site-footer__legal a:hover{color:rgba(255,255,255,.8)}

/* Footer brand */
.footer-brand__logo{display:inline-block;margin-bottom:1rem;filter:brightness(0) invert(1);opacity:.85}
.footer-brand__logo img{height:32px}
.footer-brand__desc{font-size:.875rem;line-height:1.65;color:rgba(255,255,255,.5);margin-bottom:1.5rem}
.footer-brand__phone{display:flex;flex-direction:column;gap:.25rem;margin-bottom:1rem}
.footer-brand__phone a{font-size:1.125rem;font-weight:700;color:#fff;line-height:1}
.footer-brand__phone a:hover{color:var(--color-accent)}
.footer-brand__phone span{font-size:.75rem;color:rgba(255,255,255,.4)}
.footer-brand__socials{display:flex;align-items:center;gap:.75rem}
.footer-brand__social-link{width:36px;height:36px;background:rgba(255,255,255,.08);
  border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;
  transition:background var(--transition)}
.footer-brand__social-link svg{width:18px;height:18px;color:rgba(255,255,255,.7)}
.footer-brand__social-link:hover{background:var(--color-primary)}
.footer-brand__social-link:hover svg{color:#fff}
.footer-nav__title{font-size:.875rem;font-weight:600;color:#fff;
  letter-spacing:.06em;text-transform:uppercase;margin-bottom:1.25rem}
.footer-nav__list{display:flex;flex-direction:column;gap:.75rem}
.footer-nav__link{font-size:.875rem;color:rgba(255,255,255,.5);transition:color var(--transition)}
.footer-nav__link:hover{color:#fff}

/* ============================
   SCROLL TO TOP
   ============================ */
.scroll-top{position:fixed;bottom:1.5rem;right:1.5rem;width:44px;height:44px;
  background:var(--color-primary);border-radius:50%;display:flex;align-items:center;
  justify-content:center;box-shadow:var(--shadow-md);z-index:100;opacity:0;
  pointer-events:none;transform:translateY(12px);transition:opacity var(--transition),transform var(--transition)}
.scroll-top svg{width:20px;height:20px;color:#fff}
.scroll-top.is-visible{opacity:1;pointer-events:all;transform:translateY(0)}
.scroll-top:hover{background:var(--color-primary-dark);transform:translateY(-2px)}

/* ============================
   COOKIE BAR
   ============================ */
.cookie-bar{position:fixed;bottom:0;left:0;right:0;background:var(--color-bg-dark);
  color:rgba(255,255,255,.8);z-index:400;padding:1rem 0;
  border-top:1px solid rgba(255,255,255,.1);transform:translateY(100%);transition:transform .45s ease}
.cookie-bar.is-visible{transform:translateY(0)}
.cookie-bar__inner{display:flex;flex-direction:column;align-items:flex-start;gap:1rem;
  max-width:var(--container);margin:0 auto;padding:0 1.5rem}
@media(min-width:768px){.cookie-bar__inner{flex-direction:row;align-items:center;justify-content:space-between}}
.cookie-bar__text{font-size:.875rem;line-height:1.5}
.cookie-bar__text a{color:rgba(255,255,255,.6);text-decoration:underline}
.cookie-bar__text a:hover{color:#fff}
.cookie-bar__actions{display:flex;align-items:center;gap:.75rem;flex-shrink:0}

/* ============================
   MAP
   ============================ */
.map-section{height:400px;background:var(--color-bg-alt);border-top:1px solid var(--color-border)}
.map-section iframe{width:100%;height:100%;border:none;display:block}

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero{background:var(--color-bg-alt);border-bottom:1px solid var(--color-border);padding:3rem 0}
.page-hero__inner{max-width:var(--container);margin:0 auto;padding:0 1.5rem}
.page-hero__label{display:inline-block;font-size:.875rem;font-weight:600;
  color:var(--color-primary);letter-spacing:.08em;text-transform:uppercase;margin-bottom:.75rem}
.page-hero__title{margin-bottom:.75rem}
.page-hero__desc{font-size:1.125rem;color:var(--color-text-muted);max-width:640px}

/* ============================
   PRINT
   ============================ */
@media print{
  .site-header,.mobile-nav,.scroll-top,.cookie-bar,.hero .scroll-hint{display:none!important}
  body{font-size:12pt}
}
