/* Local fonts */
@font-face{
  font-family:"Inter";
  src:url("/assets/fonts/Inter-VariableFont_opsz,wght.woff2") format("woff2");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Manrope";
  src:url("/assets/fonts/Manrope-VariableFont_wght.woff2") format("woff2");
  font-weight:200 800;
  font-style:normal;
  font-display:swap;
}

:root{
  --bg:#f6f7fb;
  --ink:#0f172a;
  --muted:rgba(15,23,42,.72);

  --accent:#6d28d9;
  --accent2:#16a34a;

  --r:18px;
  --shadow:0 18px 45px rgba(15,23,42,.10);
  --shadow2:0 10px 24px rgba(15,23,42,.08);

  --max:1180px;

  --s4:24px;
  --s5:36px;
  --s6:56px;
  --s7:72px; /* было 84: чуть компактнее, но остаётся воздушно */

  --font-text:"Inter",ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,"Noto Sans","Liberation Sans",sans-serif;
  --font-head:"Manrope",ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,"Noto Sans","Liberation Sans",sans-serif;

  /* Stronger section tinting (more decisive separation) */
  --slab-tint: rgba(255,255,255,.62);
  --slab-alt-tint: rgba(250,248,255,.72);
  --slab-soft-tint: rgba(247,255,250,.72);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--font-text);
  /* Inter variable: фиксируем optical size для стабильного вида текста */
  font-variation-settings:"opsz" 14;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  text-rendering:optimizeLegibility;
  font-kerning:normal;
  font-feature-settings:"liga" 1, "kern" 1;
}
a{color:inherit;text-decoration:none}
.wrap{width:min(var(--max),calc(100% - 40px));margin:0 auto}

/* Headings */
h1,h2,h3,h4,h5,h6{font-family:var(--font-head)}
h1,h2{
  hyphens:auto;
  overflow-wrap:anywhere;
}
h1{
  margin:16px 0 12px;
  font-size:clamp(30px,3.4vw,54px);
  line-height:1.06;
  letter-spacing:-.6px;
}
.lead{color:var(--muted);font-size:18px;max-width:66ch;margin:0}
h2{
  margin:0;
  font-size:clamp(22px,2.2vw,34px);
  letter-spacing:-.3px;
  line-height:1.15;
}
h3{margin:0;font-size:18px;letter-spacing:-.2px;line-height:1.2}
.sub{margin:0;color:var(--muted);max-width:80ch}

/* Brand name uses heading font */
.brand-text b{font-family:var(--font-head)}

/* Make anchors land nicely below sticky header */
section{ scroll-margin-top: 92px; }

.bg-decor{
  position:fixed;inset:0;z-index:-1;pointer-events:none;
  background:
    radial-gradient(920px 540px at 82% -10%, rgba(109,40,217,.18), transparent 60%),
    radial-gradient(780px 520px at 12% 10%, rgba(22,163,74,.12), transparent 55%),
    linear-gradient(to bottom, rgba(255,255,255,.70), transparent 22%, transparent 78%, rgba(255,255,255,.60));
}
.bg-decor::before{
  content:"";
  position:absolute;inset:0;
  background:
    linear-gradient(rgba(15,23,42,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.08) 1px, transparent 1px);
  background-size:72px 72px;
  opacity:.10;
  mask-image:radial-gradient(70% 55% at 50% 15%, black, transparent 75%);
}

.muted{color:var(--muted)}
.m0{margin:0}
.mb1{margin-bottom:8px}
.mt4{margin-top:var(--s4)}
.mt5{margin-top:var(--s5)}
.mb5{margin-bottom:var(--s5)}
.maxch{max-width:78ch}

/* Header */
.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(246,247,251,.78);
  border-bottom:1px solid rgba(15,23,42,.10);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 0;
  gap:var(--s4);
}
.brand{
  display:flex;align-items:center;gap:12px;
  padding:6px 10px;
  border-radius:14px;
  min-width:0;
  flex:0 1 auto;
}
.brand-logo{
  width:44px;height:44px;border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.85);
  box-shadow:0 10px 18px rgba(15,23,42,.08);
  object-fit:cover;
  flex:0 0 auto;
}
.brand-text{min-width:0}
.brand-text b{letter-spacing:.2px;font-size:15px}
.brand-text small{
  color:var(--muted);
  font-size:12px;
  display:block;
  margin-top:2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:44ch;
}

