/* Standalone landing styles (do not depend on main site assets) */
/* PANTONE 871 C — золото акцентов; фон — жемчужно-белый */
:root{
  --page:#F7F3EC;
  --page2:#EEE9E0;
  --bg:var(--page2);
  --bg2:#E5E0D6;
  --surface:#ffffff;
  --surface-soft:#FAF7F0;
  --text:#1a1d22;
  --muted:#5c6169;
  --graphite:#3a3d42;
  --graphite2:#2e3136;
  --line:rgba(26,29,34,.12);
  --shadow:0 24px 72px rgba(20,18,14,.09);
  --shadow-card:0 14px 42px rgba(20,18,14,.11);
  --shadow-card-hover:0 22px 54px rgba(20,18,14,.14);
  --gold-871:#9A7B4F;
  --gold-mid:#B8956A;
  --gold-deep:#6B5034;
  --gold:#c4a574;
  --radius:18px;
  --radius2:26px;
  --font-display:'Playfair Display',Georgia,serif;
  --font-ui:'Montserrat',Inter,system-ui,sans-serif;
  --header-h:72px;
}

*{box-sizing:border-box}
html{
  scroll-padding-top:calc(var(--header-h) + 12px);
}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font-ui);
  font-weight:400;
  color:var(--text);
  background:
    radial-gradient(900px 420px at 8% -4%, rgba(154,123,79,.085), transparent 58%),
    radial-gradient(800px 380px at 92% 8%, rgba(58,61,66,.055), transparent 55%),
    linear-gradient(180deg,var(--page) 0%, var(--page2) 48%, #E8E3D9 100%);
}

a{color:inherit}
.container{max-width:1100px;margin:0 auto;padding:0 20px}

.skip{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip:focus{
  left:20px;
  top:calc(var(--header-h) + 12px);
  width:auto;
  height:auto;
  padding:10px 14px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  z-index:110;
}

.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  backdrop-filter:saturate(180%) blur(14px);
  background:rgba(247,243,236,.94);
  border-bottom:1px solid var(--line);
  box-shadow:0 4px 24px rgba(20,18,14,.06);
}
main{
  padding-top:var(--header-h);
}
.header__inner{display:flex;align-items:center;justify-content:space-between;min-height:72px;gap:12px}
.header__actions{display:flex;flex:1;gap:10px;align-items:center;flex-wrap:wrap;justify-content:flex-end;min-width:0}

.lang{display:inline-flex;gap:8px;align-items:center;margin-right:2px}
.lang__a{
  font-weight:700;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  text-decoration:none;
  padding:10px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(17,24,39,.03);
  transition:background .15s ease, border-color .15s ease, transform .15s ease;
}
.lang__a:hover{background:rgba(17,24,39,.05);border-color:rgba(17,24,39,.18);transform:translateY(-1px)}
.lang__a.is-active{background:#fff;border-color:rgba(154,123,79,.45);box-shadow:0 10px 28px rgba(154,123,79,.12)}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
  flex-shrink:0;
  min-width:0;
  max-width:100%;
}
.brand__logo{
  width:40px;
  height:40px;
  min-width:40px;
  min-height:40px;
  flex-shrink:0;
  display:block;
  object-fit:contain;
  object-position:left center;
}
.brand--small .brand__logo{
  width:32px;
  height:32px;
  min-width:32px;
  min-height:32px;
}
.brand__name{font-weight:700;letter-spacing:-0.02em;line-height:1}
.brand__sub{font-size:12px;color:var(--muted);margin-top:2px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:999px;
  border:1px solid rgba(17,24,39,.14);
  text-decoration:none;
  font-weight:600;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px);box-shadow:0 14px 34px rgba(17,24,39,.11);border-color:rgba(17,24,39,.22)}
