/* ═════════════════════════════════════════════════════════════════════
   ПроОйлГрупп — main.css  v1.1
   Чёрно-бордовая палитра, Unbounded + Manrope
   ═════════════════════════════════════════════════════════════════════ */

/* ─── RESET ─── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

/* ─── DESIGN TOKENS ─── */
:root{
  --white:#FFFFFF;
  --light:#F6F4F2;
  --light2:#EFECE8;
  --border:#E5E1DD;
  --dark:#161618;
  --dark2:#1F1F22;
  --dark3:#2A2A2E;
  --burg:#8B2332;
  --burg-l:#A62B3E;
  --burg-d:#6E1B27;
  --burg-pale:rgba(139,35,50,.07);
  --burg-pale2:rgba(139,35,50,.14);
  --txt:#161618;
  --txt2:#55555C;
  --txt3:#8E8E96;
  --h:'Unbounded',sans-serif;
  --b:'Manrope',sans-serif;
  --hh:96px;
  --r:8px;
  --r-l:14px;
  --container:1280px;
}

/* ─── KILL ELEMENTOR / HELLO ELEMENTOR PINK ACCENTS ─── */
:root,body,body *{
  --e-global-color-accent:#8B2332!important;
  --e-global-color-primary:#8B2332!important;
  --e-global-color-secondary:#161618!important;
  --e-global-color-text:#161618!important;
  --e-global-color-c5a7d6f:#8B2332!important;
}
/* Explicit overrides for elements that may inherit pink from Hello Elementor / Elementor */
.site-header,.site-header *,
.site-footer,.site-footer h4,
.burger,.burger span,
.faq-question,.faq-question span,.faq-question svg,
.modal-form *,
.btn,.btn *,
button{
  --accent:#8B2332;
}
.burger{color:var(--dark)}
.burger span{background:var(--dark)!important}
.faq-question{color:var(--dark)}
.faq-question svg{color:var(--burg)!important;stroke:currentColor!important}
.header-phone,.header-phone svg{color:var(--dark)}
.header-phone svg{color:var(--burg)!important}
*:focus{outline:none}
*:focus-visible{outline:2px solid var(--burg);outline-offset:2px;border-radius:4px}

/* Reset Hello Elementor page wrappers */
.page-content,.entry-content,.site-main,
.elementor-section.elementor-section-boxed>.elementor-container{
  max-width:none!important;padding:0!important;margin:0!important;
}

/* ─── BASE ─── */
html{
  scroll-behavior:smooth;
  scroll-padding-top:var(--hh);
  scrollbar-gutter:stable; /* keeps fixed header aligned with content X-axis */
}
body{
  font-family:var(--b);
  background:var(--white)!important;
  color:var(--txt);
  line-height:1.7;
  font-size:16px;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
body.menu-open,body.modal-open{overflow:hidden}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
button{font-family:inherit;cursor:pointer;border:none;background:none}
ul,ol{list-style:none}

/* ─── CONTAINER ─── */
.w{max-width:var(--container);margin:0 auto;padding:0 32px}
.ph{font-size:14px;color:var(--txt3);font-weight:600;text-align:center;padding:16px;letter-spacing:.5px}

/* ─── FULL-BLEED HEADER / FOOTER ─── *
   Header is fixed (full width naturally). Footer uses negative-margin
   trick to escape any parent max-width set by Hello Elementor. */
.site-footer{
  position:relative;
  left:50%;right:50%;
  margin-left:-50vw!important;
  margin-right:-50vw!important;
  width:100vw!important;
  max-width:100vw!important;
}
.site-header{
  position:fixed;top:0;left:0;right:0;
  margin:0!important;width:100%!important;max-width:100%!important;
}
/* Header content sits at PAGE edges (not inside 1280px container) — so logo aligns to far left */
.site-header > .w{
  max-width:none!important;
  padding:0 36px!important;
}
@media(max-width:560px){
  .site-header > .w{padding:0 20px!important}
}

/* ═══════════════════ HEADER ═══════════════════ */
.site-header{
  z-index:100;
  height:var(--hh);
  background:transparent;
  transition:background .35s ease,box-shadow .35s ease,backdrop-filter .35s ease;
  border-bottom:1px solid transparent;
}
.site-header.scrolled{
  background:rgba(255,255,255,.96);
  backdrop-filter:saturate(180%) blur(18px);
  -webkit-backdrop-filter:saturate(180%) blur(18px);
  border-bottom-color:rgba(0,0,0,.06);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:var(--hh);gap:28px;
}
.logo{display:flex;align-items:center;gap:12px;flex-shrink:0}
.logo-mark{
  width:42px;height:42px;
  background:var(--burg);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.logo-mark::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,transparent 50%,rgba(255,255,255,.12) 50%);
}
.logo-mark svg{width:22px;height:22px;position:relative;z-index:1}
.logo-name{
  font-family:var(--h);font-weight:700;font-size:17px;
  color:var(--dark);letter-spacing:-.2px;line-height:1.2;
}
.logo-name b{color:var(--burg);font-weight:800}