.menu{flex:1 1 auto;min-width:0}
.menu ul{
  display:flex;
  justify-content:center;
  gap:14px;
  list-style:none;
  padding:0;margin:0;
  color:rgba(15,23,42,.70);
  font-size:14px;
  flex-wrap:nowrap;
  white-space:nowrap;
}
.menu a{
  display:inline-flex;
  padding:10px 8px;
  border-radius:10px;
  position:relative;
}
.menu a:hover{
  background:rgba(15,23,42,.05);
  color:var(--ink);
}
.menu a::after{
  content:"";
  position:absolute;
  left:10px;right:10px;bottom:6px;
  height:2px;border-radius:2px;
  background:transparent;
  transform:scaleX(.6);
  transform-origin:left;
  transition:background .2s ease,transform .2s ease;
}
.menu a:hover::after{
  background:linear-gradient(90deg, rgba(109,40,217,.85), transparent);
  transform:scaleX(1);
}

/* Dropdown "Ещё" (hover classic + delayed close via JS class .is-open) */
.more{position:relative;padding-bottom:10px}
.more-link{gap:8px}
.chev{
  width:8px;height:8px;
  border-right:2px solid rgba(15,23,42,.55);
  border-bottom:2px solid rgba(15,23,42,.55);
  transform:rotate(45deg);
  margin-top:-2px;
}
.dropdown{
  position:absolute;
  top:calc(100% + 8px);
  left:50%;
  transform:translateX(-50%) translateY(-4px);
  min-width:170px;
  padding:8px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.96);
  box-shadow:var(--shadow2);

  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s;
}
.dropdown a{
  display:flex;
  padding:10px 10px;
  border-radius:12px;
}
.dropdown a:hover{background:rgba(15,23,42,.06)}
.more.is-open .dropdown,
.more:focus-within .dropdown{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
  transition: opacity .16s ease, transform .16s ease, visibility 0s;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}

.icon-links{
  display:flex;
  align-items:center;
  gap:8px;
}
.icon-btn{
  width:38px;height:38px;border-radius:12px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.74);
  display:grid;
  place-items:center;
  color:rgba(15,23,42,.68);
  transition:background .2s ease,border-color .2s ease,color .2s ease,box-shadow .2s ease,transform .08s ease;
}
.icon-btn svg{width:18px;height:18px}
.icon-btn:hover{
  background:rgba(255,255,255,.96);
  border-color:rgba(15,23,42,.18);
  color:rgba(15,23,42,.85);
  box-shadow:var(--shadow2);
}
.icon-btn:active{transform:translateY(1px)}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.86);
  color:var(--ink);
  font-size:14px;
  gap:10px;
  cursor:pointer;
  transition:transform .08s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease;
  user-select:none;
  white-space:nowrap;
  box-shadow:0 1px 0 rgba(15,23,42,.03);
}
.btn:hover{
  background:rgba(255,255,255,.98);
  border-color:rgba(15,23,42,.18);
  box-shadow:var(--shadow2);
}
.btn:active{transform:translateY(1px)}
.btn.primary{
  background:linear-gradient(135deg, rgba(109,40,217,1), rgba(109,40,217,.82));
  border-color:rgba(109,40,217,.45);
  color:#fff;
  box-shadow:0 16px 30px rgba(109,40,217,.18);
}

/* Focus-visible for accessibility */
:where(a, button, summary, .btn, .icon-btn):focus-visible{
  outline:3px solid rgba(109,40,217,.35);
  outline-offset:3px;
  border-radius:14px;
}

/* Sections */
section{padding:var(--s7) 0}
.hero{padding:var(--s7) 0 44px}