.btn:active{transform:translateY(0)}
.btn--ghost{background:rgba(255,255,255,.78)}
.btn--primary{
  border-color:transparent;
  color:#fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0)),
    linear-gradient(145deg, #c9a672 0%, var(--gold-871) 42%, var(--gold-deep) 100%);
  box-shadow:0 18px 46px rgba(107,80,52,.38), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn--primary:hover{
  box-shadow:0 22px 54px rgba(107,80,52,.46), inset 0 1px 0 rgba(255,255,255,.28);
  filter:brightness(1.03);
}
.btn--secondary{
  background:var(--graphite);
  color:#f3f4f6;
  border-color:transparent;
  box-shadow:0 12px 32px rgba(26,29,34,.18);
}
.btn--secondary:hover{
  background:var(--graphite2);
  box-shadow:0 16px 40px rgba(26,29,34,.22);
}
.btn--graphite{
  background:var(--graphite);
  color:#f3f4f6;
  border-color:transparent;
  box-shadow:0 10px 28px rgba(26,29,34,.16);
  font-weight:600;
  font-size:14px;
  padding:11px 18px;
}
.btn--graphite:hover{
  background:var(--graphite2);
  box-shadow:0 14px 36px rgba(26,29,34,.2);
}
.btn--full{width:100%}
.btn--mini{padding:10px 14px;font-size:13px}
.btn--block-touch{width:100%;justify-content:center}

.cta--mini{margin-top:10px}

.hero{
  padding:56px 0 24px;
}
.hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(0,.88fr);
  gap:clamp(20px,3vw,34px);
  align-items:start;
}
.hero__copy{
  min-width:0;
  max-width:62ch;
}
.hero__tagline{
  margin:0 0 16px;
  font-size:clamp(15px,1.5vw,18px);
  font-weight:500;
  line-height:1.45;
  color:rgba(26,29,34,.78);
}
.hero__body{
  margin:0 0 8px;
  font-size:14px;
  line-height:1.55;
  color:rgba(26,29,34,.82);
}
.hero__block{
  margin-top:14px;
}
.hero__block:first-child{
  margin-top:0;
}
.hero__kicker{
  margin:0 0 8px;
  font-family:var(--font-ui);
  font-size:11px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold-deep);
}
.hero__p{
  margin:0 0 8px;
}
.hero__p:last-child{
  margin-bottom:0;
}
.hero__list{
  margin:0;
  padding-left:1.15em;
}
.hero__list li{
  margin-bottom:6px;
}
.hero__list li:last-child{
  margin-bottom:0;
}
.hero__closing{
  margin:16px 0 0;
  font-family:var(--font-display);
  font-size:clamp(15px,1.45vw,17px);
  font-weight:500;
  line-height:1.45;
  color:rgba(26,29,34,.88);
}
.eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(17,24,39,.72);
  background:rgba(14,165,233,.10);
  border:1px solid rgba(14,165,233,.18);
  padding:8px 12px;border-radius:999px;
}
.h1{
  margin:0 0 14px;
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(28px,4.2vw,44px);
  line-height:1.12;
  letter-spacing:-0.02em;
  color:#14161a;
}
.h2{
  margin:0 0 14px;
  font-family:var(--font-ui);
  font-weight:300;
  font-size:clamp(22px,2.6vw,30px);
  letter-spacing:-0.02em;
  color:#1a1d22;
}
.h3{
  margin:0 0 10px;
  font-family:var(--font-ui);
  font-weight:500;
  font-size:17px;
  letter-spacing:-0.01em;
}
.h3--contacts{
  margin-top:22px;
  margin-bottom:8px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(26,29,34,.55);
}
.lead{margin:0;color:rgba(26,29,34,.72);font-size:clamp(15px,1.6vw,17px);line-height:1.65;max-width:52ch}
.cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.cta--hero{margin-top:22px;gap:14px}
.cta--hero .btn--primary{
  padding:15px 26px;
  font-size:15px;
  letter-spacing:.02em;
}
.hero__meta{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.pill{
  font-size:12px;
  color:rgba(17,24,39,.72);
  background:rgba(255,255,255,.7);
  border:1px solid var(--line);
  padding:8px 12px;border-radius:999px;
}

.hero__visual{
  align-self:start;
  width:100%;
  border-radius:var(--radius2);
  border:1px solid rgba(26,29,34,.1);
  background:
    radial-gradient(90% 90% at 20% 15%, rgba(201,166,114,.12) 0%, transparent 55%),
    radial-gradient(100% 100% at 85% 40%, rgba(58,61,66,.06) 0%, transparent 50%),
    linear-gradient(165deg, rgba(255,255,255,.96), rgba(249,247,244,.88));
  box-shadow:0 28px 80px rgba(20,18,14,.12), inset 0 1px 0 rgba(255,255,255,.9);
  padding:clamp(14px,3vw,22px);
  text-align:center;
}
.hero__img{
  display:block;
  width:100%;
  max-width:440px;
  height:auto;
  max-height:min(72vh,520px);
  margin:0 auto;
  object-fit:contain;
  object-position:center;
  border-radius:20px;
  box-shadow:0 22px 60px rgba(20,18,14,.18);
  background:linear-gradient(180deg,#ebe6df,#f5f2ed);
}
.hero__note{margin:14px 0 0;color:var(--muted);font-size:12px}

.bottle{position:relative;display:inline-block;width:190px;height:360px;margin:8px auto 0}
.bottle__cap{
  position:absolute;left:50%;transform:translateX(-50%);
  width:86px;height:28px;border-radius:12px;
  background:linear-gradient(180deg, rgba(17,24,39,.90), rgba(17,24,39,.65));
  top:12px;
}
.bottle__body{
  position:absolute;left:50%;transform:translateX(-50%);
  width:170px;height:300px;top:36px;border-radius:44px;
  background:linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.12));
  border:1px solid rgba(255,255,255,.55);
  box-shadow:inset 0 0 0 1px rgba(17,24,39,.06);
}
.bottle__label{
  position:absolute;left:50%;transform:translateX(-50%);
  width:128px;height:88px;top:110px;border-radius:18px;
  background:rgba(255,255,255,.80);
  border:1px solid rgba(17,24,39,.10);
  padding:12px 10px;
}
.bottle__label-title{font-weight:700;font-size:14px;letter-spacing:-0.02em}
.bottle__label-sub{margin-top:6px;font-size:11px;color:var(--muted)}
.bottle__shadow{
  position:absolute;left:50%;transform:translateX(-50%);
  width:190px;height:24px;bottom:10px;border-radius:999px;
  background:radial-gradient(closest-side, rgba(17,24,39,.20), rgba(17,24,39,0));
  filter:blur(2px);
}

