/* ============================================================
   VictoAI · LANDING
   Навигация лендинга + бургер, hero, продающие блоки,
   тарифы, шаги, FAQ, CTA, футер. Mobile-first, 3 брейкпоинта.
   ============================================================ */

/* ---------- SITE NAV + BURGER ---------- */
.site-nav{
  position: sticky; top: 0; z-index: 60;
  display:flex; align-items:center; justify-content:space-between; gap: 16px;
  padding: 14px 0;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-2) var(--ease), background var(--dur-2) var(--ease);
}
.site-nav.scrolled{ border-bottom-color: var(--border); }
.site-nav .inner{ width: min(var(--container), 100% - 2*var(--sp-5)); margin-inline:auto; display:flex; align-items:center; justify-content:space-between; gap: 16px; }
.site-nav .logo{ display:flex; align-items:center; gap: 10px; font-weight: 600; letter-spacing:-0.02em; font-size: 17px; color: var(--text); }
.site-nav .logo .mark{
  width: 30px; height: 30px; border-radius: 9px; display:grid; place-items:center;
  background: var(--grad-warm); box-shadow: var(--glow-strong);
}
.site-nav .logo .mark svg{ width: 17px; height: 17px; }
.site-nav .links{ display:flex; align-items:center; gap: 4px; }
.site-nav .links > a:not(.btn){ color: var(--text-muted); font-size: var(--fs-sm); padding: 8px 12px; border-radius: var(--r-sm); }
.site-nav .links > a:not(.btn):hover{ color: var(--text); background: var(--bg-elev); }
.nav-cta{ display:flex; align-items:center; gap: 8px; margin-left: 6px; }

.burger{
  display:none;
  width: 42px; height: 42px; border-radius: var(--r-md);
  border:1px solid var(--border); background: var(--bg-elev); color: var(--text);
  place-items:center; cursor:pointer;
}
.burger svg{ width: 20px; height: 20px; }

