/* ===========================================================
   EVIBOND — apple-style minimal monochrome
   Shared across /en/, /ro/, /ru/
   =========================================================== */

:root{
  /* Surface */
  --bg:        #FFFFFF;
  --bg-soft:   #F7F7F7;
  --bg-tint:   #FAFAFA;

  /* Ink */
  --ink:       #1D1D1F;
  --ink-soft:  #424246;
  --ink-mute:  #6E6E73;
  --ink-faint: #86868B;

  /* Lines */
  --line:      #D2D2D7;
  --line-soft: #E5E5E7;

  /* Accent */
  --accent:    #1D1D1F;

  /* Typography */
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --serif: "Newsreader", "New York", Georgia, serif;

  /* Layout */
  --gutter: clamp(20px, 4vw, 56px);
  --maxw:   1200px;

  /* Radii */
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;

  /* Easing */
  --ease: cubic-bezier(.22,.7,.2,1);
}

*,
*::before,
*::after{ box-sizing: border-box; }

html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; cursor:pointer; background:none; border:0; padding:0; }
ul, ol{ list-style:none; padding:0; margin:0; }
summary{ list-style:none; cursor:pointer; }
summary::-webkit-details-marker{ display:none; }

::selection{ background:var(--ink); color:var(--bg); }

.wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.kicker{
  display:inline-block;
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 18px;
}