.section{padding:56px 0}
.section--alt{
  background:linear-gradient(180deg, #EBE6DD 0%, #E4DED3 100%);
  border-top:1px solid rgba(26,29,34,.1);
  border-bottom:1px solid rgba(26,29,34,.1);
}
.muted{color:var(--muted)}
.link{color:rgba(17,24,39,.78);text-underline-offset:3px}
.link:hover{color:rgba(17,24,39,.95)}

.cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.card{
  background:var(--surface);
  border:1px solid rgba(17,24,39,.16);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow-card);
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card:hover{transform:translateY(-2px);box-shadow:var(--shadow-card-hover);border-color:rgba(154,123,79,.28)}
.card p{margin:0;color:rgba(17,24,39,.72);line-height:1.55}
.card p + p{margin-top:10px}

.cards--benefits{
  align-items:stretch;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.cards--benefits .card--benefit{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  min-width:0;
  max-width:100%;
  width:100%;
  box-sizing:border-box;
  min-height:360px;
  max-height:456px;
  overflow-x:hidden;
  overflow-y:auto;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
  scrollbar-gutter:stable;
  padding:12px 12px 13px;
  overflow-wrap:anywhere;
  word-wrap:break-word;
  word-break:normal;
}
.cards--benefits .card--benefit > :not(.card__icon){
  min-width:0;
}
.cards--benefits .card--benefit .h3{
  font-size:14px;
  line-height:1.3;
  margin-bottom:7px;
  max-width:100%;
}
.cards--benefits .card--benefit p{
  font-size:12.5px;
  line-height:1.48;
  max-width:100%;
}
.cards--benefits .card--benefit p + p{
  margin-top:6px;
}
.cards--benefits .card--benefit .card__metric{
  font-size:11.5px;
  padding:4px 9px;
  margin-bottom:6px;
  max-width:100%;
  white-space:normal;
  text-align:center;
  align-self:center;
}
.cards--benefits .card--benefit .muted{
  font-size:11.5px;
  line-height:1.42;
  max-width:100%;
}
.cards--benefits .card--benefit .link{
  overflow-wrap:anywhere;
}
.cards--benefits .card--benefit .card__icon{
  width:44px;
  height:44px;
  margin-bottom:8px;
  flex-shrink:0;
}
.cards--benefits .card--benefit .card__icon-svg{
  width:25px;
  height:25px;
}
.card--benefit{
  display:flex;
  flex-direction:column;
  min-height:0;
}
.card__icon{
  width:52px;height:52px;
  margin-bottom:12px;
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  color:var(--gold-871);
  background:linear-gradient(165deg, rgba(255,255,255,.95), rgba(249,247,244,.9));
  border:1px solid rgba(154,123,79,.2);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9), 0 8px 22px rgba(20,18,14,.06);
}
.card__icon-svg{
  width:30px;height:30px;
}
.card__metric{
  margin:0 0 10px;
  display:inline-block;
  font-weight:600;
  font-size:14px;
  letter-spacing:.04em;
  color:var(--gold-deep);
  padding:6px 12px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(201,166,114,.14), rgba(154,123,79,.08));
  border:1px solid rgba(154,123,79,.25);
}
.section--benefits{padding-top:64px}
.trust__lead{margin:0 0 22px;max-width:60ch}
.trust-metrics{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-bottom:22px;
}
.trust-metric{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px 16px;
  text-align:center;
  box-shadow:var(--shadow-card);
  transition:transform .15s ease, box-shadow .15s ease;
}
.trust-metric:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-card-hover);
}
.trust-metric__v{
  font-family:var(--font-display);
  font-size:clamp(20px,2.4vw,26px);
  font-weight:500;
  color:#14161a;
  letter-spacing:-0.02em;
}
.trust-metric__l{
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
  line-height:1.35;
}
.trust-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  gap:14px 16px;
  align-items:stretch;
}
.trust-side{
  min-width:0;
}
.trust-cert{
  border-radius:var(--radius2);
  border:2px dashed rgba(154,123,79,.35);
  background:rgba(255,255,255,.65);
  min-height:132px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px 18px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.8);
}
.trust-cert--image{
  border:1px solid var(--line);
  background:var(--surface);
  padding:10px;
  box-shadow:var(--shadow-card);
}
.trust-cert__img{
  display:block;
  width:100%;
  height:auto;
  max-height:200px;
  object-fit:contain;
  object-position:center;
  border-radius:12px;
}
.trust-cert__placeholder{
  text-align:center;
  font-size:13px;
  line-height:1.45;
  color:rgba(26,29,34,.55);
  max-width:26ch;
}
.trust-chips{
  display:flex;
  flex-direction:column;
  gap:8px;
  justify-content:center;
}
.trust-chips--narrow{
  width:min(100%,220px);
  max-width:220px;
  flex-shrink:0;
  align-self:center;
}
.trust-chip{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--surface);
  font-weight:600;
  font-size:13px;
  letter-spacing:-0.01em;
  line-height:1.3;
  text-align:center;
  box-shadow:var(--shadow-card);
}
.trust-chip--compact{
  padding:10px 12px;
  font-size:12.5px;
}
.trust-logo{
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,247,244,.92));
  min-height:132px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px 18px;
  box-shadow:var(--shadow-card);
}
.trust-logo__img{
  display:block;
  max-width:100%;
  width:auto;
  height:auto;
  max-height:112px;
  object-fit:contain;
}

