:root {
  --bg: #090b0f;
  --panel: rgba(18, 22, 29, .78);
  --panel-solid: #12161d;
  --text: #f4f7fb;
  --muted: #9aa4b2;
  --line: rgba(255,255,255,.11);
  --accent: #b8ff3c;
  --accent-2: #d8e1ee;
  --danger: #ff6b6b;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Golos Text", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(184,255,60,.16), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(216,225,238,.08), transparent 30%),
    linear-gradient(135deg, #090b0f 0%, #0d1117 48%, #06070a 100%);
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 11, 15, .78);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .06em; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--accent);
  color: #0b0d10;
  box-shadow: 0 0 28px rgba(184,255,60,.35);
}
.nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.nav a:hover { color: var(--text); }
.nav-account { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.account-link:hover {
  transform: translateY(-1px);
  border-color: rgba(184,255,60,.38);
  background: rgba(184,255,60,.08);
}
.header-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}
.header-cta, .btn-primary { background: var(--accent); color: #0b0d10; box-shadow: 0 14px 42px rgba(184,255,60,.22); }
.btn-secondary { background: rgba(255,255,255,.08); color: var(--text); border: 1px solid var(--line); }
.btn.full { width: 100%; }
.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 999px; background: transparent; }
.burger span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--text); }
.section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 92px 0; }
.hero { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 54px; min-height: calc(100vh - 90px); padding-top: 62px; }
.eyebrow, .label { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px; border: 1px solid rgba(184,255,60,.26); border-radius: 999px; background: rgba(184,255,60,.07); }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 22px 0 18px; font-size: clamp(48px, 8vw, 104px); line-height: .9; letter-spacing: -.075em; }
h2 { font-size: clamp(32px, 5vw, 60px); line-height: .98; letter-spacing: -.055em; margin-bottom: 18px; }
h3 { font-size: 20px; letter-spacing: -.02em; margin-bottom: 8px; }
p { color: var(--muted); }
.hero-lead { font-size: 20px; max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0; }
.hero-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 620px; }
.hero-points div, .intro-grid article, .service-card, .steps article, .price-card, .rules-grid article, .order-form, .faq details, .hero-card, .pipeline-card, .example-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-points div { padding: 18px; }
.hero-points strong { display: block; font-size: 28px; color: var(--text); }
.hero-points span { color: var(--muted); font-size: 13px; }
.hero-card { padding: 22px; transform: rotate(1.5deg); }
.card-topline { display: flex; align-items: center; gap: 10px; color: var(--muted); margin-bottom: 16px; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 8px rgba(184,255,60,.12); }
.mockup-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mockup { min-height: 185px; padding: 18px; border-radius: 20px; color: #0b0d10; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative; }
.mockup::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -60px; bottom: -70px; background: rgba(255,255,255,.24); }
.mockup span { font-weight: 800; opacity: .65; }
.mockup b { font-size: 28px; letter-spacing: -.05em; z-index: 1; }
.mockup-a { background: linear-gradient(135deg, var(--accent), #fff27b); }
.mockup-b { background: linear-gradient(135deg, #e8edf7, #93a0af); }
.mockup-c { background: linear-gradient(135deg, #ffffff, #d5ffe2); }
.mockup-d { background: linear-gradient(135deg, var(--accent-2), #bca7ff); }
.order-flow { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 8px; margin-top: 18px; color: var(--muted); font-size: 12px; }
.order-flow span { height: 1px; background: var(--line); }
.mockup small { z-index: 1; font-weight: 700; opacity: .7; }
.section-heading { max-width: 760px; }
.section-heading.wide { max-width: 860px; }
.intro-grid, .service-grid, .steps, .price-grid, .rules-grid, .example-grid { display: grid; gap: 16px; }
.intro-grid { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
.intro-grid article, .steps article, .price-card, .rules-grid article { padding: 24px; }

.example-grid { grid-template-columns: repeat(4, 1fr); margin-top: 30px; }
.example-card {
  min-height: 260px;
  padding: 22px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.example-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  pointer-events: none;
}
.example-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  right: -56px;
  top: -54px;
  background: rgba(184,255,60,.16);
}
.example-card span { color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; z-index: 1; }
.example-card h3 { font-size: 28px; line-height: 1; margin: 12px 0 10px; z-index: 1; }
.example-card p { margin: 0; z-index: 1; }
.example-poster { background: linear-gradient(160deg, rgba(184,255,60,.16), rgba(18,22,29,.86)); }
.example-business { background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(18,22,29,.86)); }
.example-price { background: linear-gradient(160deg, rgba(255,188,87,.14), rgba(18,22,29,.86)); }
.example-social { background: linear-gradient(160deg, rgba(216,225,238,.12), rgba(18,22,29,.86)); }
.steps.steps-four { grid-template-columns: repeat(4, 1fr); }

.service-grid { grid-template-columns: repeat(4, 1fr); margin-top: 30px; }
.service-card { text-align: left; color: var(--text); padding: 22px; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.service-card span, .steps span { color: var(--accent); font-weight: 800; }
.service-card:hover, .service-card.active { transform: translateY(-4px); border-color: rgba(184,255,60,.45); background: rgba(184,255,60,.08); }
.steps { grid-template-columns: repeat(3, 1fr); margin-top: 30px; }
.steps span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 18px; border: 1px solid rgba(184,255,60,.4); border-radius: 50%; }
.pipeline-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; padding: 34px; }
.pipeline-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.pipeline-list span { padding: 16px; border-radius: 16px; background: rgba(255,255,255,.06); border: 1px solid var(--line); color: var(--text); font-weight: 600; }
.price-grid { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
.price-card.featured { border-color: rgba(184,255,60,.5); background: rgba(184,255,60,.1); }
.price-card h3 { font-size: 44px; letter-spacing: -.06em; }
ul { padding-left: 18px; color: var(--muted); }
li { margin: 8px 0; }
.rules { display: grid; grid-template-columns: .75fr 1.25fr; gap: 28px; align-items: start; }
.rules-grid { grid-template-columns: 1fr; }
.rules-grid article { border-left: 4px solid var(--accent); }
.rules-grid .paid { border-left-color: var(--accent-2); }
.rules-grid .custom { border-left-color: #ffbc57; }
.order { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; }
.notice { border: 1px solid rgba(184,255,60,.25); background: rgba(184,255,60,.08); padding: 18px; border-radius: 18px; color: var(--muted); }
.notice strong { color: var(--text); }
.order-form { padding: 24px; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 8px; color: var(--text); font-weight: 600; margin-bottom: 14px; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}
textarea { resize: vertical; }
select option { background: #11151c; color: var(--text); }
input:focus, textarea:focus, select:focus { border-color: rgba(184,255,60,.55); box-shadow: 0 0 0 4px rgba(184,255,60,.08); }
.form-summary { display: grid; gap: 4px; padding: 16px; border-radius: 18px; background: rgba(255,255,255,.06); margin: 12px 0 16px; }
.form-summary small, .form-status { color: var(--muted); }
.faq-list { display: grid; gap: 12px; margin-top: 28px; }
.faq details { padding: 20px 22px; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin: 12px 0 0; }
.chat-button { position: fixed; right: 22px; bottom: 22px; z-index: 30; min-width: 92px; height: 56px; padding: 0 18px; border-radius: 999px; border: 0; background: var(--accent); color: #0b0d10; font-weight: 800; box-shadow: 0 18px 54px rgba(184,255,60,.32); cursor: pointer; }
.chat-widget { position: fixed; right: 22px; bottom: 104px; z-index: 31; width: min(360px, calc(100% - 44px)); height: 520px; display: none; grid-template-rows: auto 1fr auto auto; overflow: hidden; border: 1px solid var(--line); background: rgba(12,15,20,.96); border-radius: 24px; box-shadow: var(--shadow); }
.chat-widget.open { display: grid; }
.chat-header { display: flex; justify-content: space-between; align-items: center; padding: 16px; border-bottom: 1px solid var(--line); }
.chat-header button { border: 0; background: rgba(255,255,255,.08); color: var(--text); border-radius: 50%; width: 32px; height: 32px; cursor: pointer; }
.chat-messages { padding: 14px; overflow: auto; display: flex; flex-direction: column; gap: 10px; }
.message { padding: 12px 14px; border-radius: 16px; max-width: 86%; color: var(--text); }
.message.bot { background: rgba(255,255,255,.08); align-self: flex-start; }
.message.user { background: rgba(184,255,60,.18); align-self: flex-end; }
.chat-permanent-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px 12px 0;
  border-top: 1px solid var(--line);
}
.chat-permanent-controls button {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: var(--text);
  border-radius: 12px;
  padding: 9px 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.chat-permanent-controls button:hover {
  border-color: rgba(184,255,60,.45);
  background: rgba(184,255,60,.12);
}
.chat-form { display: grid; grid-template-columns: 1fr 48px; gap: 8px; padding: 12px; }
.chat-form button { border: 0; border-radius: 14px; background: var(--accent); color: #0b0d10; font-weight: 800; cursor: pointer; }
.footer { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 42px 0 60px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); }
.footer strong { color: var(--text); }
@media (max-width: 920px) {
  .nav, .header-actions { display: none; }
  .burger { display: block; }
  .header.menu-open .nav { display: grid; position: absolute; top: 68px; left: 0; right: 0; padding: 18px; background: rgba(9,11,15,.96); border: 1px solid var(--line); border-radius: 24px; }
  .header.menu-open .nav-account { display: inline-flex; }
  .hero, .intro-grid, .steps, .steps.steps-four, .price-grid, .rules, .order, .pipeline-card { grid-template-columns: 1fr; }
  .example-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: auto; }
  .hero-card { transform: none; }
}
@media (max-width: 620px) {
  .section { padding: 62px 0; width: min(100% - 24px, 1180px); }
  .header { width: min(100% - 24px, 1180px); }
  .brand-text { font-size: 14px; }
  .hero-actions, .hero-points, .field-row, .pipeline-list, .mockup-grid { grid-template-columns: 1fr; display: grid; }
  .service-grid, .example-grid { grid-template-columns: 1fr; }
  .mockup { min-height: 145px; }
  h1 { font-size: 54px; }
  .footer { display: grid; gap: 20px; width: min(100% - 24px, 1180px); }
}

/* Expanded demo chat controls */
.chat-actions { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; max-width: 100%; }
.chat-actions button {
  border: 1px solid rgba(184,255,60,.26);
  background: rgba(184,255,60,.08);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 11px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.chat-actions button:hover { transform: translateY(-1px); border-color: rgba(184,255,60,.5); background: rgba(184,255,60,.15); }
.message { white-space: pre-line; }

.category-grid, .pack-grid { display: grid; gap: 16px; margin-top: 30px; }
.category-grid { grid-template-columns: repeat(3, 1fr); }
.pack-grid { grid-template-columns: repeat(3, 1fr); }
.category-card, .pack-card {
  text-align: left;
  color: var(--text);
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.category-card span, .pack-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.category-card b {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}
.category-card:hover, .category-card.active, .pack-card:hover, .featured-pack {
  transform: translateY(-4px);
  border-color: rgba(184,255,60,.45);
  background: rgba(184,255,60,.08);
}
.example-logo { background: linear-gradient(160deg, rgba(184,255,60,.12), rgba(188,167,255,.12), rgba(18,22,29,.86)); }
.hero-choice-grid .mockup { min-height: 165px; }
@media (max-width: 920px) {
  .category-grid, .pack-grid { grid-template-columns: 1fr; }
}


/* Visual update: calmer typography + motion */
h1, h2, h3 { font-weight: 800; }
h1 {
  max-width: 820px;
  font-size: clamp(46px, 6.2vw, 86px);
  line-height: .94;
  letter-spacing: -.065em;
}
.hero { min-height: calc(92vh - 90px); }
.hero-card { animation: cardFloat 7s ease-in-out infinite; }
@keyframes cardFloat {
  0%, 100% { transform: rotate(1.2deg) translateY(0); }
  50% { transform: rotate(-.4deg) translateY(-10px); }
}
.hero-points div, .category-card, .service-card, .pack-card, .example-card, .price-card, .review-card {
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.hero-points div:hover, .example-card:hover, .review-card:hover { transform: translateY(-4px); border-color: rgba(184,255,60,.36); }

.marquee-band {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.09);
  background: rgba(184,255,60,.05);
  margin-top: -24px;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 16px 0;
  animation: tickerMove 24s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: clamp(18px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -.04em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .92;
}
.marquee-track span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(184,255,60,.42);
}
@keyframes tickerMove { to { transform: translateX(-50%); } }


.card-gallery-section { padding-top: 22px; }
.cards-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 24px;
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}
.cards-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 10px 0;
  animation: cardsMove 32s linear infinite;
}
.cards-marquee:hover .cards-track,
.cards-track.preview-paused { animation-play-state: paused; }
.card-marquee-item {
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 420px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 0;
  background: rgba(255,255,255,.04);
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card-marquee-item:hover {
  transform: translateY(-4px);
  border-color: rgba(184,255,60,.38);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}
.card-marquee-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@keyframes cardsMove { to { transform: translateX(calc(-50% - 9px)); } }


.poster-gallery-section { padding-top: 22px; }
.posters-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 24px;
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}
.posters-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 10px 0;
  animation: postersMove 38s linear infinite;
}
.posters-marquee:hover .posters-track,
.posters-track.preview-paused { animation-play-state: paused; }
.poster-marquee-item {
  flex: 0 0 auto;
  width: clamp(210px, 20vw, 330px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  padding: 0;
  background: rgba(255,255,255,.04);
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.poster-marquee-item:hover {
  transform: translateY(-4px);
  border-color: rgba(184,255,60,.38);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}
.poster-marquee-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.414;
  object-fit: cover;
}
@keyframes postersMove { to { transform: translateX(calc(-50% - 10px)); } }


.card-hover-preview {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(var(--preview-width, 630px), 92vw);
  max-height: 82vh;
  z-index: 118;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.94);
  transition: opacity .18s ease, transform .18s ease;
  filter: drop-shadow(0 34px 110px rgba(0,0,0,.62));
}
.card-hover-preview.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.card-hover-preview img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.38);
  box-shadow: 0 24px 90px rgba(0,0,0,.48);
}

.works-section {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: 78px 0 96px;
  background:
    radial-gradient(circle at 12% 24%, rgba(184,255,60,.13), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.works-heading { padding-bottom: 26px; }
.works-marquee { width: 100%; overflow: hidden; }
.works-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 22px;
  animation: worksMove 42s linear infinite;
}
.work-card {
  position: relative;
  flex: 0 0 min(78vw, 920px);
  min-height: min(68vh, 620px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: clamp(26px, 4vw, 46px);
  box-shadow: 0 34px 110px rgba(0,0,0,.42);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.work-card::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: clamp(18px, 3vw, 32px);
  pointer-events: none;
}
.work-card::after {
  content: "";
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 999px;
  right: -12%;
  top: -16%;
  background: rgba(255,255,255,.22);
  filter: blur(.2px);
}
.work-card span, .work-card h3, .work-card p { position: relative; z-index: 1; }
.work-card span {
  color: inherit;
  opacity: .72;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 800;
}
.work-card h3 {
  max-width: 720px;
  margin: 18px 0 18px;
  font-size: clamp(48px, 8vw, 118px);
  line-height: .86;
  letter-spacing: -.075em;
}
.work-card p { max-width: 620px; margin: 0; color: inherit; opacity: .75; font-size: clamp(16px, 2vw, 23px); }
.work-green { background: linear-gradient(135deg, #b8ff3c, #f1ffad); color: #090b0f; }
.work-light { background: linear-gradient(135deg, #f4f7fb, #a9b4c4); color: #090b0f; }
.work-dark { background: linear-gradient(135deg, #151a22, #050609); color: var(--text); }
.work-violet { background: linear-gradient(135deg, #d9c8ff, #7f64ff); color: #090b0f; }
.work-yellow { background: linear-gradient(135deg, #fff27b, #ffbc57); color: #090b0f; }
@keyframes worksMove { to { transform: translateX(calc(-50% - 11px)); } }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.review-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-card span { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 800; }
.review-card p { color: var(--text); font-size: 20px; line-height: 1.35; margin: 18px 0; }
.review-card b { color: var(--muted); font-weight: 600; }

.auth-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
}
.auth-panel strong { display: block; color: var(--text); font-weight: 700; margin-bottom: 3px; }
.auth-panel small { color: var(--muted); }
.auth-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.auth-btn {
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.auth-btn:hover { transform: translateY(-2px); border-color: rgba(184,255,60,.42); background: rgba(184,255,60,.10); }

@media (max-width: 920px) {
  .hero { min-height: auto; }
  .hero-card { animation: none; }
  .review-grid { grid-template-columns: 1fr; }
  .work-card { flex-basis: 84vw; min-height: 62vh; }
}
@media (max-width: 620px) {
  h1 { font-size: 48px; line-height: .96; }
  .works-section { min-height: auto; padding: 62px 0 72px; }
  .work-card { flex-basis: 88vw; min-height: 520px; }
  .auth-buttons { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .works-track, .cards-track, .posters-track, .hero-card { animation: none; }
}


/* Inner pages over the landing */
.detail-trigger, .work-card, .review-card, .pack-card, .category-card, .service-card, .example-card, .card-marquee-item, .poster-marquee-item { cursor: pointer; }
.detail-trigger:focus-visible, .work-card:focus-visible, .review-card:focus-visible, .pack-card:focus-visible, .category-card:focus-visible, .service-card:focus-visible, .example-card:focus-visible, .card-marquee-item:focus-visible, .poster-marquee-item:focus-visible, .help-icon:focus-visible, .js-open-order:focus-visible {
  outline: 3px solid rgba(184,255,60,.72);
  outline-offset: 4px;
}
.work-card small, .review-card small {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  margin-top: 24px;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: .78;
  font-weight: 700;
  font-size: 13px;
}
.review-card small { color: var(--accent); border-color: rgba(184,255,60,.32); }
.works-track.paused-by-modal { animation-play-state: paused; }
.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding: clamp(12px, 3vw, 34px);
}
.page-overlay.open { display: block; }
body.overlay-open { overflow: hidden; }
.page-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,3,5,.78);
  backdrop-filter: blur(18px);
}
.inner-page {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: calc(100vh - clamp(24px, 6vw, 68px));
  margin: 0 auto;
  overflow: auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 10% 0%, rgba(184,255,60,.16), transparent 28%),
    radial-gradient(circle at 90% 14%, rgba(188,167,255,.15), transparent 26%),
    rgba(13,16,22,.96);
  box-shadow: 0 40px 140px rgba(0,0,0,.66);
}
.overlay-close {
  position: sticky;
  top: 18px;
  float: right;
  z-index: 4;
  width: 48px;
  height: 48px;
  margin: 18px 18px 0 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size: 26px;
  cursor: pointer;
}
.overlay-close:hover { border-color: rgba(184,255,60,.46); background: rgba(184,255,60,.12); }
.overlay-content { padding: clamp(24px, 5vw, 62px); }
.overlay-hero { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(22px, 4vw, 52px); align-items: stretch; }
.overlay-kicker { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.overlay-title { margin: 14px 0 18px; font-size: clamp(42px, 6.8vw, 92px); line-height: .9; letter-spacing: -.07em; }
.overlay-lead { color: var(--muted); font-size: clamp(18px, 2vw, 24px); line-height: 1.38; }
.case-visual {
  min-height: min(62vh, 620px);
  border-radius: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.14);
  padding: clamp(24px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 110px rgba(0,0,0,.38);
}
.case-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
}
.case-visual::after {
  content: "";
  position: absolute;
  width: 44%;
  aspect-ratio: 1;
  right: -12%;
  top: -12%;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}
.case-visual span, .case-visual h3, .case-visual p { position: relative; z-index: 1; }
.case-visual span { opacity: .72; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.case-visual h3 { margin: 14px 0 12px; font-size: clamp(44px, 7vw, 96px); line-height: .86; letter-spacing: -.075em; }
.case-visual p { max-width: 520px; margin: 0; opacity: .78; }
.case-green { background: linear-gradient(135deg, #b8ff3c, #f1ffad); color: #090b0f; }
.case-light { background: linear-gradient(135deg, #f4f7fb, #a9b4c4); color: #090b0f; }
.case-dark { background: linear-gradient(135deg, #151a22, #050609); color: var(--text); }
.case-violet { background: linear-gradient(135deg, #d9c8ff, #7f64ff); color: #090b0f; }
.case-yellow { background: linear-gradient(135deg, #fff27b, #ffbc57); color: #090b0f; }
.overlay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 26px; }
.overlay-panel, .result-list, .client-steps, .order-preview-card, .overlay-form {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  box-shadow: var(--shadow);
}
.overlay-panel { padding: 20px; }
.overlay-panel h3 { margin: 0 0 10px; font-size: 20px; }
.overlay-panel p { color: var(--muted); margin: 0; line-height: 1.55; }
.result-list { display: grid; gap: 10px; padding: 18px; margin-top: 24px; }
.result-list span { display: flex; gap: 10px; color: var(--text); }
.result-list span::before { content: "✓"; color: var(--accent); font-weight: 800; }
.client-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 18px; margin-top: 24px; }
.client-steps div { padding: 14px; border-radius: 18px; background: rgba(255,255,255,.055); }
.client-steps b { display: block; color: var(--accent); margin-bottom: 8px; }
.overlay-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.overlay-actions .btn { min-height: 48px; }
.info-page .overlay-hero { grid-template-columns: .85fr 1.15fr; }
.info-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.info-badges span { padding: 10px 13px; border-radius: 999px; background: rgba(184,255,60,.10); border: 1px solid rgba(184,255,60,.22); color: var(--text); font-weight: 700; }

.gallery-page .overlay-title { margin-bottom: 16px; }
.gallery-actions-top { margin-bottom: 26px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}
.gallery-card {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
}
.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(0,0,0,.24);
}
.gallery-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.order-preview-card { padding: clamp(22px, 4vw, 34px); align-self: stretch; }
.order-preview-top { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); margin-bottom: 28px; }
.order-preview-top b { color: var(--accent); }
.order-preview-card h3 { font-size: clamp(34px, 4vw, 56px); margin: 0 0 18px; letter-spacing: -.055em; }
.order-preview-options { display: grid; gap: 10px; margin: 18px 0; }
.order-preview-options span {
  position: relative;
  padding: 6px 0 6px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: default;
}
.order-preview-options span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  opacity: .75;
}
.overlay-form { padding: clamp(20px, 4vw, 34px); }
.overlay-form .auth-panel { margin-top: 0; }
.mail-note { color: var(--muted); font-size: 14px; line-height: 1.45; margin-top: 12px; }
@media (max-width: 920px) {
  .overlay-hero, .info-page .overlay-hero { grid-template-columns: 1fr; }
  .client-steps, .overlay-grid, .gallery-grid { grid-template-columns: 1fr; }
  .case-visual { min-height: 460px; }
}
@media (max-width: 620px) {
  .page-overlay { padding: 8px; }
  .inner-page { max-height: calc(100vh - 16px); border-radius: 24px; }
  .overlay-content { padding: 22px; }
  .overlay-title { font-size: 42px; }
  .case-visual { min-height: 390px; }
}

/* Order funnel updates */
.quick-category {
  appearance: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}
.quick-category:hover { transform: translateY(-4px); box-shadow: 0 28px 92px rgba(0,0,0,.42); }
.quick-category:focus-visible { outline: 3px solid rgba(184,255,60,.72); outline-offset: 4px; }

.fit-grid,
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.fit-grid article,
.scope-grid article {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.fit-grid article {
  min-height: 94px;
  display: flex;
  align-items: flex-end;
  color: var(--text);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.03em;
}
.scope-grid article h3 { margin-bottom: 8px; }
.scope-grid article p { margin-bottom: 0; }

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(9,11,15,0), rgba(9,11,15,.92) 24%, rgba(9,11,15,.98));
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-sticky-cta .btn { min-height: 54px; }

.order-overlay-layout { align-items: start; }
.order-progress {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}
.order-progress span {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  color: var(--muted);
  font-weight: 700;
}
.order-progress span.active {
  color: #090b0f;
  background: var(--accent);
  border-color: var(--accent);
}
.popular-tasks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.task-chip,
.mini-action {
  border: 1px solid rgba(184,255,60,.24);
  background: rgba(184,255,60,.08);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
}
.task-chip.active,
.task-chip:hover,
.mini-action:hover {
  background: var(--accent);
  color: #090b0f;
  border-color: var(--accent);
}
.inline-field-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}
.label-with-help {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.help-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(184,255,60,.38);
  background: rgba(184,255,60,.08);
  color: var(--accent);
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
.help-icon:hover {
  transform: translateY(-1px);
  background: var(--accent);
  color: #090b0f;
}
.help-icon.attention {
  background: var(--accent);
  color: #090b0f;
  box-shadow: 0 0 0 6px rgba(184,255,60,.16), 0 0 28px rgba(184,255,60,.38);
  animation: helpPulse 1.2s ease-in-out infinite;
}
@keyframes helpPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.size-help-panel {
  margin: -2px 0 16px;
  border: 1px solid rgba(184,255,60,.24);
  border-radius: 20px;
  background: rgba(184,255,60,.055);
  padding: 16px;
}
.size-help-grid {
  display: grid;
  gap: 10px;
}
.size-help-grid div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
}
.size-help-grid b {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}
.size-help-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}
.file-note {
  margin: -6px 0 16px;
  font-size: 13px;
  color: var(--muted);
}
.preflight-checklist,
.order-preview {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  padding: 16px;
  margin: 14px 0;
}
.preflight-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.preflight-checklist strong { width: 100%; }
.preflight-checklist span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: var(--muted);
  font-size: 13px;
}
.order-preview strong { display: block; margin-bottom: 12px; color: var(--accent); }
.preview-table { display: grid; gap: 8px; }
.preview-table div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}
.preview-table span,
.preview-copy span { color: var(--muted); }
.preview-table b { color: var(--text); font-weight: 700; word-break: break-word; }
.preview-copy {
  margin-top: 10px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}
.preview-copy p { margin: 4px 0 0; white-space: pre-wrap; word-break: break-word; }

@media (max-width: 920px) {
  .fit-grid,
  .scope-grid { grid-template-columns: 1fr 1fr; }
  .inline-field-action { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { padding-bottom: 82px; }
  .mobile-sticky-cta { display: block; }
  .fit-grid,
  .scope-grid { grid-template-columns: 1fr; }
  .preview-table div { grid-template-columns: 1fr; }
  .mockup { min-height: 158px; }
}


/* Account page */
.account-main {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 72px 0 96px;
}
.account-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .58fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}
.account-card,
.profile-card,
.account-panel,
.order-history-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 30px 100px rgba(0,0,0,.26);
}
.account-card {
  padding: clamp(26px, 4vw, 48px);
}
.account-card h1 {
  margin: 18px 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .88;
  letter-spacing: -.07em;
}
.account-card p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
  max-width: 760px;
}
.account-login {
  padding: 24px;
}
.account-login h2,
.profile-card h2,
.account-panel h2,
.order-history-card h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -.05em;
}
.account-login p,
.profile-card p,
.account-panel p,
.order-history-card p {
  color: var(--muted);
  line-height: 1.5;
}
.account-auth-buttons {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.account-auth-btn {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.account-auth-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(184,255,60,.42);
  background: rgba(184,255,60,.10);
}
.account-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, .45fr);
  gap: 24px;
}
.profile-card,
.order-history-card,
.account-panel {
  padding: 24px;
}
.profile-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.profile-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}
.profile-form input,
.profile-form select {
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(8,10,14,.74);
  color: var(--text);
  padding: 0 14px;
  font: inherit;
}
.profile-form small { color: var(--muted); line-height: 1.45; }
.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.profile-status {
  min-height: 22px;
  color: var(--accent);
  font-weight: 700;
}
.cabinet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.cabinet-item {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.045);
}
.cabinet-item b {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
.cabinet-item span {
  color: var(--muted);
  line-height: 1.45;
}
.orders-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.order-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}
.order-row b { display: block; margin-bottom: 4px; }
.order-row small { color: var(--muted); }
.order-status {
  color: #0b0d10;
  background: var(--accent);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.empty-orders {
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: 20px;
  padding: 22px;
  color: var(--muted);
  background: rgba(255,255,255,.035);
}
@media (max-width: 920px) {
  .account-hero,
  .account-layout { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .account-main { width: min(100% - 24px, 1180px); padding-top: 44px; }
  .cabinet-grid { grid-template-columns: 1fr; }
  .order-row { grid-template-columns: 1fr; }
}

/* Client auth and business profile update */
.header-auth-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.google-icon-login {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}
.google-icon-login svg,
.google-letter {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.google-letter {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-weight: 900;
}
.mini-profile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 260px;
  padding: 6px 10px 6px 6px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  text-decoration: none;
}
.mini-profile img,
.mini-avatar-fallback {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(184,255,60,.16);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--accent);
}
.mini-avatar-fallback.big,
.account-user-mini img {
  width: 52px;
  height: 52px;
}
.mini-profile span {
  min-width: 0;
  display: grid;
  line-height: 1.15;
}
.mini-profile b,
.mini-profile small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mini-profile small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 2px;
}
.mini-logout {
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}
.account-user-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.account-user-mini div {
  display: grid;
  gap: 4px;
}
.account-user-mini span {
  color: var(--muted);
}
.google-auth-main {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.profile-title-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.profile-title-line h2 { margin-top: 0; }
.business-form textarea,
.profile-form textarea {
  min-height: 110px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(8,10,14,.74);
  color: var(--text);
  padding: 14px;
  font: inherit;
  resize: vertical;
}
.business-summary {
  margin: 18px 0;
}
.business-summary-card,
.profile-suggestion,
.admin-detail-card {
  border: 1px solid rgba(184,255,60,.24);
  border-radius: 20px;
  padding: 18px;
  background: rgba(184,255,60,.07);
}
.business-summary-card h3,
.admin-detail-card h3 {
  margin: 0 0 8px;
}
.business-summary-card p,
.admin-detail-card p,
.profile-suggestion p {
  margin: 0 0 10px;
  color: var(--muted);
}
.profile-suggestion {
  margin: 12px 0 18px;
}
.muted-suggestion {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  color: var(--muted);
}
.check-line {
  display: flex !important;
  grid-template-columns: auto 1fr !important;
  align-items: center;
  gap: 10px !important;
  color: var(--text) !important;
  margin-bottom: 8px;
}
.check-line input { min-height: auto !important; width: 18px; height: 18px; }
.admin-profiles-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.admin-profile-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,.045);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.admin-profile-row img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
}
.admin-profile-row small {
  color: var(--muted);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.admin-profile-detail {
  margin-top: 16px;
}
.admin-detail-card {
  display: grid;
  gap: 8px;
}
.simple-grid .cabinet-item span { font-size: 14px; }
@media (max-width: 740px) {
  .profile-title-line,
  .account-user-mini { align-items: stretch; flex-direction: column; }
  .admin-profile-row { grid-template-columns: 34px 1fr; }
  .admin-profile-row small { grid-column: 2; }
  .mini-profile span { display: none; }
  .mini-logout { display: none; }
  .google-icon-login span:not(.google-letter) { display: none; }
}