.main-nav .nav-list{display:flex;gap:34px;align-items:center}
.main-nav .nav-list a{
  font-size:15px;font-weight:600;color:var(--txt2);
  transition:color .2s;
  position:relative;
  padding:8px 0;
}
.main-nav .nav-list a:hover{color:var(--burg)}
.main-nav .nav-list a::after{
  content:'';position:absolute;left:0;bottom:0;
  width:0;height:2px;background:var(--burg);
  transition:width .25s ease;
}
.main-nav .nav-list a:hover::after{width:100%}

.header-actions{display:flex;align-items:center;gap:20px;flex-shrink:0}
.header-phone{
  font-size:15px;font-weight:700;color:var(--dark);
  display:flex;align-items:center;gap:8px;
  transition:color .2s;
}
.header-phone:hover{color:var(--burg)}
.header-phone svg{width:16px;height:16px;color:var(--burg)}

.burger{
  display:none;background:none;border:none;
  width:28px;height:22px;position:relative;z-index:101;
}
.burger span{
  position:absolute;left:0;width:100%;height:2px;
  background:var(--dark);border-radius:2px;transition:.3s ease;
}
.burger span:nth-child(1){top:2px}
.burger span:nth-child(2){top:10px}
.burger span:nth-child(3){top:18px}
.burger.active span:nth-child(1){top:10px;transform:rotate(45deg)}
.burger.active span:nth-child(2){opacity:0}
.burger.active span:nth-child(3){top:10px;transform:rotate(-45deg)}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn{
  font-family:var(--h);font-size:15px;font-weight:600;
  padding:15px 32px;border:none;cursor:pointer;
  transition:all .25s ease;
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border-radius:var(--r);
  background:transparent;color:var(--dark);
  line-height:1;letter-spacing:-.1px;
  text-align:center;
}
.btn svg{width:16px;height:16px;transition:transform .25s ease}
.btn:hover svg{transform:translateX(3px)}
.btn-primary{background:var(--burg);color:var(--white)!important}
.btn-primary:hover{
  background:var(--burg-l);
  transform:translateY(-2px);
  box-shadow:0 14px 30px -10px rgba(139,35,50,.45);
}
.btn-secondary{
  background:transparent;color:var(--dark)!important;
  border:2px solid var(--dark);
  padding:13px 30px;
}
.btn-secondary:hover{border-color:var(--burg);color:var(--burg)!important}
.btn-light{background:var(--white);color:var(--dark)!important}
.btn-light:hover{background:var(--light2);transform:translateY(-2px)}

/* ═══════════════════ HERO ═══════════════════ */
.hero{
  position:relative;min-height:100vh;
  display:flex;align-items:center;overflow:hidden;
  background:var(--white);
  padding-top:var(--hh);
}
.hero-bg{
  position:absolute;inset:0;
  background:var(--light) center/cover no-repeat;
}
.hero-bg::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(105deg,
    rgba(255,255,255,.97) 0%,
    rgba(255,255,255,.88) 38%,
    rgba(255,255,255,.35) 70%,
    transparent 100%);
}
.hero-deco{
  position:absolute;top:-100px;right:-150px;
  width:560px;height:560px;
  background:radial-gradient(circle,rgba(139,35,50,.08),transparent 65%);
  border-radius:50%;
  pointer-events:none;
}
.hero-inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1.05fr 1fr;
  gap:60px;align-items:center;
  padding:80px 0 100px;
}
.hero-tag{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 16px;background:var(--burg-pale);
  border:1px solid var(--burg-pale2);
  border-radius:100px;margin-bottom:28px;
}
.hero-tag-dot{
  width:7px;height:7px;background:var(--burg);
  border-radius:50%;flex-shrink:0;
  box-shadow:0 0 0 4px rgba(139,35,50,.15);
  animation:pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{box-shadow:0 0 0 4px rgba(139,35,50,.15)}
  50%{box-shadow:0 0 0 8px rgba(139,35,50,.0)}
}
.hero-tag span{font-size:13px;font-weight:600;color:var(--burg);letter-spacing:.3px}

.hero h1,
.hero h1.hero-h1,
body .hero .hero-left h1,
body .hero h1.hero-h1{
  font-family:var(--h)!important;
  font-weight:800!important;
  font-size:clamp(30px,3.8vw,46px);
  line-height:1.08!important;
  color:#161618!important;
  letter-spacing:-.4px!important;
  max-width:14ch;
  opacity:1!important;
  text-shadow:none!important;
}
.hero h1.hero-h1 *,
body .hero h1.hero-h1 *{
  color:#161618!important;
  opacity:1!important;
}
.hero h1 .hl,
.hero h1.hero-h1 .hl,
body .hero h1.hero-h1 .hl,
body .hero h1.hero-h1 span.hl{
  color:#8B2332!important;
  position:relative;
  opacity:1!important;
}
@media(max-width:560px){
  .hero h1,
  .hero h1.hero-h1,
  body .hero h1.hero-h1{
    font-size:26px!important;
    line-height:1.15!important;
    letter-spacing:-.2px!important;
    max-width:none!important;
  }
  .hero h1 .hl{display:inline}
}
.hero-desc{
  font-size:18px;color:var(--txt2);
  max-width:520px;line-height:1.7;
  margin:28px 0 40px;
}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap}

