/* ФАЙЛ: СТИЛІ ПУБЛІЧНОГО САЙТУ. Тут оформлюються шапка, секції, футер, адаптив і анімації. */
/* =========================================================
   ОСНОВНІ СТИЛІ ПУБЛІЧНОГО САЙТУ VIPTRANS
   Цей файл відповідає за:
   - базову типографіку;
   - шапку, банер і секції сайту;
   - картки, кнопки, футер;
   - адаптивність і анімацію при прокрутці.
   ========================================================= */

/* === БАЗОВІ НАЛАШТУВАННЯ === */
/* === БАЗОВІ ЗМІННІ ТЕМИ: кольори, радіуси, тіні === */
:root{
  --bg:#f4f7fb;
  --surface:#ffffff;
  --surface-soft:#f8fbfe;
  --surface-dark:#102338;
  --surface-darker:#0c1b2a;
  --brand:#184f9d;
  --brand-strong:#123f7d;
  --brand-light:#2d6dc7;
  --text:#122033;
  --muted:#5c6c80;
  --line:#d9e3ee;
  --line-strong:#bfd0e3;
  --white:#ffffff;
  --success:#0d7c4a;
  --shadow:0 18px 40px rgba(15,32,55,.08);
  --shadow-strong:0 20px 45px rgba(7,18,31,.18);
  --radius-xl:30px;
  --radius-lg:24px;
  --radius-md:18px;
  --radius-sm:14px;
  --container:1180px;
  --font-main:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --fs-body:16px;
  --lh-body:1.7;
  --fs-overline:12px;
  --fs-small:14px;
  --fs-h1:clamp(42px,6vw,66px);
  --fs-h2:clamp(30px,4vw,44px);
  --fs-h3:24px;
  --fs-h4:20px;
}
/* === БАЗОВЕ СКИДАННЯ СТИЛІВ === */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-main);
  font-size:var(--fs-body);
  line-height:var(--lh-body);
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(52,125,235,.12), transparent 32%),
    radial-gradient(circle at top right, rgba(16,35,56,.10), transparent 28%),
    var(--bg);
}
body.document-page{background:#f3f6fa}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
button{cursor:pointer}
.container{width:min(calc(100% - 48px), var(--container));margin:0 auto}
/* === УНІВЕРСАЛЬНІ СЕКЦІЇ САЙТУ === */
.section{padding:96px 0}
.section-muted{background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(244,248,252,.88))}
.section-dark{background:linear-gradient(180deg,#102338 0%, #0d1b2a 100%);color:#fff}
.section-dark .section-subtext,.section-dark .adv-card p,.section-dark .section-kicker{color:#c8d5e2}
main p{margin:0 0 16px}
ul{margin:0;padding:0;list-style:none}
h1,h2,h3,h4{margin:0;letter-spacing:-.02em}
h1{font-size:var(--fs-h1);line-height:1.05}
h2{font-size:var(--fs-h2);line-height:1.12}
h3{font-size:var(--fs-h3);line-height:1.2}
h4{font-size:var(--fs-h4);line-height:1.25}
p,li,a,span,strong,small{line-height:inherit}

.eyebrow,
.section-kicker,
.panel-label,
.footer-title,
.footer-legal-title,
.document-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 14px;
  font-size:var(--fs-overline);
  line-height:1.2;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--brand);
}
.eyebrow::before,
.document-kicker::before{
  content:"";
  width:28px;
  height:2px;
  border-radius:999px;
  background:currentColor;
}
.section-head{display:grid;gap:14px;margin-bottom:32px}
.section-subtext{
  max-width:66ch;
  color:var(--muted);
  font-size:18px;
  line-height:1.72;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:14px 24px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  font-size:16px;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color:#fff;
  box-shadow:0 14px 30px rgba(24,79,157,.26);
}
.btn-primary:hover{box-shadow:0 18px 34px rgba(24,79,157,.34)}
.btn-secondary{
  background:#fff;
  color:var(--text);
  border-color:var(--line);
  box-shadow:0 12px 26px rgba(18,32,51,.08);
}
.btn-secondary:hover{border-color:var(--line-strong)}

/* === ШАПКА === */
/* === ШАПКА САЙТУ === */
.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(16,35,56,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 14px 34px rgba(5,18,31,.22);
}
.header-inner{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.logo-mark{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:18px;
  color:#fff;
  background:linear-gradient(135deg,#2d6dc7 0%,#1aa4e8 100%);
  box-shadow:0 14px 24px rgba(27,99,196,.35);
}
.logo-text{display:grid;gap:3px;min-width:0}
.logo-text strong{
  color:#fff;
  font-size:20px;
  line-height:1.05;
}
.logo-text small{
  color:#c4d3e4;
  font-size:13px;
  line-height:1.3;
}
.header-nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.header-nav > a:not(.header-call){
  padding:10px 14px;
  border-radius:999px;
  color:#d5e1ed;
  font-weight:600;
}
.header-nav > a:not(.header-call):hover{background:rgba(255,255,255,.08);color:#fff}
.header-call{
  padding:12px 20px;
  border-radius:999px;
  color:#fff;
  font-weight:800;
  background:linear-gradient(135deg,#2d6dc7 0%, #1e5ab2 100%);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 14px 28px rgba(0,0,0,.18);
}
.header-call:hover{
  background:linear-gradient(135deg,#3777d2 0%, #245fb8 100%);
}
.menu-toggle{
  display:none;
  width:50px;
  height:50px;
  padding:0;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.menu-toggle span{
  width:20px;
  height:2px;
  border-radius:999px;
  background:#fff;
}
.mobile-menu{display:none;border-top:1px solid rgba(255,255,255,.08)}
.mobile-menu.is-open{display:block}
.mobile-menu-inner{
  display:grid;
  gap:10px;
  padding:14px 0 18px;
}
.mobile-menu-inner a{
  padding:14px 16px;
  border-radius:16px;
  color:#fff;
  background:rgba(255,255,255,.06);
}
.mobile-menu-inner .header-call{justify-content:center}

/* === БАНЕР / ПЕРШИЙ ЕКРАН === */
.hero{padding:54px 0 40px}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.16fr) minmax(330px,.84fr);
  gap:28px;
  align-items:stretch;
}
.hero-copy,
.hero-card,
.about-copy,
.fact-card,
.service-card,
.adv-card,
.timeline-card,
.contact-info-card,
.cta-shell{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
}
.hero-copy{
  padding:42px;
  background:
    radial-gradient(circle at top right, rgba(48,113,209,.10), transparent 30%),
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}
.hero-text{
  max-width:62ch;
  margin:0 0 26px;
  color:var(--muted);
  font-size:18px;
  line-height:1.74;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin:0 0 28px}
.hero-list{
  display:grid;
  gap:12px;
  margin-top:8px;
}
.hero-list li{
  position:relative;
  padding-left:26px;
  color:var(--text);
  font-weight:600;
}
.hero-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.7em;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 0 5px rgba(24,79,157,.12);
}
.hero-panel{display:flex}
.hero-card{
  width:100%;
  padding:34px;
  background:linear-gradient(180deg,#102338 0%, #143454 100%);
  color:#fff;
  box-shadow:var(--shadow-strong);
}
.hero-card .panel-label{color:#9fc4ff}
.hero-card p{color:#d3dfeb}
.contact-card-stack{
  display:grid;
  gap:14px;
  margin-top:26px;
}
.contact-card{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  border-radius:22px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.10);
}
.contact-card span{
  color:#b8cbe0;
  font-size:14px;
  font-weight:600;
}
.contact-card strong{
  color:#fff;
  font-size:21px;
  line-height:1.25;
}
.worktime-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:18px;
  padding:16px 20px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.worktime-box span{
  color:#b8cbe0;
  font-size:14px;
  font-weight:600;
}
.worktime-box strong{font-size:18px;color:#fff}

/* === ПРО КОМПАНІЮ / КАРТКИ === */
/* === БЛОК "ПРО КОМПАНІЮ" === */
.about-stack{
  display:grid;
  gap:24px;
}
.about-copy{
  position:relative;
  padding:38px 40px;
  font-size:18px;
  line-height:1.82;
  background:linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,251,255,1) 100%);
  overflow:hidden;
}
.about-copy::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:6px;
  background:linear-gradient(180deg, var(--brand) 0%, var(--brand-light) 100%);
}
.about-copy::after{
  content:"";
  position:absolute;
  inset:auto -50px -70px auto;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(55,125,219,.16) 0%, rgba(55,125,219,0) 72%);
}
.about-copy p{
  position:relative;
  z-index:1;
  max-width:100ch;
}
.about-copy p:last-child{margin-bottom:0}
.fact-grid,
.cards-three,
.cards-four,
.timeline-grid,
/* === БЛОК КОНТАКТІВ === */
.contacts-grid{
  display:grid;
  gap:20px;
}
.fact-grid{grid-template-columns:repeat(3, minmax(0,1fr))}
/* === СІТКИ КАРТОК: ПОСЛУГИ / ПЕРЕВАГИ / ЕТАПИ === */
.cards-three{grid-template-columns:repeat(3, minmax(0,1fr))}
.cards-four{grid-template-columns:repeat(4, minmax(0,1fr))}
.timeline-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
.contacts-grid{grid-template-columns:repeat(2, minmax(0,1fr))}

.fact-card,
.service-card,
.adv-card,
.timeline-card,
.contact-info-card{
  padding:28px;
}
.fact-num{
  display:inline-flex;
  margin-bottom:18px;
  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--brand);
}
.fact-card h3,
.service-card h3,
.adv-card h3,
.timeline-card h3,
.contact-info-card strong{
  margin:0 0 12px;
  font-size:22px;
}
.fact-card p,
.service-card p,
.adv-card p,
.timeline-card p,
.contact-info-card p,
.contact-meta,
.footer-note{
  color:var(--muted);
  font-size:16px;
  line-height:1.72;
}
.adv-card{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  box-shadow:none;
}
.adv-card h3{color:#fff}
.adv-card p{color:#c7d6e5}
.step-badge{
  display:inline-grid;
  place-items:center;
  width:48px;
  height:48px;
  margin-bottom:18px;
  border-radius:16px;
  background:rgba(24,79,157,.12);
  color:var(--brand);
  font-size:18px;
  font-weight:800;
}
.contact-label{
  display:block;
  margin-bottom:12px;
  color:var(--brand);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:800;
}
.contact-line{
  display:inline-flex;
  gap:8px;
  flex-wrap:wrap;
}
.contact-line strong{margin:0}
.contact-meta{margin-top:10px}

/* === CTA === */
.cta-shell{
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:linear-gradient(135deg,#ffffff 0%,#f3f7fd 100%);
}
.cta-shell h2{max-width:15ch;margin-bottom:12px}
.cta-shell p{max-width:60ch;color:var(--muted);margin:0}
.cta-shell .btn{flex-shrink:0}

/* === ФУТЕР === */
/* === ФУТЕР САЙТУ === */
.site-footer{
  padding:44px 0 92px;
  background:linear-gradient(180deg,#0f1d2c 0%, #0c1926 100%);
  color:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.15fr .75fr 1fr 1fr;
  gap:24px;
  padding-bottom:28px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-column{
  display:grid;
  align-content:start;
  gap:12px;
}
.footer-logo-row{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:8px;
}
.footer-brand-copy strong{
  display:block;
  margin-bottom:10px;
  font-size:22px;
  line-height:1.1;
}
.footer-brand-copy p{
  margin:0;
  color:#c4d2df;
}
.footer-title,
.footer-legal-title{
  color:#9fb8d4;
}
.footer-column a,
.footer-inline-link{color:#fff}
.footer-column a:hover,
.footer-link:hover,
.footer-inline-link:hover{opacity:.88}
.footer-contact strong{
  margin:0;
  font-size:18px;
  color:#fff;
}
.footer-meta{color:#c4d2df}
.footer-doc-link{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:11px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.footer-note{
  margin:6px 0 0;
  color:#afc0d1;
  font-size:14px;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding-top:20px;
}
.footer-bottom p{
  margin:0;
  color:#c4d2df;
  font-size:15px;
}
.footer-link{
  color:#fff;
  font-weight:700;
}



/* === АНІМАЦІЯ ПРИ СКРОЛІ === */
/* === АНІМАЦІЯ ПОЯВИ ПРИ ПРОКРУТЦІ === */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease, filter .7s ease;
  will-change:opacity, transform;
  filter:blur(6px);
}
.reveal.is-visible{
  opacity:1;
  transform:none;
  filter:none;
}
.reveal:nth-child(2){transition-delay:.05s}
.reveal:nth-child(3){transition-delay:.1s}
.reveal:nth-child(4){transition-delay:.15s}
.reveal:nth-child(5){transition-delay:.2s}
.footer-admin-link{
  background:rgba(55,125,219,.22);
  border-color:rgba(109,165,238,.42);
}
.footer-admin-link:hover{
  background:rgba(55,125,219,.34);
}

/* === СТОРІНКИ ДОКУМЕНТІВ === */
.document-main{padding-bottom:80px}
.document-hero{padding:44px 0 22px}
.document-shell{
  background:linear-gradient(180deg,#fff 0%,#f6f9fd 100%);
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
  padding:40px;
}
.document-shell h1{margin-bottom:14px}
.document-shell p{
  color:var(--muted);
  font-size:18px;
  line-height:1.72;
}
.document-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.document-badge{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:10px 14px;
  border-radius:999px;
  background:#eef4fb;
  color:var(--brand-strong);
  font-size:14px;
  font-weight:700;
  border:1px solid #d8e5f2;
}
.document-grid{
  display:grid;
  gap:20px;
  margin-top:22px;
}
.document-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:28px;
}
.document-card h2{
  margin-bottom:14px;
  font-size:28px;
}
.document-card h3{
  margin:22px 0 10px;
  font-size:20px;
}
.document-card p,
.document-card li{
  color:var(--muted);
  font-size:16px;
  line-height:1.78;
}
.document-card ul,
.document-card ol{
  margin:0;
  padding-left:22px;
}
.document-card li + li{margin-top:10px}
.document-note{
  margin-top:16px;
  padding:16px 18px;
  border-radius:18px;
  background:#f3f8fe;
  border:1px solid #d9e6f2;
  color:var(--brand-strong);
  font-weight:600;
}
.document-contact-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
.document-contact-item{
  padding:18px 20px;
  border-radius:20px;
  background:#f8fbff;
  border:1px solid var(--line);
}
.document-contact-item span{
  display:block;
  margin-bottom:8px;
  color:var(--brand);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:800;
}
.document-contact-item strong,
.document-contact-item a{
  color:var(--text);
  font-size:18px;
  font-weight:700;
}
.doc-nav-link{
  padding:10px 14px;
  border-radius:999px;
  color:#d5e1ed;
  font-weight:600;
}
.doc-nav-link:hover{background:rgba(255,255,255,.08);color:#fff}

/* === МОБІЛЬНА ПАНЕЛЬ === */
.mobile-bar{display:none}

/* === АДАПТИВ === */
@media (max-width:1100px){
  .hero-grid,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
  .fact-grid{grid-template-columns:1fr}
  .cards-three{grid-template-columns:repeat(2, minmax(0,1fr))}
  .cards-four,
  .timeline-grid,
  .contacts-grid,
  .document-contact-list{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:900px){
  .header-nav{display:none}
  .menu-toggle{display:flex}
  .section{padding:78px 0}
  .hero{padding-top:34px}
  .cards-three,
  .cards-four,
  .timeline-grid,
  .contacts-grid,
  .footer-grid,
  .document-contact-list{
    grid-template-columns:1fr;
  }
  .hero-copy,
  .hero-card,
  .about-copy,
  .fact-card,
  .service-card,
  .adv-card,
  .timeline-card,
  .contact-info-card,
  .cta-shell,
  .document-shell,
  .document-card{
    border-radius:24px;
  }
  .mobile-bar{
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    z-index:42;
  }
  .btn-mobile{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:52px;
    padding:14px 16px;
    border-radius:16px;
    font-weight:800;
    box-shadow:0 16px 34px rgba(0,0,0,.2);
  }
  .btn-mobile-main{background:var(--brand);color:#fff}
  .btn-mobile-secondary{background:#fff;color:var(--text);border:1px solid var(--line)}
}
@media (max-width:700px){
  .container{width:min(100% - 24px, var(--container))}
  .hero-copy,
  .hero-card,
  .about-copy,
  .fact-card,
  .service-card,
  .adv-card,
  .timeline-card,
  .contact-info-card,
  .cta-shell,
  .document-shell,
  .document-card{
    padding:22px;
  }
  .header-inner{min-height:76px}
  .logo-mark{width:46px;height:46px;border-radius:14px}
  .logo-text strong{font-size:18px}
  .hero-actions,
  .cta-shell,
  .footer-bottom,
  .footer-logo-row{
    flex-direction:column;
    align-items:flex-start;
  }
  .worktime-box,
  .contact-card{
    flex-direction:column;
    align-items:flex-start;
  }
  .document-shell h1{font-size:clamp(34px,9vw,48px)}
  .document-meta{flex-direction:column}
}

.footer-note:empty{display:none}

/* =========================================================
   ДОДАТКОВІ СТИЛІ ДЛЯ ДИНАМІЧНИХ КАРТОК ІЗ ФОТО
   - відображення доданих з адмінки зображень;
   - гнучкі сітки для довільної кількості підпунктів.
   ========================================================= */

.dynamic-grid{
  align-items:stretch;
}
.card-media{
  margin:-8px -8px 18px;
  border-radius:22px;
  overflow:hidden;
  aspect-ratio:16/10;
  background:linear-gradient(180deg,#edf4fb 0%,#dfe8f5 100%);
  border:1px solid rgba(18,32,51,.06);
}
.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.card-media-dark{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.12);
}

.fact-grid{
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}
.cards-three{
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
}
.cards-four{
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.timeline-grid{
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

/* =========================================================
   BALIAR VIPTRANS — ЧЕРНО-КРАСНАЯ ТЕМА + ЛОГОТИП
   ========================================================= */
:root{
  --bg:#070707;
  --surface:#111111;
  --surface-soft:#171717;
  --surface-dark:#070707;
  --surface-darker:#030303;
  --brand:#e6121c;
  --brand-strong:#ff1f2a;
  --brand-light:#ff343f;
  --text:#f6f6f6;
  --muted:#b8b8b8;
  --line:rgba(255,255,255,.12);
  --line-strong:rgba(230,18,28,.55);
  --shadow:0 22px 50px rgba(0,0,0,.34);
  --shadow-strong:0 28px 70px rgba(0,0,0,.52);
}

body,
body.document-page{
  color:var(--text);
  background:
    radial-gradient(circle at 12% 2%, rgba(230,18,28,.24), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(230,18,28,.12), transparent 28%),
    linear-gradient(180deg,#050505 0%,#111 42%,#070707 100%);
}

.site-header{
  background:rgba(5,5,5,.94);
  border-bottom:1px solid rgba(230,18,28,.28);
  box-shadow:0 18px 48px rgba(0,0,0,.5);
}
.header-inner{min-height:92px}
.logo{gap:16px}
.logo-mark{
  width:108px;
  height:68px;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  overflow:visible;
}
.logo-mark img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.58));
}
.logo-text strong{color:#fff;letter-spacing:.02em;text-transform:uppercase}
.logo-text small{color:#d7d7d7}
.header-nav > a:not(.header-call){color:#f1f1f1}
.header-nav > a:not(.header-call):hover{background:rgba(230,18,28,.16);color:#fff}
.header-call,
.btn-primary{
  background:linear-gradient(135deg,#e6121c 0%,#9d070d 100%);
  border-color:rgba(255,255,255,.12);
  box-shadow:0 16px 36px rgba(230,18,28,.25);
}
.header-call:hover,
.btn-primary:hover{
  background:linear-gradient(135deg,#ff2631 0%,#b90710 100%);
  box-shadow:0 20px 46px rgba(230,18,28,.34);
}
.btn-secondary{
  background:rgba(255,255,255,.04);
  color:#fff;
  border-color:rgba(230,18,28,.68);
  box-shadow:none;
}
.btn-secondary:hover{border-color:#ff343f;background:rgba(230,18,28,.12)}
.menu-toggle{background:rgba(230,18,28,.16);border:1px solid rgba(230,18,28,.34)}
.mobile-menu{background:rgba(5,5,5,.96)}
.mobile-menu-inner a{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08)}

.section{position:relative}
.section-muted,
.section-dark{
  background:
    linear-gradient(180deg,rgba(255,255,255,.025),rgba(0,0,0,.08)),
    #0b0b0b;
  color:#fff;
}
.section-dark .section-subtext,
.section-dark .adv-card p,
.section-dark .section-kicker{color:#d0d0d0}
.section-head h2{color:#fff}
.section-subtext{color:#c4c4c4}
.eyebrow,
.section-kicker,
.panel-label,
.footer-title,
.footer-legal-title,
.document-kicker{
  color:var(--brand-strong);
}

.hero{
  padding:68px 0 58px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.90),rgba(0,0,0,.56)),
    radial-gradient(circle at 72% 28%,rgba(230,18,28,.28),transparent 34%);
  border-bottom:1px solid rgba(230,18,28,.18);
}
.hero-grid{grid-template-columns:minmax(0,1.15fr) minmax(330px,.85fr)}
.hero-copy,
.hero-card,
.about-copy,
.fact-card,
.service-card,
.adv-card,
.timeline-card,
.contact-info-card,
.cta-shell,
.document-shell,
.document-card{
  background:linear-gradient(180deg,rgba(25,25,25,.96),rgba(12,12,12,.98));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  color:#fff;
}
.hero-copy{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 6%,rgba(230,18,28,.24),transparent 34%),
    linear-gradient(180deg,#171717 0%,#0b0b0b 100%);
}
.hero-copy::after{
  content:"";
  position:absolute;
  inset:auto -90px -120px auto;
  width:340px;
  height:340px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(230,18,28,.18),transparent 70%);
  pointer-events:none;
}
.hero-copy > *{position:relative;z-index:1}
.hero-brand-logo{
  width:min(360px,100%);
  height:auto;
  margin:0 0 24px;
  filter:drop-shadow(0 18px 32px rgba(0,0,0,.55));
}
.hero-text,
.hero-card p,
.about-copy p,
.fact-card p,
.service-card p,
.adv-card p,
.timeline-card p,
.contact-info-card p,
.contact-meta,
.footer-note,
.cta-shell p,
.document-intro,
.document-card p,
.document-card li,
.document-note{
  color:#cfcfcf;
}
.hero-list li{color:#f1f1f1}
.hero-list li::before{background:var(--brand);box-shadow:0 0 0 5px rgba(230,18,28,.14)}
.hero-card{
  background:
    radial-gradient(circle at top right,rgba(230,18,28,.20),transparent 38%),
    linear-gradient(180deg,#151515 0%,#070707 100%);
  border-color:rgba(230,18,28,.24);
}
.hero-card .panel-label{color:#ff5961}
.contact-card,
.worktime-box{
  background:rgba(255,255,255,.045);
  border-color:rgba(230,18,28,.22);
}
.contact-card span,
.worktime-box span{color:#bdbdbd}

.about-copy::before{background:linear-gradient(180deg,#ff2b35,#8f050b)}
.about-copy::after{background:radial-gradient(circle,rgba(230,18,28,.18) 0%,rgba(230,18,28,0) 72%)}
.fact-card,
.service-card,
.timeline-card,
.contact-info-card{
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.fact-card:hover,
.service-card:hover,
.timeline-card:hover,
.contact-info-card:hover{
  transform:translateY(-3px);
  border-color:rgba(230,18,28,.46);
  box-shadow:0 24px 54px rgba(0,0,0,.48);
}
.fact-num,
.step-badge,
.contact-label{color:var(--brand-strong)}
.step-badge{
  background:rgba(230,18,28,.12);
  border:1px solid rgba(230,18,28,.28);
}
.adv-card{
  background:linear-gradient(180deg,rgba(28,28,28,.96),rgba(10,10,10,.98));
  border-color:rgba(230,18,28,.24);
}
.adv-card h3,
.fact-card h3,
.service-card h3,
.timeline-card h3,
.contact-info-card strong{color:#fff}
.contact-line:hover strong,
.footer-column a:hover{color:#ff343f}

.cta-section{
  background:
    linear-gradient(90deg,rgba(230,18,28,.11),transparent 48%),
    #090909;
  border-top:1px solid rgba(230,18,28,.16);
  border-bottom:1px solid rgba(230,18,28,.16);
}
.cta-shell{
  background:
    radial-gradient(circle at 84% 20%,rgba(230,18,28,.22),transparent 34%),
    linear-gradient(135deg,#171717 0%,#080808 100%);
  border-color:rgba(230,18,28,.26);
}

.site-footer{
  background:linear-gradient(180deg,#080808 0%,#030303 100%);
  border-top:1px solid rgba(230,18,28,.22);
}
.footer-grid{border-bottom-color:rgba(230,18,28,.18)}
.footer-brand-copy p,
.footer-meta,
.footer-bottom p{color:#c7c7c7}
.footer-doc-link{background:rgba(255,255,255,.04);border-color:rgba(230,18,28,.22)}
.footer-link{color:#ff343f}
.footer-logo-row .logo-mark{width:96px;height:60px;flex:0 0 auto}

.document-page .site-header{position:sticky}
.document-shell{
  background:
    radial-gradient(circle at 96% 0%,rgba(230,18,28,.18),transparent 34%),
    linear-gradient(180deg,#171717,#0b0b0b);
}
.document-card h2,
.document-card h3{color:#fff}
.document-badge{background:rgba(230,18,28,.10);border-color:rgba(230,18,28,.25);color:#fff}
.document-note{background:rgba(230,18,28,.10);border-color:rgba(230,18,28,.25)}
.card-media{background:#111;border-color:rgba(230,18,28,.18)}

@media (max-width:900px){
  .header-inner{min-height:82px}
  .hero-grid{grid-template-columns:1fr}
  .hero-brand-logo{width:min(300px,100%)}
  .btn-mobile-main{background:var(--brand);color:#fff}
  .btn-mobile-secondary{background:#151515;color:#fff;border-color:rgba(230,18,28,.42)}
}
@media (max-width:700px){
  .logo-mark{width:86px;height:54px;border-radius:0}
  .footer-logo-row .logo-mark{width:86px;height:54px}
  .logo-text strong{font-size:16px}
  .logo-text small{font-size:12px}
  .hero{padding:36px 0 34px}
  .hero-brand-logo{width:min(270px,100%)}
}

/* =========================================================
   ДОПРАЦЮВАННЯ: ЗВОРОТНИЙ ДЗВІНОК + ЧЕРВОНІ ПЕРЕВАГИ
   ========================================================= */
.btn-callback{
  background:rgba(230,18,28,.12);
  color:#fff;
  border-color:rgba(230,18,28,.72);
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}
.btn-callback:hover{background:rgba(230,18,28,.22);border-color:#ff343f}
#advantages{
  background:
    radial-gradient(circle at 12% 0%,rgba(230,18,28,.24),transparent 32%),
    linear-gradient(180deg,#120608 0%,#070707 100%);
  border-top:1px solid rgba(230,18,28,.22);
  border-bottom:1px solid rgba(230,18,28,.22);
}
#advantages .section-kicker,
#advantages h2{color:#ff2b35}
#advantages .cards-four{counter-reset:advantage-card}
#advantages .adv-card{
  position:relative;
  overflow:hidden;
  counter-increment:advantage-card;
  background:
    linear-gradient(180deg,rgba(32,10,12,.98),rgba(11,11,11,.98));
  border-color:rgba(230,18,28,.62);
  box-shadow:0 22px 54px rgba(0,0,0,.36);
}
#advantages .adv-card::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:4px;
  background:linear-gradient(90deg,#ff343f,#9d070d);
}
#advantages .adv-card::after{
  content:counter(advantage-card, decimal-leading-zero);
  position:absolute;
  right:20px;
  top:16px;
  color:rgba(255,52,63,.22);
  font-size:42px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.06em;
}
#advantages .adv-card h3{
  position:relative;
  z-index:1;
  color:#ff343f;
}
#advantages .adv-card p{position:relative;z-index:1;color:#f0d5d7}
.callback-section{
  background:
    radial-gradient(circle at 80% 20%,rgba(230,18,28,.18),transparent 34%),
    #0a0a0a;
  border-top:1px solid rgba(230,18,28,.18);
}
.callback-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr);
  gap:24px;
  align-items:stretch;
}
.callback-copy,
.callback-form{
  background:linear-gradient(180deg,rgba(24,24,24,.96),rgba(10,10,10,.98));
  border:1px solid rgba(230,18,28,.28);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
  color:#fff;
}
.callback-copy{padding:38px 40px;display:flex;flex-direction:column;justify-content:center}
.callback-copy h2{margin-bottom:14px;color:#fff}
.callback-copy p:not(.section-kicker){color:#d7d7d7;font-size:18px;line-height:1.75}
.callback-form{
  padding:34px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.callback-form label{display:grid;gap:9px}
.callback-form label.full{grid-column:1/-1}
.callback-form span{
  color:#f2f2f2;
  font-weight:800;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.callback-form input,
.callback-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  background:#080808;
  color:#fff;
  padding:15px 16px;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.callback-form textarea{resize:vertical;min-height:116px}
.callback-form input:focus,
.callback-form textarea:focus{
  border-color:rgba(255,52,63,.82);
  box-shadow:0 0 0 4px rgba(230,18,28,.16);
  background:#0d0d0d;
}
.callback-form .btn{grid-column:1/-1;width:100%;border-radius:18px}
.callback-status{
  grid-column:1/-1;
  min-height:24px;
  color:#cfcfcf;
  font-weight:700;
}
.callback-status.is-success{color:#76e0a2}
.callback-status.is-error{color:#ff6f78}
.callback-status.is-loading{color:#f5c7ca}
.cta-actions{display:flex;flex-wrap:wrap;gap:12px;justify-content:flex-end;align-items:center;flex-shrink:0}
@media (max-width:900px){
  .callback-grid{grid-template-columns:1fr}
  .callback-form{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:700px){
  .callback-copy,.callback-form{padding:22px;border-radius:24px}
}


/* === 2026 VipTrans logo + advantages tune === */
.logo-mark,
.footer-logo-row .logo-mark{
  width:122px;
  height:84px;
  padding:6px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 14px 32px rgba(0,0,0,.30);
}
.hero-brand-logo{
  width:min(420px,100%);
  background:#fff;
  border-radius:26px;
  padding:12px;
  box-shadow:0 22px 48px rgba(0,0,0,.42);
}
#advantages{
  background:transparent;
  color:#fff;
}
#advantages .section-head{margin-bottom:26px}
#advantages .adv-card{
  background:linear-gradient(180deg,rgba(22,22,22,.96),rgba(10,10,10,.98));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
}
#advantages .adv-card h3{color:#fff}
#advantages .adv-card p{color:#cfcfcf}


/* === FINAL PREMIUM QUICK CALL + MOBILE POLISH === */
.hero-panel{
  display:flex;
  align-items:flex-start;
}
.hero-card{
  position:relative;
  align-self:flex-start;
  width:100%;
  height:auto;
  min-height:0;
  overflow:hidden;
  padding:34px;
  border-radius:34px;
  background:
    radial-gradient(circle at 82% 0%,rgba(255,52,63,.28),transparent 34%),
    radial-gradient(circle at 18% 100%,rgba(230,18,28,.16),transparent 36%),
    linear-gradient(145deg,rgba(27,27,27,.98),rgba(5,5,5,.98));
  border:1px solid rgba(255,76,84,.44);
  box-shadow:
    0 28px 70px rgba(0,0,0,.54),
    inset 0 0 0 1px rgba(255,255,255,.045),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-card::before{
  content:"";
  position:absolute;
  left:28px;
  right:28px;
  top:0;
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(255,76,84,.9),transparent);
  box-shadow:0 0 20px rgba(255,52,63,.8);
}
.hero-card::after{
  content:"";
  position:absolute;
  left:36%;
  right:36%;
  bottom:0;
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(255,76,84,.88),transparent);
  box-shadow:0 0 22px rgba(255,52,63,.8);
}
.hero-card .panel-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 14px;
  padding:8px 12px;
  border-radius:999px;
  color:#ff8188;
  background:rgba(230,18,28,.10);
  border:1px solid rgba(255,52,63,.22);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.hero-card .panel-label::before{
  content:"☎";
  display:inline-grid;
  place-items:center;
  width:24px;
  height:24px;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,#ff343f,#9d070d);
  box-shadow:0 0 18px rgba(230,18,28,.45);
  font-size:13px;
  letter-spacing:0;
}
.hero-card h2{
  margin:0 0 12px;
  color:#fff;
  font-size:clamp(32px,3vw,46px);
  line-height:1.02;
  letter-spacing:-.04em;
  text-shadow:0 8px 28px rgba(0,0,0,.42);
}
.hero-card > p:not(.panel-label){
  max-width:34em;
  margin:0;
  color:#e0e0e0;
  font-size:17px;
  line-height:1.68;
}
.contact-card-stack{
  display:grid;
  gap:14px;
  margin-top:28px;
}
.contact-card,
.worktime-box{
  position:relative;
  overflow:hidden;
  min-height:78px;
  display:grid;
  grid-template-columns:92px minmax(0,1fr) auto;
  align-items:center;
  gap:18px;
  padding:16px 20px 16px 16px;
  border-radius:24px;
  background:
    linear-gradient(90deg,rgba(255,52,63,.10),transparent 42%),
    linear-gradient(180deg,rgba(24,24,24,.92),rgba(8,8,8,.94));
  border:1px solid rgba(255,52,63,.32);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.035),
    0 16px 38px rgba(0,0,0,.25);
  color:#fff;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,background .18s ease;
}
.contact-card:hover,
.worktime-box:hover{
  transform:translateY(-2px);
  border-color:rgba(255,76,84,.78);
  box-shadow:0 22px 48px rgba(0,0,0,.34),0 0 24px rgba(230,18,28,.12);
}
.contact-card::before,
.worktime-box::before{
  content:"";
  display:grid;
  place-items:center;
  width:68px;
  height:56px;
  border-radius:18px 26px 26px 18px;
  background:
    radial-gradient(circle at 70% 20%,rgba(255,255,255,.14),transparent 24%),
    linear-gradient(135deg,rgba(255,52,63,.22),rgba(120,4,9,.28));
  border:1px solid rgba(255,52,63,.44);
  box-shadow:inset 0 0 24px rgba(230,18,28,.14),0 0 22px rgba(230,18,28,.12);
}
.contact-card::after{
  content:"☎";
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  border-radius:18px;
  color:#ff424b;
  background:rgba(255,255,255,.035);
  border-left:1px solid rgba(255,255,255,.08);
  font-size:26px;
  font-weight:900;
}
.contact-card span,
.worktime-box span{
  position:relative;
  z-index:1;
  color:#f4f4f4;
  font-size:16px;
  font-weight:800;
}
.contact-card span::before,
.worktime-box span::before{
  content:"👤";
  position:absolute;
  left:-84px;
  top:50%;
  transform:translateY(-50%);
  color:#ff4a53;
  font-size:30px;
  filter:drop-shadow(0 0 12px rgba(230,18,28,.36));
}
.worktime-box span::before{content:"◷";font-size:34px;}
.contact-card strong,
.worktime-box strong{
  color:#fff;
  font-size:21px;
  line-height:1.15;
  font-weight:900;
  letter-spacing:-.03em;
  text-shadow:0 7px 20px rgba(0,0,0,.45);
}
.worktime-box{
  grid-template-columns:92px minmax(0,1fr) auto;
  margin-top:14px;
}
.worktime-box::after{
  content:"";
  display:block;
  width:52px;
  height:52px;
}
@media (max-width:900px){
  .section{padding:64px 0;}
  .hero{padding:26px 0 26px;}
  .hero-grid{gap:16px;grid-template-columns:1fr;}
  .hero-card{padding:28px;border-radius:28px;}
  .callback-grid{gap:16px;grid-template-columns:1fr;}
  .cta-actions{justify-content:flex-start;}
  .mobile-bar{left:10px;right:10px;bottom:10px;gap:10px;}
  .btn-mobile{min-height:50px;padding:12px 14px;border-radius:14px;font-size:15px;}
}
@media (max-width:700px){
  .container{width:min(100% - 20px,var(--container));}
  .section{padding:54px 0;}
  .hero{padding:20px 0 24px;}
  .hero-grid{gap:14px;}
  .hero-copy,
  .hero-card,
  .about-copy,
  .fact-card,
  .service-card,
  .adv-card,
  .timeline-card,
  .contact-info-card,
  .cta-shell,
  .document-shell,
  .document-card,
  .callback-copy,
  .callback-form{padding:18px;border-radius:20px;}
  .header-inner{min-height:68px;}
  .logo-mark,
  .footer-logo-row .logo-mark{width:74px;height:48px;border-radius:12px;padding:4px;}
  .logo-text strong{font-size:15px;}
  .logo-text small{font-size:11px;}
  .hero-brand-logo{width:min(220px,100%);margin:0 0 16px;}
  .hero-text{font-size:15px;line-height:1.62;margin:0 0 18px;}
  .hero-actions{gap:10px;margin:0 0 18px;}
  .hero-list{gap:10px;}
  .hero-list li{font-size:14px;padding-left:22px;}
  .hero-card h2{font-size:clamp(26px,8vw,34px);margin-bottom:10px;}
  .hero-card > p:not(.panel-label){font-size:14px;line-height:1.58;}
  .contact-card-stack{gap:10px;margin-top:18px;}
  .contact-card,
  .worktime-box{
    min-height:64px;
    grid-template-columns:54px minmax(0,1fr);
    gap:12px;
    padding:12px 14px;
    border-radius:18px;
  }
  .contact-card::before,
  .worktime-box::before{width:44px;height:44px;border-radius:14px;}
  .contact-card span::before,
  .worktime-box span::before{left:-47px;font-size:22px;}
  .contact-card::after,
  .worktime-box::after{display:none;}
  .contact-card span,
  .worktime-box span{font-size:13px;}
  .contact-card strong,
  .worktime-box strong{grid-column:2;font-size:16px;}
  .cards-three,
  .cards-four,
  .timeline-grid,
  .contacts-grid,
  .footer-grid,
  .document-contact-list,
  .callback-grid{gap:14px;}
  .section-head{margin-bottom:18px;}
  .section-head h2{font-size:clamp(28px,8.5vw,36px);}
  .section-subtext{font-size:15px;line-height:1.64;}
  .fact-card h3,
  .service-card h3,
  .adv-card h3,
  .timeline-card h3{font-size:20px;margin-bottom:8px;}
  .fact-card p,
  .service-card p,
  .adv-card p,
  .timeline-card p,
  .contact-info-card p,
  .callback-copy p:not(.section-kicker){font-size:15px;line-height:1.65;}
  .cta-shell{padding:18px;gap:14px;}
  .cta-shell h2{font-size:26px;}
  .cta-actions{gap:10px;}
  .callback-copy h2{font-size:28px;line-height:1.06;}
  .callback-form{gap:14px;}
  .callback-form input,
  .callback-form textarea{padding:13px 14px;border-radius:16px;font-size:15px;}
  .callback-form textarea{min-height:100px;}
  .footer-grid{gap:18px;}
  .footer-bottom{gap:8px;}
  .document-shell h1{font-size:clamp(28px,9vw,40px);}
  .document-card h2{font-size:24px;}
  .document-card h3{font-size:18px;}
}
@media (max-width:430px){
  .container{width:calc(100% - 16px);}
  .section{padding:46px 0;}
  .hero-copy,
  .hero-card,
  .about-copy,
  .fact-card,
  .service-card,
  .adv-card,
  .timeline-card,
  .contact-info-card,
  .cta-shell,
  .document-shell,
  .document-card,
  .callback-copy,
  .callback-form{padding:16px;border-radius:18px;}
  .hero-card h2{font-size:24px;}
  .contact-card strong,
  .worktime-box strong{font-size:15px;}
  .btn,
  .btn-mobile{font-size:14px;}
}

/* === FINAL consolidated overrides === */
.hero-card .panel-label,
.hero-card .panel-label:empty{
  display:none !important;
}

.hero-panel{
  display:flex;
  align-items:flex-start;
}

.hero-card{
  height:auto;
  min-height:0;
  align-self:flex-start;
}

.document-grid{
  align-items:start;
}

.logo-mark,
.footer-logo-row .logo-mark{
  width:132px !important;
  height:88px !important;
  padding:0 !important;
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  outline:none !important;
  overflow:visible !important;
}

.logo-mark img,
.footer-logo-row .logo-mark img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  display:block !important;
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  filter:none !important;
}

.hero-brand-logo{
  width:min(420px,100%) !important;
  height:auto !important;
  display:block !important;
  background:transparent !important;
  border:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
  filter:none !important;
  padding:0 !important;
}

@media (max-width:900px){
  .hero-panel{align-items:flex-start;}
  .hero-card{padding:28px;}
  .contact-card-stack{margin-top:22px;}
  .section{padding:64px 0;}
  .hero{padding:26px 0 26px;}
  .hero-grid{gap:16px;}
  .hero-copy,
  .hero-card,
  .about-copy,
  .fact-card,
  .service-card,
  .adv-card,
  .timeline-card,
  .contact-info-card,
  .cta-shell,
  .document-shell,
  .document-card,
  .callback-copy,
  .callback-form{border-radius:22px;}
  .cta-shell{gap:14px;}
  .callback-grid{gap:16px;}
  .mobile-bar{left:10px; right:10px; bottom:10px; gap:10px;}
  .btn-mobile{min-height:50px; padding:12px 14px; border-radius:14px; font-size:15px;}
}

@media (max-width:700px){
  .container{width:min(100% - 20px, var(--container));}
  .section{padding:54px 0;}
  .hero{padding:20px 0 24px;}
  .hero-grid{gap:14px;}
  .hero-copy,
  .hero-card,
  .about-copy,
  .fact-card,
  .service-card,
  .adv-card,
  .timeline-card,
  .contact-info-card,
  .cta-shell,
  .document-shell,
  .document-card,
  .callback-copy,
  .callback-form{padding:18px; border-radius:20px;}
  .header-inner{min-height:68px;}
  .logo-mark,
  .footer-logo-row .logo-mark{width:108px !important;height:72px !important;}
  .logo-text strong{font-size:15px;}
  .logo-text small{font-size:11px;}
  .hero-brand-logo{width:min(310px,100%) !important; margin:0 0 16px;}
  .hero-text{font-size:15px; line-height:1.62; margin:0 0 18px;}
  .hero-actions{gap:10px; margin:0 0 18px;}
  .hero-list{gap:10px;}
  .hero-list li{font-size:14px; padding-left:22px;}
  .hero-card{align-self:flex-start; width:100%; height:auto; min-height:0;}
  .hero-card h2{font-size:clamp(26px, 8vw, 34px); line-height:1.02; margin-bottom:10px;}
  .hero-card p{font-size:14px; line-height:1.58;}
  .contact-card-stack{gap:10px; margin-top:18px;}
  .contact-card,
  .worktime-box{padding:14px 16px; border-radius:18px; gap:6px;}
  .contact-card span,
  .worktime-box span{font-size:13px;}
  .contact-card strong,
  .worktime-box strong{font-size:16px; line-height:1.25;}
  .cards-three,
  .cards-four,
  .timeline-grid,
  .contacts-grid,
  .footer-grid,
  .document-contact-list,
  .callback-grid{gap:14px;}
  .section-head{margin-bottom:18px;}
  .section-head h2{font-size:clamp(28px, 8.5vw, 36px);}
  .section-subtext{font-size:15px; line-height:1.64;}
  .fact-card h3,
  .service-card h3,
  .adv-card h3,
  .timeline-card h3{font-size:20px; margin-bottom:8px;}
  .fact-card p,
  .service-card p,
  .adv-card p,
  .timeline-card p,
  .contact-info-card p,
  .callback-copy p:not(.section-kicker){font-size:15px; line-height:1.65;}
  .cta-shell{padding:18px;}
  .cta-shell h2{font-size:26px;}
  .cta-actions{gap:10px;}
  .callback-copy h2{font-size:28px; line-height:1.06;}
  .callback-form{gap:14px;}
  .callback-form input,
  .callback-form textarea{padding:13px 14px; border-radius:16px; font-size:15px;}
  .callback-form textarea{min-height:100px;}
  .footer-grid{gap:18px;}
  .footer-bottom{gap:8px;}
  .document-shell h1{font-size:clamp(28px,9vw,40px);}
  .document-card h2{font-size:24px;}
  .document-card h3{font-size:18px;}
}

@media (max-width:430px){
  .container{width:calc(100% - 16px);}
  .section{padding:46px 0;}
  .hero-copy,
  .hero-card,
  .about-copy,
  .fact-card,
  .service-card,
  .adv-card,
  .timeline-card,
  .contact-info-card,
  .cta-shell,
  .document-shell,
  .document-card,
  .callback-copy,
  .callback-form{padding:16px; border-radius:18px;}
  .logo-mark,
  .footer-logo-row .logo-mark{width:92px !important;height:62px !important;}
  .hero-brand-logo{width:min(240px,100%) !important;}
  .hero-card h2{font-size:24px;}
  .contact-card strong,
  .worktime-box strong{font-size:15px;}
  .btn,
  .btn-mobile{font-size:14px;}
}