.section--social-proof{
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(201,166,114,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.5) 0%, var(--page2) 45%, var(--page) 100%);
  border-top:1px solid rgba(26,29,34,.06);
  border-bottom:1px solid rgba(26,29,34,.06);
}
.social-proof__sub{
  margin:0 0 22px;
  max-width:56ch;
  line-height:1.55;
}
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}
.testimonial-card{
  background:var(--surface);
  border:1px solid rgba(154,123,79,.2);
  border-radius:var(--radius);
  padding:20px 18px;
  box-shadow:var(--shadow-card);
  display:flex;
  flex-direction:column;
  min-height:100%;
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.testimonial-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-card-hover);
  border-color:rgba(154,123,79,.32);
}
.testimonial-card__icon{
  width:48px;
  height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  color:var(--gold-871);
  background:linear-gradient(165deg, rgba(255,255,255,.98), rgba(249,247,244,.88));
  border:1px solid rgba(154,123,79,.22);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}
.testimonial-card__icon svg{
  width:26px;
  height:26px;
}
.testimonial-card__cat{
  margin:0 0 8px;
  font-size:11px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(58,61,66,.75);
}
.testimonial-card__name{
  margin:0;
  font-family:var(--font-display);
  font-size:clamp(17px,1.5vw,20px);
  font-weight:500;
  color:var(--gold-deep);
  letter-spacing:-0.02em;
  line-height:1.2;
}
.testimonial-card__role{
  margin:4px 0 12px;
  font-size:13px;
  font-weight:500;
  color:rgba(26,29,34,.55);
}
.testimonial-card__quote{
  margin:0;
  padding:0;
  border:none;
  flex:1;
}
.testimonial-card__quote p{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:rgba(26,29,34,.78);
}
.social-proof__cta{
  display:flex;
  justify-content:center;
  margin-top:28px;
}