/* Hero hexagon grid */
.hero-hex{display:flex;justify-content:center;align-items:center;position:relative}
.hex-grid{
  display:grid;grid-template-columns:repeat(3,140px);
  gap:10px;justify-content:center;
}
.hex{
  width:140px;height:140px;
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  position:relative;overflow:hidden;
  transition:transform .5s cubic-bezier(.22,1,.36,1);
}
.hex:nth-child(even){margin-top:74px}
.hex:hover{transform:scale(1.08)}
.hex-bg{
  position:absolute;inset:0;
  background:var(--light) center/cover no-repeat;
  display:flex;align-items:center;justify-content:center;
  transition:transform .6s ease;
}
.hex:hover .hex-bg{transform:scale(1.08)}
.hex-overlay{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(transparent,rgba(22,22,24,.82));
  padding:10px 10px 18px;text-align:center;
}
.hex-overlay span{
  font-family:var(--h);font-size:13px;font-weight:700;
  color:var(--white);line-height:1.2;letter-spacing:-.1px;
}

/* ═══════════════════ TRUST STRIP ═══════════════════ */
.trust-strip{
  padding:48px 0;background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.trust-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:32px;align-items:center;
}
.trust-item{display:flex;align-items:center;gap:18px}
.trust-num{
  font-family:var(--h);font-size:36px;font-weight:800;
  color:var(--burg);line-height:1;letter-spacing:-1px;
}
.trust-txt{font-size:14px;color:var(--txt2);font-weight:500;line-height:1.4}

/* ═══════════════════ SECTION TITLE ═══════════════════ */
.stitle{margin-bottom:56px;max-width:780px}
.stitle.center{margin-left:auto;margin-right:auto;text-align:center}
.stitle-tag{
  font-family:var(--h);font-size:12px;font-weight:600;
  color:var(--burg);text-transform:uppercase;
  letter-spacing:3px;margin-bottom:14px;
  display:inline-flex;align-items:center;gap:10px;
}
.stitle-tag::before{
  content:'';width:24px;height:2px;background:var(--burg);
}
.stitle.center .stitle-tag{justify-content:center}
.stitle h2{
  font-family:var(--h);font-weight:800;
  font-size:clamp(28px,3.4vw,42px);
  color:var(--dark);line-height:1.1;letter-spacing:-.8px;
}
.stitle h2 span{color:var(--burg)}
.stitle p{
  font-size:17px;color:var(--txt2);
  margin-top:18px;line-height:1.65;max-width:600px;
}
.stitle.center p{margin-left:auto;margin-right:auto}

/* ═══════════════════ CATEGORIES ═══════════════════ */
.section-cats{padding:110px 0;background:var(--white)}
.cat-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:8px;
}
.cat-item{
  position:relative;aspect-ratio:1;overflow:hidden;
  background:var(--light);border-radius:var(--r);
  cursor:pointer;
}
.cat-bg{
  position:absolute;inset:0;
  background:var(--light) center/cover no-repeat;
  transition:transform .7s cubic-bezier(.22,1,.36,1);
  display:flex;align-items:center;justify-content:center;
}
.cat-item:hover .cat-bg{transform:scale(1.08)}
.cat-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,
    rgba(22,22,24,0) 30%,
    rgba(22,22,24,.4) 65%,
    rgba(22,22,24,.88) 100%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:24px;border-radius:var(--r);
}
.cat-name{
  font-family:var(--h);font-size:18px;font-weight:700;
  color:var(--white);margin-bottom:14px;
  transition:transform .4s ease;letter-spacing:-.2px;
}
.cat-item:hover .cat-name{transform:translateY(-8px)}
.cat-btn{
  font-family:var(--h);font-size:14px;font-weight:600;
  padding:11px 22px;background:var(--burg);color:var(--white);
  border-radius:var(--r);
  opacity:0;transform:translateY(14px);
  transition:opacity .35s .05s ease,transform .35s .05s ease,background .2s ease;
  align-self:flex-start;letter-spacing:.2px;
}
.cat-item:hover .cat-btn{opacity:1;transform:translateY(0)}
.cat-btn:hover,.cat-btn:focus{background:var(--burg-l)}

/* ═══════════════════ ABOUT ═══════════════════ */
.section-about{padding:110px 0;background:var(--white);border-top:1px solid var(--border)}
.about-grid{
  display:grid;grid-template-columns:1.1fr 1fr;
  gap:80px;align-items:start;
}
.about-bar h2{font-family:var(--h);font-weight:800;line-height:1.1}
.about-bar .t1{
  display:block;font-size:clamp(18px,2vw,22px);
  color:var(--txt3);letter-spacing:-.3px;font-weight:600;
}
.about-bar .t2{
  display:block;font-size:clamp(28px,3.4vw,42px);
  color:var(--burg);letter-spacing:-.8px;margin-top:4px;
}
.about-text{margin-top:28px}
.about-text p{
  font-size:17px;color:var(--txt2);line-height:1.8;
  margin-bottom:16px;
}
.about-link{
  color:var(--burg);font-weight:700;
  display:inline-flex;align-items:center;gap:8px;
  transition:gap .25s ease;font-size:15px;margin-top:8px;
}
.about-link:hover{gap:12px;color:var(--burg-l)}
.about-link svg{width:18px;height:18px}