/* More decisive section separation (tints + subtle top glow) */
.slab{
  border-top:1px solid rgba(15,23,42,.08);
  border-bottom:1px solid rgba(15,23,42,.06);
  background:
    radial-gradient(1000px 260px at 50% 0%, rgba(15,23,42,.035), transparent 60%),
    var(--slab-tint);
}
.slab.alt{
  background:
    radial-gradient(1000px 360px at 18% 0%, rgba(109,40,217,.14), transparent 62%),
    radial-gradient(720px 280px at 82% 18%, rgba(109,40,217,.08), transparent 60%),
    var(--slab-alt-tint);
}
.slab.soft{
  background:
    radial-gradient(1000px 360px at 82% 0%, rgba(22,163,74,.12), transparent 62%),
    radial-gradient(720px 280px at 18% 18%, rgba(22,163,74,.07), transparent 60%),
    var(--slab-soft-tint);
}

.section-title{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:var(--s4);
  margin-bottom:28px;
}
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:12px;letter-spacing:.12em;text-transform:uppercase;
  color:rgba(15,23,42,.62);
  margin-bottom:10px;
}
.eyebrow::before{
  content:"";
  width:18px;height:2px;
  background:linear-gradient(90deg, var(--accent), transparent);
  border-radius:2px;
}

/* Layout */
.grid2{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);
  gap:var(--s6);
  align-items:start;
}
.cards2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:var(--s5);
}

/* Cards */
.card{
  border:1px solid rgba(15,23,42,.11);
  background:rgba(255,255,255,.88);
  border-radius:var(--r);
  overflow:hidden;
}
.card.raised{
  box-shadow:0 18px 50px rgba(15,23,42,.10);
  background:rgba(255,255,255,.96);
}
.card.soft{background:rgba(255,255,255,.80)}
.cardpad{padding:18px}

/* Mobile nav chips */
.mobnav{
  display:none;
  margin-top:14px;
  gap:10px;
  flex-wrap:wrap;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.88);
  color:rgba(15,23,42,.76);
  font-size:13px;
  white-space:nowrap;
}
.chip:hover{
  background:rgba(255,255,255,.98);
  box-shadow:var(--shadow2);
}

/* Pills */
.pills{margin-top:var(--s4);display:flex;flex-wrap:wrap;gap:10px}
.pill{
  display:inline-flex;align-items:center;
  padding:7px 11px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.14);
  color:rgba(15,23,42,.72);
  font-size:12px;
  background:rgba(255,255,255,.86);
  gap:8px;
}
.dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--accent2);
  box-shadow:0 0 0 4px rgba(22,163,74,.14);
}

/* Hero actions */
.hero-actions{margin-top:22px;display:flex;gap:12px;flex-wrap:wrap}

/* Feature cards */
.features{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.feature{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background:
    radial-gradient(420px 200px at 0% 0%, rgba(109,40,217,.12), transparent 55%),
    rgba(255,255,255,.88);
}
.feature-green{
  background:
    radial-gradient(420px 200px at 0% 0%, rgba(22,163,74,.12), transparent 55%),
    rgba(255,255,255,.88);
}
.feature h3{font-size:16px;margin:0 0 6px}
.feature p{margin:0}
.feature-icon{
  width:44px;height:44px;border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.82);
  display:grid;place-items:center;
  color:rgba(109,40,217,.85);
  box-shadow:0 10px 18px rgba(15,23,42,.07);
  flex:0 0 auto;
}
.feature-green .feature-icon{color:rgba(22,163,74,.85)}
.feature-icon svg{width:22px;height:22px}

/* Make hero feature cards equal height for a clean 4-col line */
.hero .features.hero-features .feature{height:100%}