.use-cases{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
}
.use-card{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  padding:17px 15px;
  min-height:72px;
  min-width:0;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
  border:1px solid rgba(17,24,39,.14);
  border-radius:16px;
  box-shadow:0 14px 34px rgba(15,23,42,.09), inset 0 1px 0 rgba(255,255,255,.8);
  font-weight:650;
  font-size:15px;
  letter-spacing:-0.01em;
  color:rgba(15,23,42,.9);
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.use-card:hover{
  transform:translateY(-1px);
  border-color:rgba(15,23,42,.22);
  box-shadow:0 18px 42px rgba(15,23,42,.12), inset 0 1px 0 rgba(255,255,255,.85);
}
.use-card > span:not(.use-card__icon){
  min-width:0;
  flex:1;
  overflow-wrap:anywhere;
}
.use-card__icon{
  width:38px;
  height:38px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,243,248,.92));
  border:1px solid rgba(15,23,42,.14);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.95), 0 6px 14px rgba(15,23,42,.08);
  color:rgba(15,23,42,.95);
  flex-shrink:0;
}
.use-card__icon svg{
  width:22px;
  height:22px;
  stroke:currentColor;
  fill:none;
  stroke-width:2.35;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.brand-block{
  border:1px solid rgba(17,24,39,.14);
  border-radius:var(--radius2);
  background:linear-gradient(120deg, rgba(255,255,255,.95), rgba(237,242,247,.75));
  box-shadow:0 20px 56px rgba(15,23,42,.12);
  padding:20px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:16px;
  align-items:center;
}
.brand-block__copy .muted{
  margin:0;
  max-width:62ch;
}
.brand-block__copy .muted + .muted{
  margin-top:12px;
}
.brand-block__tagline{
  font-weight:500;
  color:rgba(26,29,34,.78);
}
.brand-block__visual{
  width:100%;
  max-width:min(100%,300px);
  aspect-ratio:1;
  margin-inline:auto;
  justify-self:end;
  border-radius:18px;
  border:1px solid rgba(154,123,79,.22);
  overflow:hidden;
  background:var(--surface-soft);
  box-shadow:0 12px 36px rgba(20,18,14,.08), inset 0 0 0 1px rgba(255,255,255,.5);
}
.brand-block__img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}