.about-timeline{margin-top:48px;position:relative;padding-top:28px}
.about-timeline::before{
  content:'';position:absolute;top:6px;left:32px;right:32px;
  height:2px;background:var(--border);border-radius:2px;
}
.timeline-dots{
  position:absolute;top:0;left:32px;right:32px;
  display:flex;justify-content:space-between;
}
.timeline-dots span{
  width:14px;height:14px;background:var(--burg);
  border-radius:50%;border:3px solid var(--white);
  box-shadow:0 0 0 2px var(--border);
}
.about-stats{
  display:flex;justify-content:space-between;gap:24px;margin-top:14px;
}
.about-stat{flex:1}
.about-stat .stat-num{
  font-family:var(--h);font-size:38px;font-weight:800;
  color:var(--burg);line-height:1;letter-spacing:-1px;
}
.about-stat .stat-label{
  font-size:14px;color:var(--txt2);margin-top:6px;
  font-weight:500;line-height:1.3;
}
.about-photo{
  border-radius:var(--r-l);overflow:hidden;aspect-ratio:4/4.5;
  background:var(--light) center/cover no-repeat;
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.about-photo::after{
  content:'';position:absolute;inset:0;
  border-radius:var(--r-l);
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.06);
  pointer-events:none;
}

/* ═══════════════════ UTP / VALUES ═══════════════════ */
.section-utp{
  padding:110px 0;background:var(--white);
  border-top:1px solid var(--border);
}
.utp-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.utp-card{
  padding:44px 36px;background:var(--light);
  border-radius:var(--r-l);
  transition:transform .35s ease,box-shadow .35s ease;
  position:relative;overflow:hidden;
}
.utp-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:var(--burg);transform:scaleX(0);transform-origin:left;
  transition:transform .4s ease;
}
.utp-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px -20px rgba(0,0,0,.12);
}
.utp-card:hover::before{transform:scaleX(1)}
.utp-icon{
  width:60px;height:60px;background:var(--burg-pale);
  border-radius:14px;display:flex;align-items:center;justify-content:center;
  margin-bottom:28px;color:var(--burg);
}
.utp-icon svg{width:28px;height:28px}
.utp-card h4{
  font-family:var(--h);font-size:20px;font-weight:700;
  color:var(--dark);margin-bottom:14px;letter-spacing:-.3px;
}
.utp-card p{font-size:16px;color:var(--txt2);line-height:1.75}

/* ═══════════════════ BRANDS (NEW) ═══════════════════ */
.section-brands{
  padding:90px 0;background:var(--light);
  border-top:1px solid var(--border);
}
.brands-grid{
  display:grid;grid-template-columns:repeat(6,1fr);
  gap:0;
  border:1px solid var(--border);
  background:var(--white);
  border-radius:var(--r-l);
  overflow:hidden;
}
.brand-cell{
  padding:32px 16px;
  display:flex;align-items:center;justify-content:center;
  border-right:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--white);
  transition:background .25s ease;
  min-height:100px;
}
.brand-cell:nth-child(6n){border-right:none}
.brand-cell:nth-last-child(-n+6){border-bottom:none}
.brand-cell:hover{background:var(--burg-pale)}
.brand-cell span{
  font-family:var(--h);font-size:15px;font-weight:700;
  color:var(--txt2);letter-spacing:.5px;text-align:center;
  transition:color .25s ease;
}
.brand-cell:hover span{color:var(--burg)}
.brands-note{
  margin-top:36px;text-align:center;
  font-size:15px;color:var(--txt2);
}
.brands-note strong{color:var(--burg);font-weight:700}

/* ═══════════════════ SERVICES — staggered rows ═══════════════════ */
.section-srv{
  padding:110px 0;background:var(--white);
  border-top:1px solid var(--border);
}
.srv-row{
  display:grid;grid-template-columns:1fr 1fr;
  gap:0;align-items:stretch;
  border:1px solid var(--border);border-bottom:none;
}
.srv-row:last-child{border-bottom:1px solid var(--border)}
.srv-row:first-child{border-radius:var(--r-l) var(--r-l) 0 0;overflow:hidden}
.srv-row:last-child{border-radius:0 0 var(--r-l) var(--r-l);overflow:hidden}

.srv-row:nth-child(odd) .srv-image{order:1}
.srv-row:nth-child(odd) .srv-content{order:2}
.srv-row:nth-child(even) .srv-image{order:2}
.srv-row:nth-child(even) .srv-content{order:1}

.srv-image{
  background:var(--light) center/cover no-repeat;
  display:flex;align-items:center;justify-content:center;
  min-height:340px;
}
.srv-content{
  padding:56px 56px;
  display:flex;flex-direction:column;justify-content:center;
  background:var(--white);
}
.srv-num{
  font-family:var(--h);font-size:14px;font-weight:700;
  color:var(--burg);letter-spacing:2px;margin-bottom:18px;
}
.srv-content h4{
  font-family:var(--h);font-size:24px;font-weight:700;
  color:var(--dark);margin-bottom:16px;letter-spacing:-.3px;
}
.srv-content p{
  font-size:16px;color:var(--txt2);line-height:1.8;
}
.srv-link{
  color:var(--burg);font-weight:700;
  display:inline-flex;align-items:center;gap:8px;
  margin-top:20px;font-size:15px;
  transition:gap .25s ease;
}
.srv-link:hover{gap:12px;color:var(--burg-l)}
.srv-link svg{width:18px;height:18px}