.section-head{
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 880px;
}
.section-head.centered{ text-align:center; margin-inline:auto; }
.section-head h2,
.story-head h2{
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: var(--ink);
}
.section-head h2 em,
.story-head h2 em,
.hero-tag em,
.dist-card h2 em,
.contact h2 em,
.faq h2 em{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.section-head .lede{
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}
.section-head.centered .lede{ margin-inline:auto; }

/* =========================================================
   Top bar
   ========================================================= */
.topbar{
  position: sticky; top:0; z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-row{
  display:flex; align-items:center; justify-content:space-between;
  height: 56px;
}
.logo{ display:inline-flex; align-items:baseline; gap:0; }
.logo .word{
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.logo .evi{ font-weight: 800; color: var(--ink); }
.logo .bond{ font-weight: 500; color: var(--ink-faint); letter-spacing: 0.04em; }
.nav{ display:flex; gap: clamp(20px, 2.4vw, 38px); }
.nav a{
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 400;
  transition: color .25s var(--ease);
}
.nav a:hover{ color: var(--ink); }
.nav-right{ display:flex; align-items:center; gap:14px; }

.lang{
  display:flex;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid var(--line-soft);
}
.lang a{
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--ink-mute);
  transition: all .25s var(--ease);
}
.lang a.active{ background: var(--ink); color: var(--bg); }

@media (max-width: 880px){
  .nav{ display:none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero{
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(80px, 8vw, 120px);
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  border-bottom: 1px solid var(--line-soft);
}
.hero-eyebrow{
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: .04em;
  margin-bottom: clamp(22px, 3vw, 34px);
  font-weight: 400;
}
.hero-title{ margin: 0; line-height: .9; letter-spacing: -0.04em; }
.brand-word{
  display:inline-block;
  font-family: var(--sans);
  font-size: clamp(72px, 14vw, 220px);
  letter-spacing: -0.045em;
}
.brand-word .evi{
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #1D1D1F 0%, #2A2A2D 60%, #4A4A4F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-word .bond{
  font-weight: 500;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #86868B 0%, #A6A6AC 60%, #BCBCC2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tag{
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink-soft);
  margin: clamp(20px, 3vw, 30px) auto clamp(36px, 5vw, 50px);
  max-width: 18ch;
  letter-spacing: -.01em;
}
.hero-actions{
  display:flex; justify-content:center; gap:14px; flex-wrap:wrap;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn svg{ transition: transform .3s var(--ease); }
.btn:hover svg{ transform: translateX(3px); }
.btn-dark{ background: var(--ink); color: var(--bg); }
.btn-dark:hover{
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(29,29,31,.18);
}
.btn-ghost{ border-color: var(--line); color: var(--ink); background: var(--bg); }
.btn-ghost:hover{ background: var(--bg-soft); border-color: var(--ink-faint); }

.hero-product{
  margin: 0 auto;
  max-width: 920px;
  position: relative;
  padding-inline: clamp(0px, 4vw, 40px);
}
.hero-product img{
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  filter: contrast(1.05) saturate(0);
  transition: transform 1.2s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,.05), 0 30px 60px -20px rgba(0,0,0,.18);
}
.hero-product:hover img{ transform: scale(1.01); }

.hero-strip{
  margin-top: clamp(60px, 7vw, 90px);
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.hs-item{
  background: var(--bg);
  padding: 22px 18px;
  display:flex; flex-direction:column; align-items:flex-start;
  gap: 6px; text-align:left;
}
.hs-k{
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute);
}
.hs-v{
  font-weight: 500; font-size: 17px; color: var(--ink); letter-spacing: -.005em;
}
@media (max-width:680px){ .hero-strip{ grid-template-columns: 1fr 1fr; } }

/* =========================================================
   Story
   ========================================================= */
.story{ padding-block: clamp(90px, 11vw, 160px); background: var(--bg); }
.story.network{
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.story-grid{
  display:grid; gap: clamp(32px, 5vw, 80px);
  grid-template-columns: 1fr;
}
@media (min-width: 980px){
  .story-grid{ grid-template-columns: .9fr 1.1fr; align-items: start; }
}
.story-head{ position: sticky; top: 80px; }
.story-head h2{ max-width: 14ch; }

.story-body p{
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 60ch;
}
.story-lead{
  font-size: clamp(20px, 1.6vw, 25px) !important;
  color: var(--ink) !important;
  font-weight: 400;
  line-height: 1.45 !important;
}
.story-stats{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: clamp(60px, 8vw, 110px);
  padding-top: clamp(36px, 4vw, 50px);
  border-top: 1px solid var(--line);
}
.story-stats li{ display:flex; flex-direction:column; padding-right: 30px; }
.story-stats li:not(:first-child){ padding-left: 30px; border-left: 1px solid var(--line); }
.story-stats .num{
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(40px, 5vw, 64px); letter-spacing: -.04em; line-height: 1;
  color: var(--ink); margin-bottom: 14px;
}
.story-stats .lbl{ font-size: 13px; color: var(--ink-mute); line-height: 1.45; }
@media (max-width: 880px){
  .story-stats{ grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .story-stats li:not(:first-child){ padding-left: 30px; }
  .story-stats li:nth-child(odd){ padding-left: 0 !important; border-left: 0; }
  .story-head{ position: static; }
}

/* =========================================================
   Anatomy
   ========================================================= */
.anatomy{
  padding-block: clamp(90px, 11vw, 160px);
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.anatomy-art{
  margin: 0 auto clamp(50px, 7vw, 100px);
  max-width: 1080px;
  padding: clamp(20px, 4vw, 60px);
}
.anatomy-art svg{ width: 100%; height: auto; }
.layer-cards{
  display:grid; gap: clamp(24px, 3vw, 40px);
  grid-template-columns: 1fr;
  text-align: left; max-width: 1080px; margin: 0 auto;
}
@media (min-width: 880px){ .layer-cards{ grid-template-columns: repeat(3, 1fr); } }
.lc{
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  transition: all .35s var(--ease);
}
.lc:hover{
  border-color: var(--line); transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(29,29,31,.12);
}
.lc-num{
  display:inline-block; font-size: 12px; letter-spacing: .14em;
  color: var(--ink-mute); margin-bottom: 18px; font-weight: 500;
}
.lc h3{
  font-family: var(--sans); font-weight: 500;
  font-size: 22px; letter-spacing: -.015em; margin: 0 0 12px; color: var(--ink);
}
.lc p{ margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-soft); }

/* =========================================================
   Specifications
   ========================================================= */
.specs{ padding-block: clamp(90px, 11vw, 160px); }
.spec-table{ border-top: 1px solid var(--line); max-width: 1080px; }
.spec-table .row{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px;
  padding: 22px 6px; border-bottom: 1px solid var(--line-soft);
  align-items: center; font-size: 16px;
}
.spec-table .row.head{ border-bottom: 1px solid var(--line); padding-block: 18px; }
.spec-table .row.head span{
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
}
.spec-table .row span:first-child{ color: var(--ink-soft); }
.spec-table .row.head span:first-child{ color: var(--ink-mute); }
.spec-table .row span{ color: var(--ink); }
@media (max-width: 720px){
  .spec-table .row{ grid-template-columns: 1fr; padding: 18px 4px; gap: 6px; }
  .spec-table .row.head{ display:none; }
  .spec-table .row span:first-child{
    font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute);
  }
  /* Когда значения одинаковые для 5мм и 10мм — скрываю дубликат */
  .spec-table .row[data-same="true"] span:nth-child(3){ display: none; }
}

/* =========================================================
   Applications
   ========================================================= */
.applications{
  padding-block: clamp(90px, 11vw, 160px);
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.app-grid{
  display:grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
}
@media (min-width: 680px){ .app-grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px){ .app-grid{ grid-template-columns: 1fr 1fr 1fr; } }
.app{
  background: var(--bg);
  padding: clamp(28px, 3vw, 44px);
  display:flex; flex-direction:column; gap: 14px;
  position: relative; min-height: 200px;
  transition: background .25s var(--ease);
}
.app:hover{ background: var(--bg-soft); }
.app-num{ font-size: 11px; letter-spacing: .14em; color: var(--ink-faint); font-weight: 500; }
.app h3{
  font-family: var(--sans); font-weight: 500;
  font-size: 20px; letter-spacing: -.012em; margin: 0; color: var(--ink);
}
.app p{ margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); max-width: 32ch; }

/* =========================================================
   FAQ — для AI и Google
   ========================================================= */
.faq{
  padding-block: clamp(90px, 11vw, 160px);
  background: var(--bg);
}
.faq h2{
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: 0 0 clamp(40px, 5vw, 60px);
  max-width: 18ch;
}
.faq-list{
  border-top: 1px solid var(--line);
  max-width: 1080px;
}
.faq-list details{
  border-bottom: 1px solid var(--line-soft);
  padding: 24px 0;
  transition: padding .3s var(--ease);
}
.faq-list details[open]{ padding: 32px 0; }
.faq-list summary{
  display:flex; justify-content:space-between; gap: 24px;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 500;
  letter-spacing: -.012em;
  color: var(--ink);
  line-height: 1.4;
  align-items: flex-start;
  transition: color .25s var(--ease);
}
.faq-list summary:hover{ color: #000; }
.faq-list summary::after{
  content: "";
  flex: none;
  width: 22px; height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D1D1F' stroke-width='1.6' stroke-linecap='round'><path d='M5 12h14M12 5v14'/></svg>");
  background-position: center; background-repeat: no-repeat;
  margin-top: 4px;
  transition: transform .3s var(--ease);
}
.faq-list details[open] summary::after{ transform: rotate(45deg); }
.faq-list .answer{
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 70ch;
}
.faq-list .answer p{ margin: 0 0 12px; }
.faq-list .answer p:last-child{ margin-bottom: 0; }

/* =========================================================
   Distributors
   ========================================================= */
.distributors{ padding-block: clamp(90px, 11vw, 160px); }
.dist-card{
  background: var(--ink); color: var(--bg);
  border-radius: var(--r-lg); padding: clamp(40px, 6vw, 90px);
  position: relative; overflow: hidden;
}
.dist-card::before{
  content:""; position:absolute;
  width: 480px; height: 480px;
  background: radial-gradient(closest-side, rgba(255,255,255,.06), transparent 70%);
  right: -120px; top: -180px; pointer-events: none;
}
.dist-card .kicker{ color: rgba(255,255,255,.6); }
.dist-card h2{ color: var(--bg); max-width: 16ch; margin-bottom: 24px; }
.dist-card h2 em{ color: #FFFFFF; }
.dist-lead{
  font-size: clamp(17px, 1.3vw, 21px);
  color: rgba(255,255,255,.78);
  max-width: 56ch; margin: 0 0 36px; line-height: 1.55;
}
.dist-points{
  display:grid; gap: 12px; margin-bottom: 40px; max-width: 60ch;
}
.dist-points li{
  display:flex; gap:14px; align-items:flex-start;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12);
  font-size: 15.5px; color: rgba(255,255,255,.85);
}
.dist-points li::before{
  content:""; flex: none; width: 18px; height: 18px; margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 12.5l5 5L20 7'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.dist-actions .btn-dark{ background: var(--bg); color: var(--ink); }
.dist-actions .btn-dark:hover{
  background: #f3f3f3;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
}

/* =========================================================
   Contact
   ========================================================= */
.contact{
  padding-block: clamp(90px, 11vw, 160px);
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.contact-grid{
  display:grid; grid-template-columns: 1fr; gap: clamp(40px, 5vw, 80px);
}
@media (min-width: 880px){
  .contact-grid{ grid-template-columns: 1.2fr 1fr; align-items: start; }
}
.contact h2{
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05; letter-spacing: -.025em;
  margin: 0 0 22px; max-width: 14ch;
}
.contact p{
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--ink-soft); margin: 0; line-height: 1.55; max-width: 50ch;
}
.contact-list{ display:grid; gap: 0; border-top: 1px solid var(--line); }
.contact-list li{
  padding: 22px 0; border-bottom: 1px solid var(--line-soft);
  display:flex; flex-direction:column; gap: 6px;
}
.ct-k{
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute);
}
.ct-v{
  font-size: 19px; font-weight: 500; color: var(--ink); letter-spacing: -.01em;
}
a.ct-v{ transition: color .25s var(--ease); }
a.ct-v:hover{ color: #000; }

/* =========================================================
   Footer
   ========================================================= */
.foot{
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  padding-block: 64px 32px;
}
.foot-grid{ display:grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 720px){
  .foot-grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.foot-word{
  font-size: 22px; letter-spacing: 0.02em; margin-bottom: 14px;
}
.foot-word .evi{ font-weight: 800; color: var(--ink); }
.foot-word .bond{ font-weight: 500; color: var(--ink-mute); letter-spacing: 0.04em; }
.foot-brand p{
  font-size: 14px; color: var(--ink-mute); margin: 0;
  line-height: 1.55; max-width: 36ch;
}
.foot h5{
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500; margin: 0 0 18px;
}
.foot-nav{ display:flex; flex-direction:column; gap: 10px; }
.foot-nav a, .foot-contact a{
  font-size: 14px; color: var(--ink-soft); transition: color .25s var(--ease);
}
.foot-nav a:hover, .foot-contact a:hover{ color: var(--ink); }
.foot-contact{ display:flex; flex-direction:column; gap: 10px; }
.foot-logo{
  display: inline-flex;
  align-items: flex-start;
  gap: 0;
  height: 64px;
  width: auto;
  color: var(--ink-soft);
}
.foot-logo svg{ height: 100%; width: auto; display: block; }
.foot-logo .reg{
  font-size: 13px;
  position: relative;
  top: 4px;
  left: 0;
  margin-left: 3px;
  color: var(--ink-mute);
  display: inline-block;
  line-height: 1;
}
.foot-bottom{
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display:flex; justify-content:space-between; flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: var(--ink-mute);
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal{
  opacity: 0; transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in{ opacity: 1; transform: none; }
.reveal-stagger > *{
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-stagger.in > *{ opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1){ transition-delay: .04s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay: .20s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay: .28s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay: .36s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay: .44s; }

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-stagger > *{
    opacity: 1; transform: none; transition: none;
  }
  *{ scroll-behavior: auto !important; }
}

/* Skip link для accessibility */
.skip-link{
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 16px;
  z-index: 100;
  border-radius: 0 0 8px 0;
  font-size: 13px;
}
.skip-link:focus{ top: 0; }

/* =========================================================
   Geo detection chip — имитация определения региона по IP
   ========================================================= */
.geo-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.geo-chip .dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34C759;
  box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.15);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse{
  0%, 100% { box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.15); }
  50%      { box-shadow: 0 0 0 8px rgba(52, 199, 89, 0.05); }
}
.geo-chip strong{ color: var(--ink); font-weight: 500; }

/* =========================================================
   Distributor cards — Молдова / Румыния отдельные блоки
   ========================================================= */
.dist-grid{
  display: grid;
  gap: clamp(20px, 2.5vw, 32px);
  grid-template-columns: 1fr;
  margin-top: clamp(40px, 5vw, 60px);
}
@media (min-width: 760px){
  .dist-grid{ grid-template-columns: repeat(2, 1fr); }
}

.dist-tile{
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  transition: all .35s var(--ease);
}
.dist-tile:hover{
  border-color: var(--line);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(29,29,31,.14);
}
.dist-flag{
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dist-flag::before{
  content: "";
  width: 16px;
  height: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.dist-tile h3{
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.2;
}
.dist-tile .dist-since{
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.dist-tile p{
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 22px;
  flex: 1;
}
.dist-tile .dist-meta{
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  display: grid;
  gap: 8px;
  font-size: 13px;
}
.dist-tile .dist-meta div{
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  color: var(--ink-soft);
}
.dist-tile .dist-meta span:first-child{
  color: var(--ink-mute);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding-top: 2px;
}
.dist-tile .dist-meta a{
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.dist-tile .dist-meta a:hover{ border-bottom-color: var(--ink); }

/* Highlight для основного дистрибьютора (whitecapital) */
.dist-tile.featured{
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.dist-tile.featured h3{ color: var(--bg); }
.dist-tile.featured p,
.dist-tile.featured .dist-meta div{ color: rgba(255,255,255,.78); }
.dist-tile.featured .dist-meta{ border-top-color: rgba(255,255,255,.15); }
.dist-tile.featured .dist-meta a{ color: var(--bg); }
.dist-tile.featured .dist-meta a:hover{ border-bottom-color: var(--bg); }
.dist-tile.featured .dist-since{ color: rgba(255,255,255,.6); }
.dist-tile.featured .dist-flag{ color: rgba(255,255,255,.6); }
.dist-tile.featured .dist-flag::before{
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2);
}
.dist-tile.featured .dist-meta span:first-child{ color: rgba(255,255,255,.5); }
.roland-badge{
  display: inline-block;
  margin-top: 8px;
  padding: 4px 11px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  align-self: flex-start;
}
.dist-tile.featured .roland-badge{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: var(--bg);
}

/* =========================================================
   Contact form
   ========================================================= */
.contact-form{
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.contact-form .field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form .field-row{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px){
  .contact-form .field-row{ grid-template-columns: 1fr 1fr; }
}
.contact-form label{
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(29,29,31,.06);
}
.contact-form textarea{ resize: vertical; min-height: 120px; line-height: 1.5; }
.contact-form select{
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E6E73' stroke-width='1.6' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}
.contact-form .form-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.contact-form .form-note{
  font-size: 12px;
  color: var(--ink-mute);
  max-width: 38ch;
  line-height: 1.5;
}

/* =========================================================
   Registered trademark mark — ®
   Используем position+top вместо vertical-align — последнее
   зависит от line-height родителя и плавает на разных размерах.
   ========================================================= */
.reg{
  font-size: 0.42em;
  font-weight: 400;
  position: relative;
  top: -0.7em;
  display: inline-block;
  line-height: 1;
  margin-left: 0.08em;
  letter-spacing: 0;
  color: var(--ink-mute);
}
.brand-word .reg{
  font-size: 0.22em;
  top: -2.4em;
  margin-left: -0.35em;
  background: linear-gradient(180deg, #86868B 0%, #A6A6AC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.foot-word .reg{
  font-size: 0.5em;
  top: -0.65em;
  color: var(--ink-mute);
}