.gallery{
  margin-top:16px;
}
/* Галерея 2×2: квадрат карточки фиксирован; фото целиком вписывается (contain), масштаб единый */
.gallery--uniform{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  align-items:stretch;
}
.gallery__card{
  min-width:0;
}
.gallery__frame{
  aspect-ratio:1/1;
  width:100%;
  border-radius:var(--radius2);
  border:1px solid rgba(154,123,79,.22);
  background:var(--surface-soft);
  box-shadow:var(--shadow-card);
  padding:clamp(8px,2vw,14px);
  box-sizing:border-box;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.gallery__img{
  display:block;
  width:100%;
  height:100%;
  max-width:100%;
  max-height:100%;
  min-width:0;
  min-height:0;
  object-fit:contain;
  object-position:center;
  border-radius:12px;
  background:transparent;
  box-shadow:none;
}
/*
  4-я карточка (альбомный исходник): узкий столбец как у портретов; object-fit:cover обрезает бока,
  высота = слот (stretch). У <img> без скругления.
*/
.gallery--uniform .gallery__card--cover .gallery__frame{
  align-items:stretch;
  justify-content:center;
}
.gallery--uniform .gallery__card--cover .gallery__img{
  width:67%;
  max-width:67%;
  height:100%;
  min-height:0;
  flex-shrink:0;
  align-self:stretch;
  object-fit:cover;
  object-position:center center;
  border-radius:0;
}
.gallery__frame--empty{
  padding:0;
  background:
    radial-gradient(70% 70% at 30% 25%, rgba(14,165,233,.14), transparent 60%),
    radial-gradient(60% 60% at 75% 70%, rgba(99,102,241,.1), transparent 55%),
    linear-gradient(165deg, rgba(255,255,255,.92), rgba(248,250,252,.85));
}
.b2b{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.b2b__note{margin-top:10px}

.docs{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.doc{
  background:var(--surface-soft);
  border:1px solid rgba(17,24,39,.14);
  border-radius:var(--radius);
  padding:14px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:var(--shadow-card);
}
.doc__icon{
  width:44px;height:44px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:12px;letter-spacing:.06em;
  color:rgba(17,24,39,.84);
  background:
    linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,0)),
    linear-gradient(135deg, rgba(201,166,114,.2), rgba(154,123,79,.12));
  border:1px solid rgba(17,24,39,.09);
}
.doc__label{font-weight:700;font-size:13px;letter-spacing:-0.01em}
.b2b__facts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.fact{
  background:var(--surface);
  border:1px solid rgba(17,24,39,.14);
  border-radius:var(--radius);
  padding:16px;
  text-align:center;
  box-shadow:var(--shadow-card);
}
.fact__k{font-weight:800;letter-spacing:-0.03em;font-size:20px}
.fact__v{margin-top:6px;color:var(--muted);font-size:12px}

.section--partnership{
  padding:56px 0;
  border-top:1px solid rgba(26,29,34,.08);
  background:linear-gradient(180deg, var(--page) 0%, rgba(249,247,244,.5) 100%);
}
.partnership__grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);
  gap:clamp(22px,3.5vw,36px);
  align-items:start;
}
.partnership__copy{
  min-width:0;
}
.partnership__label{
  margin:0 0 8px;
  font-size:11px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold-deep);
}
.partnership__lead{
  max-width:54ch;
}
.partnership__benefits-title{
  margin:20px 0 10px;
  font-weight:600;
  font-size:15px;
  color:rgba(26,29,34,.88);
}
.partnership__list{
  margin:0;
  padding-left:1.15em;
  color:rgba(26,29,34,.78);
  font-size:14px;
  line-height:1.55;
}
.partnership__list li{
  margin-bottom:8px;
}
.partnership__list li::marker{
  color:var(--gold-871);
}
.partnership__cta{
  margin-top:22px;
}
.partnership__visual{
  position:sticky;
  top:calc(var(--header-h) + 16px);
  min-width:0;
}
.partnership-map{
  border-radius:var(--radius2);
  border:1px solid rgba(154,123,79,.18);
  background:linear-gradient(180deg,#F6F1E8 0%,#EFE8DC 100%);
  box-shadow:0 22px 56px rgba(20,18,14,.09), inset 0 1px 0 rgba(255,255,255,.75);
  padding:clamp(16px,2.5vw,22px);
}
.partnership-map__frame{
  aspect-ratio:16/9;
  width:100%;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(168,141,90,.2);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.4);
  background:#F3EDE4;
}
.partnership-map__svg{
  display:block;
  width:100%;
  height:100%;
  vertical-align:middle;
}
.partnership-map__legend{
  list-style:none;
  margin:14px 0 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:12px;
  color:rgba(26,29,34,.65);
}
.partnership-map__legend li{
  display:flex;
  align-items:center;
  gap:10px;
}
.partnership-map__dot{
  width:10px;
  height:10px;
  border-radius:50%;
  flex-shrink:0;
}
.partnership-map__dot--cz{
  background:linear-gradient(145deg, var(--gold-mid), var(--gold-deep));
  box-shadow:0 0 0 2px rgba(255,255,255,.6);
}
.partnership-map__dot--eu{
  background:rgba(201,166,114,.35);
  border:1px solid rgba(154,123,79,.35);
}
.partnership-map__dot--ex{
  background:transparent;
  border:2px dashed rgba(58,61,66,.35);
}