/* ═══════════════════ REASONS — numbered grid (NEW, qeepei-style) ═══════════════════ */
.section-reasons{
  padding:110px 0;background:var(--dark);
  position:relative;overflow:hidden;
  color:var(--white);
}
.section-reasons.with-bg{background:#0E0E10}
.reasons-bg{
  position:absolute;inset:0;
  background:center/cover no-repeat;
  opacity:.35;
  z-index:0;
}
.section-reasons.with-bg::before,
.section-reasons.with-bg::after{display:none}
.reasons-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,
    rgba(14,14,16,.92) 0%,
    rgba(14,14,16,.82) 50%,
    rgba(14,14,16,.92) 100%);
  z-index:0;
}
.section-reasons::before{
  content:'';position:absolute;top:-180px;left:-120px;
  width:480px;height:480px;
  background:radial-gradient(circle,rgba(139,35,50,.15),transparent 65%);
  border-radius:50%;pointer-events:none;
}
.section-reasons::after{
  content:'';position:absolute;bottom:-180px;right:-120px;
  width:480px;height:480px;
  background:radial-gradient(circle,rgba(139,35,50,.1),transparent 65%);
  border-radius:50%;pointer-events:none;
}
.section-reasons .stitle{position:relative;z-index:1}
.section-reasons .stitle-tag{color:var(--burg-l)}
.section-reasons .stitle-tag::before{background:var(--burg-l)}
.section-reasons .stitle h2{color:var(--white)}
.section-reasons .stitle h2 span{color:var(--burg-l)}
.section-reasons .stitle p{color:rgba(255,255,255,.5)}
.reasons-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;position:relative;z-index:1;
  border-top:1px solid rgba(255,255,255,.08);
  border-left:1px solid rgba(255,255,255,.08);
}
.reason-item{
  padding:36px 28px;
  border-right:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  position:relative;
  transition:background .25s ease;
}
.reason-item:hover{background:rgba(255,255,255,.02)}
.reason-num{
  font-family:var(--h);font-size:36px;font-weight:800;
  color:var(--burg-l);line-height:1;letter-spacing:-1.5px;
  margin-bottom:16px;display:block;
}
.reason-title{
  font-family:var(--h);font-size:16px;font-weight:700;
  color:var(--white);margin-bottom:8px;line-height:1.3;
  letter-spacing:-.2px;
}
.reason-text{
  font-size:14px;color:rgba(255,255,255,.55);line-height:1.6;
}

/* ═══════════════════ ASSORTMENT ═══════════════════ */
.section-assortment{
  padding:110px 0;background:var(--white);
  border-top:1px solid var(--border);
}
.assortment-list{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:4px 32px;
  padding:36px 0;
}
.assortment-item{
  display:flex;align-items:center;gap:10px;
  font-size:15px;color:var(--txt);font-weight:500;
  padding:10px 0;
  border-bottom:1px solid var(--border);
}
.assortment-item svg{
  width:18px;height:18px;color:var(--burg);flex-shrink:0;
}
.assortment-cta{
  text-align:center;margin-top:40px;padding-top:32px;
  border-top:2px solid var(--border);
}
.assortment-cta p{font-size:17px;color:var(--txt2);margin-bottom:22px}

/* ═══════════════════ PROCESS ═══════════════════ */
.section-process{
  padding:110px 0;background:var(--white);
  border-top:1px solid var(--border);
}
.process-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:24px;position:relative;
}
.process-step{
  text-align:left;position:relative;
  padding:32px 28px;border-radius:var(--r-l);
  background:var(--light);
  transition:transform .35s ease,background .35s ease;
}
.process-step:hover{
  transform:translateY(-6px);
  background:var(--white);
  box-shadow:0 20px 50px -20px rgba(0,0,0,.1);
}
.process-num{
  font-family:var(--h);font-size:48px;font-weight:800;
  color:var(--burg);line-height:1;letter-spacing:-2px;
  opacity:.22;
  display:block;margin-bottom:18px;
  transition:opacity .3s ease;
}
.process-step:hover .process-num{opacity:1}
.process-step h4{
  font-family:var(--h);font-size:19px;font-weight:700;
  color:var(--dark);margin-bottom:10px;letter-spacing:-.2px;
}
.process-step p{font-size:15px;color:var(--txt2);line-height:1.65}