/* mobile menu sheet */
.mnav{
  position: fixed; inset: 0 0 auto 0; z-index: 70;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border-strong);
  padding: 80px var(--sp-5) var(--sp-6);
  transform: translateY(-100%);
  transition: transform var(--dur-3) var(--ease-out);
  display:flex; flex-direction: column; gap: 4px;
  box-shadow: var(--sh-3);
}
.mnav.open{ transform: none; }
.mnav a{ padding: 13px 14px; border-radius: var(--r-md); color: var(--text-muted); font-size: var(--fs-lg); }
.mnav a:hover,.mnav a:active{ background: var(--bg-card); color: var(--text); }
.mnav .mnav-cta{ display:flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.mnav .mnav-cta .btn{ width: 100%; }
.mnav-close{
  position: absolute; top: 16px; right: var(--sp-5);
  width: 42px; height: 42px; border-radius: var(--r-md);
  border:1px solid var(--border); background: var(--bg-card); color: var(--text);
  display:grid; place-items:center; cursor:pointer; font-size: 18px;
}
.mnav-back{ position: fixed; inset:0; z-index: 65; background: rgba(0,0,0,.5); opacity:0; visibility:hidden; transition: opacity var(--dur-3) var(--ease); }
.mnav-back.open{ opacity:1; visibility:visible; }

/* ---------- HERO ---------- */
.hero{ position: relative; overflow: hidden; padding: clamp(40px, 7vw, 84px) 0 clamp(48px, 7vw, 88px); }
.hero-glow{
  position:absolute; inset: -20% -10% auto auto; width: 70vw; max-width: 820px; aspect-ratio: 1;
  background: radial-gradient(circle at 62% 38%, var(--accent-soft), transparent 60%);
  filter: blur(8px); pointer-events:none; z-index: 0;
  will-change: transform;
}
.hero-grid{ position: relative; z-index: 1; display:grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
.hero-copy{ max-width: 640px; }
.hero-eyebrow{
  display:inline-flex; align-items:center; gap: 8px; padding: 6px 13px; border-radius: var(--r-pill);
  background: var(--bg-card); border:1px solid var(--border); font-size: var(--fs-xs); color: var(--text-muted);
}
.hero-eyebrow .pulse{ width:7px; height:7px; border-radius:50%; background: var(--success); box-shadow: 0 0 0 4px var(--success-soft); }
.hero h1{
  font-size: var(--fs-display); line-height: 1.1; letter-spacing: -0.04em;
  margin: 22px 0 28px; font-weight: 600; max-width: 14ch;
}
.hero h1 .accent-word{ display:inline-block; }
.hero .lede{ font-size: clamp(16px, 1.2vw + 0.6rem, 20px); color: var(--text-muted); max-width: 56ch; margin: 0 0 30px; }
.hero-cta{ display:flex; gap: 10px; flex-wrap: wrap; }
.hero-trust{ display:flex; gap: 8px; flex-wrap: wrap; margin-top: 26px; }

/* hero visual (product preview panel) */
.hero-visual{ position: relative; }
.hero-panel{
  background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: var(--r-2xl);
  padding: 14px; box-shadow: var(--sh-3);
  position: relative; overflow:hidden;
}
.hero-panel::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: var(--grad-warm-soft); opacity:.5;
}
.hp-head{ position:relative; display:flex; align-items:center; gap: 8px; padding: 6px 8px 12px; }
.hp-dot{ width:10px; height:10px; border-radius:50%; background: var(--bg-card-2); }
.hp-dot.a{ background: var(--accent); }
.hp-title{ margin-left: 8px; font-size: var(--fs-xs); color: var(--text-faint); font-family: var(--font-mono); }
.hp-body{ position:relative; display:flex; flex-direction: column; gap: 10px; }
.hp-msg{ display:flex; gap: 10px; }
.hp-msg .av{ width: 26px; height: 26px; border-radius: 50%; flex-shrink:0; display:grid; place-items:center; font-size: 11px; background: var(--bg-card-2); border:1px solid var(--border); color: var(--accent); }
.hp-msg.me{ flex-direction: row-reverse; }
.hp-msg.me .av{ background: var(--accent); color: var(--accent-ink); border:0; }
.hp-bubble{ padding: 10px 13px; border-radius: 13px; background: var(--bg-elev); border:1px solid var(--border); font-size: var(--fs-sm); max-width: 78%; }
.hp-msg.me .hp-bubble{ background: var(--accent-soft); border-color: var(--accent-line); }
.hp-gen{ display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 4px; }
.hp-gen .imgph{ aspect-ratio: 1; border-radius: var(--r-md); font-size: 9px; }
.hp-bar{ position:relative; display:flex; align-items:center; gap: 8px; margin-top: 12px; padding: 9px 10px; border-radius: var(--r-md); background: var(--bg-inset); border:1px solid var(--border); }
.hp-bar .ph{ flex:1; font-size: var(--fs-xs); color: var(--text-faint); }
.hp-bar .go{ width: 30px; height: 30px; border-radius: var(--r-sm); background: var(--accent); display:grid; place-items:center; color:#fff; }
.hp-bar .go svg{ width: 15px; height: 15px; }

/* floating credit chip on hero panel */
.hero-float{
  position: absolute; right: -10px; bottom: -14px; z-index: 2;
  background: var(--bg-card); border: 1px solid var(--border-strong); border-radius: var(--r-lg);
  padding: 12px 14px; box-shadow: var(--sh-3);
  display:flex; align-items:center; gap: 10px;
}
.hero-float .ic{ width: 34px; height: 34px; border-radius: var(--r-sm); background: var(--accent-soft); border:1px solid var(--accent-line); display:grid; place-items:center; color: var(--accent); }
.hero-float .ic svg{ width: 17px; height: 17px; }
.hero-float .k{ font-size: 10px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-float .v{ font-family: var(--font-mono); font-size: 17px; letter-spacing: -0.02em; }

/* hero stat strip */
.hero-meta{
  margin-top: clamp(40px, 5vw, 64px); position: relative; z-index: 1;
  display:grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--bg-elev);
}
.hero-meta > div{ padding: 16px 18px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hero-meta .k{ font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-meta .v{ font-size: 21px; font-weight: 500; margin-top: 6px; letter-spacing: -0.02em; }
.hero-meta .v small{ font-size: 12px; color: var(--text-muted); font-weight: 400; }

/* ---------- SECTION SHELL ---------- */
.section{ padding: clamp(48px, 7vw, 88px) 0; }
.section-head{ margin-bottom: clamp(28px, 4vw, 44px); }
.section-head.center{ text-align:center; display:flex; flex-direction: column; align-items: center; }
.section-head .kicker{ font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
.section-head h2{ font-size: var(--fs-h2); font-weight: 500; letter-spacing: -0.03em; margin: 10px 0 8px; max-width: 18ch; }
.section-head.center h2{ margin-inline:auto; }
.section-head p{ color: var(--text-muted); max-width: 56ch; margin: 0; }
.section-head.center p{ margin-inline: auto; }

/* tools grid */
.tools{ display:grid; grid-template-columns: 1fr; gap: 14px; }

/* steps */
.steps{ display:grid; grid-template-columns: 1fr; gap: 14px; counter-reset: step; }
.step{ position: relative; padding: 26px 24px; border:1px solid var(--border); border-radius: var(--r-xl); background: var(--bg-card); }
.step .num{
  width: 38px; height: 38px; border-radius: var(--r-md); display:grid; place-items:center;
  font-family: var(--font-mono); font-size: 16px; font-weight: 600;
  background: var(--accent-soft); border:1px solid var(--accent-line); color: var(--accent); margin-bottom: 16px;
}
.step h3{ font-size: var(--fs-h3); font-weight: 500; margin: 0 0 6px; }
.step p{ font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }
.step .line{ display:none; }

/* pricing */
.pricing-tabs{ display: flex; margin: 0 auto clamp(24px, 4vw, 36px); width: fit-content; }
.prices{ display:grid; grid-template-columns: 1fr; gap: 14px; }
.price{
  position: relative; padding: 28px 24px 24px; background: var(--bg-card);
  border:1px solid var(--border); border-radius: var(--r-xl); display:flex; flex-direction: column;
  transition: transform var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.price:hover{ transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--sh-2); }
.price.featured{
  border-color: var(--accent-line);
  background: linear-gradient(180deg, var(--accent-soft), transparent 42%), var(--bg-card);
}
.price.featured:hover{ box-shadow: var(--glow); }
.price .pop{
  position:absolute; top: -11px; left: 22px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 11px; border-radius: var(--r-pill); letter-spacing: 0.02em; text-transform: uppercase;
  box-shadow: var(--glow);
}
.price h4{ margin: 0; font-size: var(--fs-xs); font-weight: 500; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.price .amount{ font-size: clamp(38px, 5vw, 46px); font-weight: 500; letter-spacing: -0.03em; margin: 12px 0 0; line-height: 1; }
.price .amount small{ font-size: 15px; color: var(--text-muted); font-weight: 400; margin-left: 3px; }
.price .credits{ color: var(--text-muted); font-size: var(--fs-sm); margin-top: 6px; }
.price ul{ list-style:none; padding: 0; margin: 22px 0; display:flex; flex-direction: column; gap: 11px; flex: 1; }
.price ul li{ display:flex; gap: 10px; font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }
.price ul li::before{
  content:""; width: 16px; height: 16px; flex-shrink:0; margin-top: 2px; color: var(--accent);
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4L19 7' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4L19 7' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.pricing-note{ text-align:center; color: var(--text-muted); font-size: var(--fs-sm); margin-top: 18px; }

/* social proof / logos strip */
.proof{ display:flex; flex-direction: column; gap: 18px; align-items:center; text-align:center; }
.proof .marks{ display:flex; gap: 10px; flex-wrap: wrap; justify-content:center; }
.proof .marks .m{
  padding: 10px 16px; border-radius: var(--r-md); border:1px solid var(--border); background: var(--bg-card);
  font-size: var(--fs-sm); color: var(--text-muted); font-weight: 500;
}

/* FAQ block reuse */
.faq{ max-width: 760px; margin: 0 auto; }

/* CTA band */
.cta-band{
  position: relative; overflow: hidden;
  border:1px solid var(--accent-line); border-radius: var(--r-2xl);
  padding: clamp(36px, 6vw, 64px) clamp(24px, 4vw, 48px); text-align:center;
  background: linear-gradient(135deg, var(--accent-soft), transparent 55%), var(--bg-card);
}
.cta-band::before{
  content:""; position:absolute; inset: auto auto -40% -10%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-soft), transparent 60%); filter: blur(8px); pointer-events:none;
}
.cta-band h2{ position:relative; font-size: var(--fs-h2); font-weight: 500; letter-spacing: -0.03em; margin: 0 0 10px; }
.cta-band p{ position:relative; color: var(--text-muted); max-width: 52ch; margin: 0 auto 26px; }
.cta-band .hero-cta{ position:relative; justify-content:center; }

/* footer */
.footer{ border-top: 1px solid var(--border); margin-top: 8px; }
.footer-inner{ display:grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; padding: clamp(36px, 5vw, 56px) 0 32px; }
.footer .f-brand{ grid-column: 1 / -1; }
.footer .f-brand .logo{ display:inline-flex; align-items:center; gap: 10px; font-weight: 600; color: var(--text); }
.footer .f-brand .logo .mark{ width: 26px; height: 26px; border-radius: 8px; background: var(--grad-warm); display:grid; place-items:center; }
.footer .f-brand .logo .mark svg{ width: 15px; height: 15px; }
.footer .f-brand p{ color: var(--text-muted); font-size: var(--fs-sm); margin: 12px 0 0; max-width: 34ch; }
.footer h5{ font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); margin: 0 0 12px; }
.footer a{ display:block; color: var(--text-muted); padding: 5px 0; font-size: var(--fs-sm); }
.footer a:hover{ color: var(--text); }
.footer-bottom{ border-top: 1px solid var(--border); padding: 18px 0; display:flex; justify-content:space-between; gap: 12px; flex-wrap: wrap; color: var(--text-faint); font-size: var(--fs-xs); }

/* ============================================================
   BREAKPOINTS — tablet (≥640) and desktop (≥1024)
   ============================================================ */
@media (min-width: 640px){
  .hero-meta{ grid-template-columns: repeat(4, 1fr); }
  .hero-meta > div{ border-bottom: 0; }
  .tools{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(3, 1fr); }
  .prices{ grid-template-columns: repeat(2, 1fr); }
  .footer-inner{ grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer .f-brand{ grid-column: auto; }
}

@media (min-width: 1024px){
  .hero-grid{ grid-template-columns: 1.05fr 0.95fr; }
  .tools{ grid-template-columns: repeat(3, 1fr); }
  .tools .feature.wide{ grid-column: span 1; }
  .prices{ grid-template-columns: repeat(4, 1fr); }
  .section-head.split{ display:flex; flex-direction: row; align-items: flex-end; justify-content: space-between; text-align: left; }
  .section-head.split h2{ margin: 0; }
  .section-head.split p{ max-width: 42ch; }
}

@media (max-width: 880px){
  .site-nav .links{ display:none; }
  .burger{ display:grid; }
}
@media (min-width: 881px){
  .mnav,.mnav-back{ display:none; }
}

/* ============================================================
   AUTH (вход / регистрация)
   ============================================================ */
.auth{ min-height: 100vh; display: grid; grid-template-columns: 1fr; }
@media (min-width: 920px){ .auth{ grid-template-columns: 1.05fr 1fr; } }

.auth-aside{
  display: none;
  position: relative; overflow: hidden;
  padding: 48px;
  background:
    radial-gradient(820px 520px at 22% 26%, var(--accent-soft), transparent 60%),
    var(--bg-elev);
  border-right: 1px solid var(--border);
  flex-direction: column; justify-content: space-between;
}
@media (min-width: 920px){ .auth-aside{ display: flex; } }
.auth-aside .logo{ display:inline-flex; align-items:center; gap: 10px; font-weight: 600; font-size: 17px; color: var(--text); }
.auth-aside .logo .mark{ width: 30px; height: 30px; border-radius: 9px; background: var(--grad-warm); display:grid; place-items:center; box-shadow: var(--glow-strong); }
.auth-aside .logo .mark svg{ width: 17px; height: 17px; }
.auth-aside .pitch h2{ font-size: clamp(28px, 3vw, 40px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.1; margin: 0 0 14px; max-width: 16ch; }
.auth-aside .pitch p{ color: var(--text-muted); max-width: 44ch; margin: 0 0 24px; }
.auth-aside .feats{ display:flex; flex-direction: column; gap: 12px; }
.auth-aside .feats .f{ display:flex; gap: 11px; align-items:flex-start; font-size: var(--fs-sm); color: var(--text); }
.auth-aside .feats .f .ic{ width: 30px; height: 30px; border-radius: var(--r-sm); background: var(--bg-card); border:1px solid var(--border); display:grid; place-items:center; color: var(--accent); flex-shrink:0; }
.auth-aside .feats .f .ic svg{ width: 15px; height: 15px; }
.auth-aside .feats .f .d{ color: var(--text-muted); font-size: var(--fs-xs); margin-top: 1px; }

.auth-main{ display:grid; place-items:center; padding: clamp(28px, 6vw, 56px) var(--sp-5); }
.auth-card{ width: 100%; max-width: 392px; }
.auth-card .mlogo{ display:flex; align-items:center; gap: 9px; margin-bottom: 28px; font-weight: 600; }
.auth-card .mlogo .mark{ width: 28px; height: 28px; border-radius: 8px; background: var(--grad-warm); display:grid; place-items:center; }
.auth-card .mlogo .mark svg{ width: 16px; height: 16px; }
@media (min-width: 920px){ .auth-card .mlogo{ display: none; } }
.auth-card h1{ font-size: clamp(26px, 3vw, 32px); font-weight: 500; letter-spacing: -0.025em; margin: 0 0 6px; }
.auth-card .sub{ color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: 26px; }
.auth-card .field{ margin-bottom: 14px; }
.auth-card .row{ display:flex; justify-content:space-between; align-items:center; font-size: var(--fs-sm); color: var(--text-muted); margin: 4px 0 18px; }
.auth-card .row a{ color: var(--accent); }
.auth-card .alt{ text-align:center; margin-top: 22px; font-size: var(--fs-sm); color: var(--text-muted); }
.auth-card .alt a{ color: var(--accent); }
.auth-divider{ display:flex; align-items:center; gap: 12px; margin: 20px 0; color: var(--text-faint); font-size: var(--fs-xs); }
.auth-divider::before,.auth-divider::after{ content:""; flex:1; height:1px; background: var(--border); }
.auth-back{ position: fixed; top: 18px; left: 18px; z-index: 10; }
@media (min-width: 920px){ .auth-back{ display: none; } }

/* ---------- ВТОРИЧНЫЕ СТРАНИЦЫ: .site-nav без .inner + .doc ---------- */
.site-nav:not(:has(.inner)){ padding-left: clamp(16px, 4vw, 40px); padding-right: clamp(16px, 4vw, 40px); }
@media (max-width: 760px){
  .site-nav:not(:has(.inner)){ flex-wrap: wrap; }
  .site-nav:not(:has(.inner)) .links{ flex-wrap: wrap; gap: 4px; row-gap: 4px; }
}

/* юридические/текстовые страницы */
.doc{ width: min(820px, 100% - 2*var(--sp-5)); margin: clamp(32px,6vw,64px) auto clamp(48px,8vw,80px); }
.doc h1{ font-size: clamp(26px, 4vw, 38px); font-weight: 600; letter-spacing: -0.02em; margin: 0 0 8px; }
.doc .upd{ color: var(--text-faint); font-size: var(--fs-sm); margin-bottom: 28px; }
.doc h2{ font-size: var(--fs-h3); font-weight: 600; margin: 32px 0 10px; letter-spacing: -0.01em; }
.doc h3{ font-size: var(--fs-lg); font-weight: 600; margin: 22px 0 8px; }
.doc p, .doc li{ color: var(--text-muted); font-size: var(--fs-base); line-height: 1.65; }
.doc p{ margin: 0 0 14px; }
.doc ul, .doc ol{ margin: 0 0 16px; padding-left: 22px; display:flex; flex-direction:column; gap: 6px; }
.doc a{ color: var(--accent); }
.doc a:hover{ text-decoration: underline; }
.doc strong, .doc b{ color: var(--text); }
.doc hr{ border: 0; border-top: 1px solid var(--border); margin: 28px 0; }
.doc table{ width: 100%; border-collapse: collapse; margin: 0 0 16px; }
.doc th, .doc td{ border: 1px solid var(--border); padding: 9px 12px; font-size: var(--fs-sm); text-align: left; }
.doc th{ background: var(--bg-elev); color: var(--text); }

/* навигация по документам (aside) — ряд «пилюль» сверху */
.doc aside{
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin: 0 0 26px; padding-bottom: 22px; border-bottom: 1px solid var(--border);
}
.doc aside h6{
  width: 100%; margin: 0 0 4px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-faint); font-weight: 500;
}
.doc aside a{
  display: inline-flex; align-items: center;
  padding: 6px 13px; border-radius: var(--r-pill);
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text-muted); font-size: 13px; text-decoration: none;
  transition: color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.doc aside a:hover{ color: var(--text); border-color: var(--border-strong); background: var(--bg-card-2); text-decoration: none; }
.doc aside a.active{ color: var(--accent); border-color: var(--accent-line); background: var(--accent-soft); font-weight: 500; }

/* ============ SUPPORT PAGE ============ */
.support-grid{
  max-width: 1180px; margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) clamp(16px, 4vw, 32px) 80px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px;
}
@media (max-width: 1000px){ .support-grid{ grid-template-columns: 1fr; } }
.support-card{ padding: 24px 26px; border: 1px solid var(--border); border-radius: var(--r-xl); background: var(--bg-card); }
.support-card h2{ font-size: var(--fs-h3); font-weight: 500; letter-spacing: -0.02em; margin: 0 0 6px; }
.support-card .desc{ color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: 20px; }
.ticket-form .field{ margin-bottom: 12px; }
.ticket-form textarea{ min-height: 120px; }

/* нативный <select> в форме поддержки — под общий стиль полей */
.field select{
  width: 100%; box-sizing: border-box;
  background: var(--bg-inset); border: 1px solid var(--border); color: var(--text);
  padding: 11px 38px 11px 13px; border-radius: var(--r-md);
  font: inherit; font-size: var(--fs-sm); outline: none; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a9aa0' stroke-width='2'><path d='m6 9 6 6 6-6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
}
.field select:focus{ border-color: var(--accent-line); box-shadow: 0 0 0 4px var(--accent-soft); }
.field select option{ background: var(--bg-card); color: var(--text); }

.contact-line{
  display: flex; gap: 12px; align-items: center;
  padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--bg-elev); margin-bottom: 10px;
}
.contact-line .ic{
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: var(--bg-card-2); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--accent);
}
.contact-line .ic svg{ width: 16px; height: 16px; }
.contact-line .what{ font-size: var(--fs-sm); font-weight: 500; }
.contact-line .sub{ font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }

.my-tickets-card{
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 24px 26px;
}
.my-tickets-card h2{ font-size: var(--fs-h3); font-weight: 500; letter-spacing: -0.02em; margin: 0 0 4px; }
.my-tickets-card .desc{ color: var(--text-muted); font-size: var(--fs-sm); margin-bottom: 14px; }
.tickets-list{ display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.tickets-list .ticket{
  border: 1px solid var(--border); background: var(--bg-elev);
  border-radius: var(--r-md); padding: 14px 16px;
  transition: border-color var(--dur-2) var(--ease);
}
.tickets-list .ticket:hover{ border-color: var(--border-strong); }
.ticket-head{ display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.ticket-subj{ font-weight: 600; color: var(--text); font-size: 14.5px; }
.ticket-when{ color: var(--text-faint); font-size: 12px; margin-top: 2px; }
.ticket-body{ color: var(--text-muted); font-size: 13px; margin-top: 6px; white-space: pre-wrap; }