/* Only for hero: 4 in a row */
.hero .hero-features{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

/* Placeholder container + image links */
.ph{
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background:
    linear-gradient(135deg, rgba(15,23,42,.06), rgba(15,23,42,.02)),
    radial-gradient(700px 280px at 20% 0%, rgba(109,40,217,.18), transparent 60%),
    radial-gradient(600px 260px at 80% 40%, rgba(22,163,74,.12), transparent 55%);
  position:relative;
  overflow:hidden;
}
.ph::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.60));
  opacity:.25;
  pointer-events:none;
}
.ph-label{
  position:absolute;
  left:12px;bottom:12px;
  padding:7px 9px;
  border-radius:12px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.10);
  color:rgba(15,23,42,.82);
  font-size:13px;
  font-weight:700;
  box-shadow:0 10px 20px rgba(15,23,42,.08);
}
.ph16x9{aspect-ratio:16/9}

.ph-img img,
.ph-imglink img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.ph-imglink{display:block}
.ph-imglink:hover{box-shadow:var(--shadow2)}

/* Showcase */
.showcase{display:grid;gap:var(--s4)}
.showcase-row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:var(--s4);
}
.showcase-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

/* Responsive iframe wrapper 16:9 */
.embed16x9{
  aspect-ratio:16/9;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:#000;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}
.embed16x9 iframe{
  width:100%;
  height:100%;
  display:block;
  border:0;
}
.embed16x9 .video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  background:#000;
}

.video-preview video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  background:#000;
}

/* Video preview (click-to-embed) */
.video-preview{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:#000;
  position:relative;
  aspect-ratio:16/9;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}
.video-preview-btn{
  appearance:none;
  border:0;
  padding:0;
  margin:0;
  width:100%;
  height:100%;
  cursor:pointer;
  background:transparent;
  display:block;
  position:relative;
}
.video-preview-btn img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.01);
  filter:saturate(1.02) contrast(1.02);
}
.video-preview-play{
  position:absolute;
  inset:auto auto 14px 14px;
  width:52px;
  height:52px;
  border-radius:18px;
  background:rgba(255,255,255,.90);
  border:1px solid rgba(15,23,42,.12);
  box-shadow:var(--shadow2);
}
.video-preview-play::before{
  content:"";
  position:absolute;
  left:21px;
  top:17px;
  width:0;
  height:0;
  border-left:14px solid rgba(15,23,42,.78);
  border-top:9px solid transparent;
  border-bottom:9px solid transparent;
}
.video-preview-caption{
  position:absolute;
  left:76px;
  bottom:24px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(15,23,42,.10);
  color:rgba(15,23,42,.82);
  font-size:13px;
  font-weight:800;
  box-shadow:0 10px 20px rgba(15,23,42,.08);
}
.video-preview-btn:hover .video-preview-play{
  background:rgba(255,255,255,.98);
}

/* KPI tags */
.kpi{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.tag{
  font-size:12px;
  color:rgba(15,23,42,.72);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.80);
}
.tag-ok{border-color:rgba(22,163,74,.22)}

/* Cases layout */
.case-grid{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(0,.75fr);
  gap:var(--s5);
  align-items:start;
}
.case-side{display:grid;gap:var(--s4)}

/* What we shoot */
.shoot-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.shoot-card{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.88);
  border-radius:16px;
  padding:16px;
}
.shoot-card h3{font-size:16px;margin:0 0 6px}
.shoot-card p{margin:0}
.shoot-card-accent{
  border-color:rgba(109,40,217,.22);
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(109,40,217,.12), transparent 60%),
    rgba(255,255,255,.92);
}

/* Process */
.process-media img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.82);
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}
.process-cards{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
  margin-top:var(--s5);
}
.pcard{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.88);
  border-radius:16px;
  padding:14px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  min-height:128px;
}
.pnum{
  width:38px;height:38px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:900;
  color:rgba(109,40,217,.95);
  background:rgba(109,40,217,.10);
  border:1px solid rgba(109,40,217,.22);
  flex:0 0 auto;
  box-shadow:0 12px 20px rgba(109,40,217,.10);
}
.pcard h3{margin:0 0 6px;font-size:16px}
.pcard p{margin:0}

/* Pricing */
.price-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.price-card{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.88);
  border-radius:16px;
  padding:16px;
}
.price-card h3{font-size:16px;margin:0 0 6px}
.price-card p{margin:0}
.price-card-accent{
  border-color:rgba(22,163,74,.22);
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(22,163,74,.12), transparent 60%),
    rgba(255,255,255,.92);
}
.bullets{
  margin:12px 0 0;
  padding:0 0 0 18px;
  color:var(--muted);
}
.bullets li{margin:6px 0}