/* ═══════════════════ FAQ ═══════════════════ */
.section-faq{
  padding:110px 0;background:var(--white);
  border-top:1px solid var(--border);
  overflow:hidden; /* nuclear: clip any child that tries to overflow horizontally */
}
.faq-list{max-width:840px;margin:0 auto;width:100%}
.faq-item{
  border-bottom:1px solid var(--border);
  max-width:100%;overflow:hidden;
}
.faq-question{
  display:flex;justify-content:space-between;align-items:flex-start;
  width:100%;max-width:100%;box-sizing:border-box;
  padding:26px 0;
  background:transparent!important;border:none;
  font-family:var(--h);font-size:17px;font-weight:600;
  color:var(--dark)!important;text-align:left;cursor:pointer;
  gap:18px;transition:color .2s ease;letter-spacing:-.2px;
  line-height:1.4;
}
.faq-question span{
  flex:1 1 0%;min-width:0;
  overflow-wrap:anywhere;word-break:break-word;hyphens:auto;
  color:inherit!important;
}
.faq-question:hover{color:var(--burg)!important}
.faq-question:hover svg{color:var(--burg)!important}
.faq-question svg{
  width:22px;height:22px;flex-shrink:0;
  transition:transform .3s ease;
  color:var(--burg)!important;stroke:currentColor!important;
  margin-top:4px;
}
.faq-item.open .faq-question svg{transform:rotate(45deg)}
.faq-answer{
  max-height:0;overflow:hidden;
  transition:max-height .4s ease,padding .3s ease;
}
.faq-item.open .faq-answer{max-height:500px;padding-bottom:26px}
.faq-answer p{font-size:16px;color:var(--txt2);line-height:1.75}