.form{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.contacts{display:grid;gap:10px;margin-top:14px}
.contact{
  display:flex;justify-content:space-between;gap:12px;
  padding:14px 16px;
  border-radius:var(--radius);
  border:1px solid rgba(17,24,39,.14);
  background:var(--surface);
  text-decoration:none;
  box-shadow:var(--shadow-card);
}
.contact:hover{
  border-color:rgba(154,123,79,.35);
  box-shadow:0 14px 38px rgba(154,123,79,.12);
}
.contact__k{font-weight:700}
.contact__v{color:var(--muted);font-size:12px;overflow-wrap:anywhere;text-align:right}

.formbox{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius2);
  padding:18px;
  box-shadow:0 18px 56px rgba(17,24,39,.12);
}

.h1{text-wrap:balance}
.eyebrow{
  border-color:rgba(14,165,233,.22);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.55);
}
.pill{
  background:rgba(255,255,255,.88);
  border-color:rgba(17,24,39,.14);
}
.lead{
  max-width:62ch;
}
.fact__k{
  color:#0f172a;
}

.footer{
  background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.74));
}
.field{display:grid;gap:8px;margin-bottom:12px}
label{font-weight:600;font-size:13px}
input,select,textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(17,24,39,.16);
  padding:12px 12px;
  font:inherit;
  background:#fff;
}
textarea{resize:vertical}
input:focus,select:focus,textarea:focus{
  outline:none;
  border-color:rgba(154,123,79,.45);
  box-shadow:0 0 0 4px rgba(154,123,79,.12);
}
.fineprint{margin:12px 0 0;color:var(--muted);font-size:12px;line-height:1.5}

.alert{
  margin-top:16px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid;
  background:#fff;
  font-size:13px;
  line-height:1.5;
}
.alert--ok{border-color:rgba(16,185,129,.35);background:rgba(16,185,129,.08)}
.alert--err{border-color:rgba(239,68,68,.35);background:rgba(239,68,68,.08)}

.hp{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}

.footer{
  padding:28px 0;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.78);
}
.footer__inner{display:flex;justify-content:space-between;gap:14px;align-items:center;flex-wrap:wrap}
.footer__right{display:flex;gap:14px;flex-wrap:wrap}

@media (max-width: 980px){
  .header__inner{flex-wrap:wrap;align-items:flex-start}
  .header__actions{width:100%;justify-content:flex-start;row-gap:8px}
  .hero__grid{grid-template-columns:1fr;gap:28px}
  .cards{grid-template-columns:repeat(2,1fr)}
  .cards--benefits .card--benefit{
    min-width:0;
    max-width:100%;
    min-height:0;
    max-height:none;
    overflow-x:hidden;
    overflow-y:visible;
  }
  .use-cases{grid-template-columns:repeat(3,1fr)}
  .brand-block{grid-template-columns:1fr}
  .brand-block__visual{
    justify-self:center;
    max-width:min(100%,min(300px,86vw));
  }
  .b2b{grid-template-columns:1fr}
  .b2b__facts{grid-template-columns:repeat(3,1fr)}
  .form{grid-template-columns:1fr}
  .docs{grid-template-columns:repeat(2,1fr)}
  .gallery--uniform{
    gap:20px;
  }
  .trust-metrics{grid-template-columns:repeat(2,1fr)}
  .trust-row{grid-template-columns:1fr}
  .trust-chips--narrow{
    width:100%;
    max-width:280px;
  }
  .testimonials-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .partnership__grid{grid-template-columns:1fr}
  .partnership__visual{position:static;top:auto}
}
@media (max-width: 400px){
  .use-cases{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .header__actions{gap:8px}
  .lang__a{padding:9px 9px}
  .btn{padding:12px 16px;min-height:48px}
  .gallery--uniform{
    gap:12px;
  }
  .cards{grid-template-columns:1fr}
  .use-cases{grid-template-columns:1fr 1fr}
  .b2b__facts{grid-template-columns:1fr}
  .docs{grid-template-columns:1fr}
  .section{padding:48px 0}
  .section--benefits{padding-top:52px}
  .testimonials-grid{grid-template-columns:1fr;gap:14px}
  .social-proof__cta .btn{width:100%;max-width:320px}
  .cta--hero{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
  }
  .cta--hero .btn--primary,
  .cta--hero .btn--graphite{
    width:100%;
    justify-content:center;
  }
  .trust-metrics{grid-template-columns:1fr;gap:12px}
  .trust-chips--narrow{max-width:100%}
  .trust-logo{min-height:120px}
  .container{padding:0 22px}
}