/* FAQ */
.faq{display:grid;gap:10px}
.faq-item{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.90);
  border-radius:16px;
  padding:0;
  overflow:hidden;
  transition:box-shadow .18s ease, transform .18s ease, background .18s ease;
}
.faq-item:hover{box-shadow:var(--shadow2)}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:15px 18px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"";
  width:10px;height:10px;
  border-right:2px solid rgba(15,23,42,.55);
  border-bottom:2px solid rgba(15,23,42,.55);
  transform:rotate(45deg);
  transition:transform .18s ease;
  flex:0 0 auto;
}
.faq-item[open] summary::after{transform:rotate(225deg)}
.faq-item[open]{background:rgba(255,255,255,.96);box-shadow:var(--shadow)}
.faq-body{padding:0 18px 16px}
.faq-body p{margin:0}

/* Contacts */
.contact{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr);
  gap:var(--s5);
  align-items:start;
}
.contact-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.list{
  margin:12px 0 0;
  padding:0 0 0 18px;
  color:var(--muted);
}
.list li{margin:7px 0}

/* Split */
.split{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
}

/* Footer */
.footer{
  padding:26px 0 44px;
  border-top:1px solid rgba(15,23,42,.10);
  color:var(--muted);
  font-size:13px;
  background:rgba(255,255,255,.55);
}
.footer-row{
  display:flex;
  gap:14px;
  justify-content:space-between;
  flex-wrap:wrap;
}

/* Floating "Back to top" */
.totop{
  position:fixed;
  right:18px;
  bottom:18px;
  width:46px;
  height:46px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.90);
  color:rgba(15,23,42,.75);
  display:grid;
  place-items:center;
  box-shadow:var(--shadow2);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity .18s ease,transform .18s ease,visibility .18s ease,background .2s ease;
  z-index:60;
}
.totop svg{width:18px;height:18px}
.totop:hover{background:rgba(255,255,255,.98)}
.totop.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* Responsive */
@media (max-width: 1100px){
  .brand-text small{ max-width: 26ch; }

  /* hero features adaptive already below, but keep */
  .hero .hero-features{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 620px){
  .hero .hero-features{
    grid-template-columns:1fr;
  }
}

@media (max-width: 980px){
  .wrap{width:min(var(--max),calc(100% - 28px))}
  section{padding:48px 0}
  .hero{padding:52px 0 36px}

  /* nav on mobile: no top menu, show chips */
  .menu{display:none}
  .mobnav{display:flex}

  /* header on mobile: keep brand name + icons, hide CTA */
  .nav{ gap: 10px; }

  .brand{ padding: 4px 8px; min-width:0; flex: 1 1 auto; }
  .brand-logo{ width:40px; height:40px; border-radius:12px; }

  /* keep ONLY the name (b), hide the tagline (small) */
  .brand-text{ display:block; min-width:0; }
  .brand-text small{ display:none; }
  .brand-text b{
    display:block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width: 14ch; /* можно подогнать 12–16 */
  }

  .nav-right{ gap: 8px; flex: 0 0 auto; }
  .nav-right .btn.primary{ display:none; } /* hide "Обсудить проект" */

  .icon-links{ gap: 6px; }
  .icon-btn{ width:36px; height:36px; border-radius:12px; }

  .grid2{grid-template-columns:1fr}
  .cards2{grid-template-columns:1fr}

  .features{grid-template-columns:1fr}
  .showcase-row{grid-template-columns:1fr}
  .case-grid{grid-template-columns:1fr}

  .shoot-grid{grid-template-columns:1fr}
  .price-grid{grid-template-columns:1fr}

  .contact{grid-template-columns:1fr}

  .process-cards{grid-template-columns:1fr}
  .pcard{min-height:unset}

  .cardpad{padding:16px}
  .section-title{margin-bottom:22px}
}