/* ═══════════════════ CTA ═══════════════════ */
.section-cta{padding:60px 0 110px;background:var(--white)}
.cta-box{
  background:var(--dark);
  border-radius:var(--r-l);
  padding:72px 64px;text-align:center;
  position:relative;overflow:hidden;
}
.cta-box::before{
  content:'';position:absolute;top:-150px;right:-100px;
  width:400px;height:400px;
  background:radial-gradient(circle,rgba(139,35,50,.2),transparent 65%);
  border-radius:50%;pointer-events:none;
}
.cta-box > *{position:relative;z-index:1}
.cta-box h2{
  font-family:var(--h);font-size:clamp(26px,3vw,38px);
  font-weight:800;color:var(--white);
  margin-bottom:18px;letter-spacing:-.6px;
}
.cta-box p{
  font-size:17px;color:rgba(255,255,255,.6);
  max-width:560px;margin:0 auto 36px;line-height:1.65;
}
.cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.cta-btns .btn-secondary{
  border-color:rgba(255,255,255,.2);color:var(--white)!important;
}
.cta-btns .btn-secondary:hover{
  border-color:var(--burg-l);color:var(--burg-l)!important;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.site-footer{
  padding:72px 0 0;
  background:var(--dark);
  position:relative;
}
.footer-grid{
  display:grid;grid-template-columns:1.6fr 1fr 1fr 1.3fr;
  gap:48px;padding-bottom:52px;
}
.footer-about-logo{
  display:flex;align-items:center;gap:12px;margin-bottom:18px;
}
.footer-about-logo .logo-mark{background:var(--burg)}
.footer-about-logo .logo-name{color:var(--white)}
.footer-about-logo .logo-name b{color:var(--burg-l)}
.footer-social{display:flex;gap:10px;margin-top:22px}
.footer-social a{
  width:44px;height:44px;background:var(--dark2);
  border-radius:8px;display:flex;align-items:center;justify-content:center;
  transition:background .2s ease,transform .2s ease;
  color:rgba(255,255,255,.62);
}
.footer-social a:hover{
  background:var(--burg);color:var(--white);
  transform:translateY(-2px);
}
.footer-social a svg{width:20px;height:20px}

/* Footer color scope — override the global text color variable inside the footer
   so Hello Elementor's inherited rules (which use var(--e-global-color-text))
   don't render text as dark on the dark footer background. */
.site-footer,
.site-footer *,
body .site-footer,
body .site-footer *{
  --e-global-color-text:#FFFFFF!important;
  --e-global-color-primary:#FFFFFF!important;
}
.site-footer{
  color:#FFFFFF!important;
}
.site-footer p,
.site-footer ul,
.site-footer li,
.site-footer a{
  color:#FFFFFF!important;
}

.site-footer h4{
  font-family:var(--h);font-size:18px;font-weight:700;
  color:#FFFFFF!important;margin-bottom:22px;letter-spacing:.2px;
  display:block!important;visibility:visible!important;
}
.site-footer .footer-links,
body .site-footer ul.footer-links{
  display:block!important;visibility:visible!important;opacity:1!important;
  list-style:none!important;padding:0!important;margin:0!important;
}
.site-footer .footer-links li,
body .site-footer ul.footer-links li{
  margin:0 0 12px 0!important;padding:0!important;
  display:list-item!important;visibility:visible!important;opacity:1!important;
  list-style:none!important;
  height:auto!important;width:auto!important;
}
.site-footer .footer-links a,
body .site-footer ul.footer-links li a,
body .site-footer .footer-links a:link,
body .site-footer .footer-links a:visited{
  font-size:16px!important;
  color:#FFFFFF!important;
  opacity:.85!important;
  display:inline-block!important;visibility:visible!important;
  text-decoration:none!important;
  transition:opacity .2s ease;
}
.site-footer .footer-links a:hover,
body .site-footer ul.footer-links li a:hover{
  color:#FFFFFF!important;opacity:1!important;
}
.site-footer .footer-about p{
  color:#FFFFFF!important;opacity:.7;
  font-size:16px;line-height:1.7;max-width:360px;
}

.footer-contact p{
  font-size:16px;color:rgba(255,255,255,.62);
  margin-bottom:16px;display:flex;align-items:flex-start;gap:12px;
  line-height:1.55;
}
.fc-icon{flex-shrink:0;margin-top:3px;color:var(--burg-l)}
.fc-icon svg{width:18px;height:18px}
.footer-contact a{color:rgba(255,255,255,.7);transition:color .2s ease}
.footer-contact a:hover{color:var(--burg-l)}

.footer-bottom{
  padding:28px 0;border-top:1px solid var(--dark2);
  display:flex;justify-content:space-between;align-items:center;
  font-size:15px;color:rgba(255,255,255,.45);flex-wrap:wrap;gap:8px;
}
.footer-bottom a{color:rgba(255,255,255,.55);transition:color .2s}
.footer-bottom a:hover{color:var(--burg-l)}

/* ═══════════════════ MODAL ═══════════════════ */
.modal-overlay{
  display:none;position:fixed;inset:0;
  background:rgba(22,22,24,.55);z-index:9999;
  align-items:center;justify-content:center;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  padding:20px;
}
.modal-overlay.active{display:flex;animation:fadeIn .25s ease}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.modal-box{
  background:var(--white);padding:48px;
  max-width:500px;width:100%;
  position:relative;border-radius:var(--r-l);
  box-shadow:0 30px 80px -20px rgba(0,0,0,.3);
  max-height:90vh;overflow-y:auto;
  animation:slideUp .35s cubic-bezier(.22,1,.36,1);
}
@keyframes slideUp{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}
.modal-close{
  position:absolute;top:16px;right:20px;
  background:transparent;border:none;color:var(--txt3);
  transition:color .2s ease;padding:6px;
}
.modal-close:hover{color:var(--burg)}
.modal-close svg{width:24px;height:24px}
.modal-box h3{
  font-family:var(--h);font-size:24px;font-weight:800;
  color:var(--dark);margin-bottom:6px;letter-spacing:-.4px;
}
.modal-category{
  color:var(--burg);font-size:14px;font-weight:700;
  margin-bottom:24px;min-height:20px;letter-spacing:.2px;
  text-transform:uppercase;
}
.modal-form{display:flex;flex-direction:column;gap:14px}
.modal-form input,.modal-form textarea{
  font-family:var(--b);font-size:15px;
  padding:14px 16px;background:var(--light);
  border:1px solid transparent;border-radius:var(--r);
  color:var(--txt);width:100%;
  transition:border-color .2s ease,background .2s ease;
}
.modal-form input:focus,.modal-form textarea:focus{
  outline:none;border-color:var(--burg);background:var(--white);
}
.modal-form input::placeholder,.modal-form textarea::placeholder{color:var(--txt3)}
.modal-form textarea{resize:vertical;min-height:80px;font-family:var(--b)}
.modal-form .agree{
  font-size:13px;color:var(--txt2);line-height:1.5;
  display:flex;align-items:flex-start;gap:10px;
  margin-top:4px;
}
.modal-form .agree input{width:auto;margin-top:3px}
.modal-form .agree a{color:var(--burg);text-decoration:underline}
.modal-submit{
  width:100%;justify-content:center;margin-top:6px;
}
.modal-status{
  font-size:14px;text-align:center;margin-top:8px;
  font-weight:600;min-height:20px;
}
.modal-status.success{color:#2e7d32}
.modal-status.error{color:var(--burg)}

/* ═══════════════════ 404 ═══════════════════ */
.page-404{
  min-height:calc(100vh - var(--hh));
  display:flex;align-items:center;justify-content:center;
  text-align:center;padding:calc(var(--hh) + 60px) 0 60px;
}
.error-code{
  font-family:var(--h);font-size:clamp(96px,18vw,180px);
  font-weight:900;color:var(--burg);line-height:1;opacity:.15;
  letter-spacing:-6px;
}
.error-content h1{
  font-family:var(--h);font-size:clamp(26px,3vw,38px);
  font-weight:800;margin:16px 0;color:var(--dark);letter-spacing:-.5px;
}
.error-content p{
  font-size:17px;color:var(--txt2);
  margin-bottom:32px;max-width:480px;line-height:1.65;
}

/* ═══════════════════ PRIVACY / DEFAULT PAGE ═══════════════════ */
.page-default{padding:calc(var(--hh) + 80px) 0 80px;background:var(--white)}
.page-default .w{max-width:880px}
.page-default h1{
  font-family:var(--h);font-weight:800;
  font-size:clamp(28px,3.4vw,42px);
  color:var(--dark);line-height:1.1;letter-spacing:-.6px;
  margin-bottom:32px;
}
.page-default h2{
  font-family:var(--h);font-weight:700;font-size:22px;
  color:var(--dark);margin:36px 0 14px;letter-spacing:-.3px;
}
.page-default p{
  font-size:16px;color:var(--txt2);
  line-height:1.75;margin-bottom:14px;
}
.page-default ul{padding-left:20px;margin-bottom:14px}
.page-default li{
  list-style:disc;font-size:16px;color:var(--txt2);
  line-height:1.7;margin-bottom:6px;
}

/* ═══════════════════ SCROLL REVEAL ═══════════════════ */
.rv{
  opacity:0;transform:translateY(28px);
  transition:opacity .85s cubic-bezier(.16,1,.3,1),
             transform .85s cubic-bezier(.16,1,.3,1);
}
.rv.v{opacity:1;transform:translateY(0)}
.d1{transition-delay:.08s}
.d2{transition-delay:.16s}
.d3{transition-delay:.24s}
.d4{transition-delay:.32s}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media(max-width:1100px){
  .container{padding:0 24px}
  .hex-grid{grid-template-columns:repeat(3,110px)}
  .hex{width:110px;height:110px}
  .hex:nth-child(even){margin-top:58px}
  .process-grid{grid-template-columns:repeat(2,1fr);gap:20px}
  .srv-row{grid-template-columns:1fr}
  .srv-row:nth-child(odd) .srv-image,
  .srv-row:nth-child(even) .srv-image{order:1}
  .srv-row:nth-child(odd) .srv-content,
  .srv-row:nth-child(even) .srv-content{order:2}
  .assortment-list{grid-template-columns:repeat(2,1fr)}
  .brands-grid{grid-template-columns:repeat(4,1fr)}
  .brand-cell:nth-child(6n){border-right:1px solid var(--border)}
  .brand-cell:nth-child(4n){border-right:none}
  .brand-cell:nth-last-child(-n+6){border-bottom:1px solid var(--border)}
  .brand-cell:nth-last-child(-n+4){border-bottom:none}
  .reasons-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:900px){
  .burger{display:block}
  .main-nav{
    display:none;position:fixed;top:var(--hh);left:0;right:0;
    background:rgba(255,255,255,.98);padding:28px 32px;z-index:99;
    backdrop-filter:blur(16px);
    border-bottom:1px solid var(--border);
    max-height:calc(100vh - var(--hh));overflow-y:auto;
  }
  .main-nav.open{display:block}
  .main-nav .nav-list{flex-direction:column;gap:20px;align-items:stretch}
  .main-nav .nav-list a{font-size:18px;padding:8px 0}
  .header-phone{display:none}
  .hero{min-height:auto!important;align-items:flex-start!important}
  .hero-inner{grid-template-columns:1fr;gap:32px;padding:32px 0 64px}
  .hero-hex{display:none}
  .hero h1{max-width:none}
  .hero-desc{margin:20px 0 28px;font-size:16px}
  .trust-grid{grid-template-columns:repeat(2,1fr);gap:24px}
  .cat-grid{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr;gap:48px}
  .utp-grid{grid-template-columns:1fr;gap:16px}
  .reasons-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .assortment-list{grid-template-columns:repeat(2,1fr)}
  .srv-content{padding:40px 32px}
  .srv-image{min-height:280px}
  .cta-box{padding:48px 32px}
  .process-step{padding:28px 24px}
  /* FAQ mobile — explicit overrides */
  .faq-question{
    font-size:16px!important;padding:22px 0!important;gap:14px!important;
    display:flex!important;align-items:flex-start!important;line-height:1.4!important;
  }
  .faq-question span{
    flex:1 1 auto!important;min-width:0!important;
    overflow-wrap:anywhere!important;word-break:break-word!important;
    hyphens:auto!important;display:block!important;
  }
  .faq-question svg{width:20px!important;height:20px!important;flex-shrink:0!important;margin-top:2px!important}
}
@media(max-width:560px){
  .w{padding:0 20px}
  .cat-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:1fr;gap:20px}
  .process-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .hero-btns{flex-direction:column;width:100%}
  .hero-btns .btn{justify-content:center}
  .about-stats{flex-direction:column;gap:24px}
  .assortment-list{grid-template-columns:1fr}
  .cta-btns{flex-direction:column}
  .cta-btns .btn{width:100%}
  .modal-box{padding:32px 24px}
  .brands-grid{grid-template-columns:repeat(2,1fr)}
  .brand-cell:nth-child(4n){border-right:1px solid var(--border)}
  .brand-cell:nth-child(2n){border-right:none}
  .reasons-grid{grid-template-columns:1fr}
  .reason-item{padding:28px 24px}
  .section-cats,.section-about,.section-utp,
  .section-srv,.section-assortment,
  .section-process,.section-faq,.section-reasons,
  .section-brands{padding:72px 0}
  .section-cta{padding:40px 0 72px}
  .cta-box{padding:40px 24px}
  /* FAQ < 560px — even more compact */
  .faq-question{font-size:15px!important;line-height:1.45!important;padding:20px 0!important;gap:12px!important}
  .faq-question svg{width:18px!important;height:18px!important}
}

/* Admin bar offset */
.admin-bar .site-header{top:32px}
@media(max-width:782px){
  .admin-bar .site-header{top:46px}
}

/* Print */
@media print{
  .site-header,.site-footer,.modal-overlay,.hero-hex{display:none}
}

/* ── Header backing on plain white pages (privacy policy + 404) ──
   These pages have a white background, so the transparent fixed header
   blended in. Give it the site's own "scrolled" bar look permanently. */
body.page-id-19 .site-header,
body.error404 .site-header{
  background:rgba(255,255,255,.96);
  -webkit-backdrop-filter:saturate(180%) blur(18px);
  backdrop-filter:saturate(180%) blur(18px);
  border-bottom-color:rgba(0,0,0,.08);
  box-shadow:0 2px 18px rgba(0,0,0,.06);
}
