/* TOKENS */
:root {
  --green:        #65b33a;
  --green-dk:     #4e8f2c;
  --green-lt:     #7fcf4a;
  --green-sub:    rgba(101,179,58,.10);
  --orange:       #e86c1a;
}
[data-theme="dark"] {
  --bg:        #111712;
  --bg2:       #181f18;
  --bg3:       #1e271e;
  --bg4:       #243024;
  --border:    rgba(101,179,58,.15);
  --text:      #eef2ec;
  --muted:     #8fa889;
  --card:      #1a221a;
  --card-bd:   rgba(101,179,58,.14);
  --nav-bg:    rgba(17,23,18,.92);
  --shadow:    0 20px 60px rgba(0,0,0,.55);
  --logo:      url('/assets/brand/gtq-wordmark-bianco.svg');
  --logo-pin:  url('/assets/brand/gtq-pin-bianco.svg');
}
[data-theme="light"] {
  --bg:        #f2f5f0;
  --bg2:       #ffffff;
  --bg3:       #eaf0e6;
  --bg4:       #ddebd6;
  --border:    rgba(101,179,58,.18);
  --text:      #1e2b1a;
  --muted:     #5a5a5a;
  --card:      #ffffff;
  --card-bd:   rgba(101,179,58,.20);
  --nav-bg:    rgba(242,245,240,.93);
  --shadow:    0 12px 40px rgba(0,0,0,.10);
  --logo:      url('/assets/brand/gtq-wordmark-grigio.svg');
  --logo-pin:  url('/assets/brand/gtq-pin-grigio.svg');
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.65; transition: background .35s, color .35s;
  overflow-x: hidden;
}

/* SCROLL BAR */
#scrollBar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--green); z-index: 500; width: 0;
  transition: width .1s linear;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo-pin {
  height: 40px; width: 40px;
  background: var(--logo-pin) center / contain no-repeat; flex-shrink: 0;
}
.nav-logo-wm {
  height: 33px; width: 210px;
  background: var(--logo) left center / contain no-repeat;
}
.nav-center {
  display: flex; align-items: center; gap: 4px;
}
.nav-center a {
  color: var(--muted); text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  padding: 7px 13px; border-radius: 7px;
  transition: color .2s, background .2s;
}
.nav-center a:hover { color: var(--text); background: var(--bg3); }
.nav-right { display: flex; align-items: center; gap: 10px; }

/* theme toggle */
.theme-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 100px; padding: 4px 12px 4px 6px;
  cursor: pointer; transition: background .35s;
}
.t-track {
  width: 34px; height: 19px; background: var(--bg4);
  border-radius: 100px; position: relative; transition: background .3s;
}
[data-theme="dark"] .t-track { background: var(--green); }
.t-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 15px; height: 15px; border-radius: 50%; background: #fff;
  transition: transform .3s;
}
[data-theme="dark"] .t-thumb { transform: translateX(15px); }
.t-lbl { font-size: .75rem; color: var(--muted); font-weight: 600; }

/* NAV */
.btn-nav-ghost {
  color: var(--muted); font-size: 13px; font-weight: 500;
  padding: 7px 16px; border-radius: 7px;
  text-decoration: none; border: 1px solid var(--border);
  transition: color .2s, border-color .2s, background .2s;
}
.btn-nav-ghost:hover { color: var(--text); border-color: var(--green); background: var(--green-sub); }

.btn-nav-primary {
  background: var(--green); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 8px 18px; border-radius: 7px;
  text-decoration: none; transition: background .2s, transform .2s;
  box-shadow: 0 4px 14px rgba(101,179,58,.28);
}
.btn-nav-primary:hover { background: var(--green-dk); transform: translateY(-1px); }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  font-size: .95rem; font-weight: 700;
  padding: 13px 30px; border-radius: 9px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(101,179,58,.30);
}
.btn-primary:hover { background: var(--green-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(101,179,58,.40); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-size: .95rem; font-weight: 600;
  padding: 13px 30px; border-radius: 9px;
  text-decoration: none; border: 1.5px solid var(--border);
  transition: border-color .2s, color .2s, transform .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); background: var(--green-sub); transform: translateY(-2px); }

/* HERO */
.hero {
  min-height: 90vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 96px 5% 72px;
  background:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(101,179,58,.14) 0%, transparent 70%),
    var(--bg);
  position: relative; overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-sub); border: 1px solid rgba(101,179,58,.30);
  color: var(--green); padding: 5px 16px; border-radius: 100px;
  font-size: .75rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-eyebrow span { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 1.8s ease infinite; }

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -.025em;
  margin-bottom: 20px; max-width: 780px;
}
.hero h1 em { font-style: normal; color: var(--green); }

.hero-sub {
  font-size: 1.08rem; color: var(--muted);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.75;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* HERO VISUAL */
.hero-visual {
  margin-top: 64px;
  display: flex; justify-content: center; align-items: flex-end;
  gap: 20px; flex-wrap: wrap;
}
/* Fake phone frame in CSS */
.mockup {
  border-radius: 26px; overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg3);
  position: relative; flex-shrink: 0;
  transition: transform .35s, opacity .35s;
}
.mockup img    { width: 100%; display: block; }
.mockup.main   { width: 190px; }
.mockup.side   { width: 155px; opacity: .7; }
.mockup.side-l { transform: translateY(20px) rotate(-3deg); }
.mockup.side-r { transform: translateY(20px) rotate(3deg); }
.mockup:hover  { transform: translateY(-8px) rotate(0deg) !important; opacity: 1 !important; }

/* PROBLEMA */
.section { padding: 88px 5%; }
.section.alt { background: var(--bg2); transition: background .35s; }

.eyebrow {
  color: var(--green); font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 14px;
}
.section-title em { font-style: normal; color: var(--green); }
.section-sub { color: var(--muted); font-size: 1rem; max-width: 560px; line-height: 1.75; }
.section-hd { margin-bottom: 52px; }
.section-hd.center { text-align: center; }
.section-hd.center .section-sub { margin: 0 auto; }

.problema-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 18px;
  max-width: 1120px; margin: 0 auto;
}
.p-card {
  background: var(--card); border: 1px solid var(--card-bd);
  border-radius: 16px; padding: 28px;
  transition: border-color .25s, transform .25s;
}
.p-card:hover { border-color: var(--green); transform: translateY(-3px); }
.p-icon { font-size: 1.8rem; margin-bottom: 14px; }
.p-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.p-card p  { color: var(--muted); font-size: .875rem; line-height: 1.65; }

/* COME FUNZIONA */
.steps-wrap { max-width: 1080px; margin: 0 auto; }
.step {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-bottom: 96px;
}
.step:last-child { margin-bottom: 0; }
.step.flip .step-vis { order: -1; }

.step-num {
  font-size: 5rem; font-weight: 900; line-height: 1; margin-bottom: -4px;
  -webkit-text-stroke: 2px var(--green); color: transparent; opacity: .45;
}
.step-tag { color: var(--green); font-size: .70rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.step-txt h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.step-txt p  { color: var(--muted); font-size: .95rem; margin-bottom: 18px; line-height: 1.75; }
.step-list { list-style: none; }
.step-list li {
  color: var(--muted); font-size: .875rem;
  padding: 5px 0 5px 22px; position: relative;
}
.step-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.step-vis { display: flex; justify-content: center; align-items: flex-end; gap: 16px; }
.phone-frame {
  border-radius: 24px; overflow: hidden;
  border: 2px solid var(--border); box-shadow: var(--shadow);
  background: var(--bg3); transition: border .35s, transform .35s;
}
.phone-frame img { width: 100%; display: block; }
.phone-frame.main { width: 180px; }
.phone-frame.sec  { width: 150px; margin-bottom: 24px; opacity: .65; }
.phone-frame:hover { transform: translateY(-6px); opacity: 1 !important; }

/* FEATURES */
.feat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px,1fr));
  gap: 18px; max-width: 1080px; margin: 0 auto;
}
.feat-card {
  background: var(--card); border: 1px solid var(--card-bd);
  border-radius: 18px; padding: 30px;
  transition: border-color .25s, transform .25s;
}
.feat-card:hover { border-color: var(--green); transform: translateY(-4px); }
.feat-icon {
  width: 50px; height: 50px; background: var(--green-sub);
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; margin-bottom: 18px;
  border: 1px solid rgba(101,179,58,.18);
}
.feat-card h3 { font-size: .97rem; font-weight: 700; margin-bottom: 8px; }
.feat-card p  { color: var(--muted); font-size: .87rem; line-height: 1.65; }

/* PRICING */
.pricing-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 320px)); gap: 18px;
  justify-content: center;
}
.price-card {
  background: var(--card); border: 1px solid var(--card-bd);
  border-radius: 20px; padding: 30px;
  display: flex; flex-direction: column; gap: 16px; min-height: 300px;
  position: relative; transition: border-color .25s, transform .25s, box-shadow .25s;
}
.price-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(101,179,58,.12); }
.price-card.featured {
  border-color: var(--green); border-width: 1.5px;
  box-shadow: 0 20px 60px rgba(101,179,58,.18);
  transform: translateY(-6px);
}
.price-card.featured:hover { transform: translateY(-10px); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(101,179,58,.4);
}
.price-head { display: flex; align-items: baseline; justify-content: space-between; }
.price-name { font-size: 20px; font-weight: 700; }
.price-code {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  color: var(--muted); background: var(--bg3);
  border: 1px solid var(--border); border-radius: 100px; padding: 3px 10px;
}
.price-value { font-size: 34px; font-weight: 900; line-height: 1; letter-spacing: -.03em; }
.price-value span { font-size: 13px; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--muted); }
.price-features li { display: flex; align-items: center; gap: 9px; }
.price-check {
  width: 19px; height: 19px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-sub); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; border: 1px solid rgba(101,179,58,.2);
}
.price-features strong { color: var(--text); font-weight: 600; }
.price-cta { margin-top: auto; width: 100%; padding: 12px 16px; font-size: 14px; border-radius: 8px; }
.price-loading { justify-content: center; text-align: center; color: var(--muted); font-size: 14px; min-height: 160px; }

/* CTA STRIP */
.cta-strip {
  background: var(--green); padding: 80px 5%; text-align: center;
}
.cta-strip h2 { font-size: clamp(1.8rem,3.5vw,2.5rem); font-weight: 900; color: #fff; margin-bottom: 12px; letter-spacing: -.02em; }
.cta-strip p  { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff; color: var(--green);
  font-size: .97rem; font-weight: 700;
  padding: 13px 32px; border-radius: 9px;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-white-ghost {
  background: transparent; color: #fff;
  font-size: .97rem; font-weight: 600;
  padding: 13px 32px; border-radius: 9px;
  text-decoration: none; border: 2px solid rgba(255,255,255,.5);
  transition: border-color .2s, transform .2s;
}
.btn-white-ghost:hover { border-color: #fff; transform: translateY(-2px); }

/* CONTACT */
.contact-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start;
}
.contact-info .section-sub { max-width: 360px; margin: 0 0 32px; }
.ci-items { display: flex; flex-direction: column; gap: 12px; }
.ci-item {
  display: flex; gap: 14px; align-items: center;
  padding: 15px 18px; background: var(--card);
  border: 1px solid var(--card-bd); border-radius: 12px;
  transition: border-color .2s;
}
.ci-item:hover { border-color: var(--green); }
.ci-ico {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--green-sub); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(101,179,58,.18);
}
.ci-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.ci-val   { font-size: 14px; font-weight: 600; color: var(--text); margin-top: 2px; }

.contact-form-wrap {
  background: var(--card); border: 1px solid var(--card-bd);
  border-radius: 20px; padding: 36px; box-shadow: var(--shadow);
}
.cform { display: flex; flex-direction: column; gap: 18px; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 11px 14px;
  background: var(--bg3); border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 14px; color: var(--text);
  font-family: 'Inter', sans-serif; outline: none; resize: none;
  transition: border-color .2s, box-shadow .2s, background .35s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--green); background: var(--bg2);
  box-shadow: 0 0 0 3px rgba(101,179,58,.12);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted); }

/* FOOTER */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 32px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; transition: background .35s;
}
.footer-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.footer-logo-pin { height: 34px; width: 34px; background: var(--logo-pin) center / contain no-repeat; }
.footer-logo-wm  { height: 27px; width: 190px; background: var(--logo) left center / contain no-repeat; }
.footer-links { display: flex; gap: 18px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--green); }
footer p { color: var(--muted); font-size: .80rem; }
footer a { color: var(--green); text-decoration: none; }

/* ANIMATIONS */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.7)} }
.reveal { opacity:0; transform:translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.vis { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width: 860px) {
  .step { grid-template-columns: 1fr; gap: 36px; }
  .step.flip .step-vis { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 0 4%; }
  .nav-center { display: none; }
  .section, .hero { padding-left: 4%; padding-right: 4%; }
  footer { flex-direction: column; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-links { justify-content: center; }
  .hero-visual .mockup.side { display: none; }
}
:focus-visible { outline: 3px solid rgba(101,179,58,.5); outline-offset: 3px; border-radius: 4px; }

/* REGISTER MODAL */
.reg-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; transition: opacity .22s ease;
  pointer-events: none;
}
.reg-backdrop.open { opacity: 1; pointer-events: all; }
.reg-modal {
  background: var(--card);
  border: 1px solid var(--card-bd);
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 100%; max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(18px) scale(.97);
  transition: transform .22s ease;
}
.reg-backdrop.open .reg-modal { transform: translateY(0) scale(1); }
.reg-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px 0;
}
.reg-modal-head h2 { font-size: 16px; font-weight: 700; color: var(--text); margin: 0; }
.reg-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); padding: 4px; line-height: 1;
  border-radius: 6px; transition: color .15s;
}
.reg-close:hover { color: var(--text); }
.reg-body { padding: 16px 22px 20px; }
.reg-fields { display: flex; flex-direction: column; gap: 10px; }
.reg-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.reg-row-cp { display: grid; grid-template-columns: 1fr 60px; gap: 10px; }
.reg-section-title {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green);
  border-bottom: 1px solid var(--border);
  padding-bottom: 5px; margin-bottom: 2px;
}
.reg-field { display: flex; flex-direction: column; gap: 4px; }
.reg-field label { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.reg-field input {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 7px; padding: 8px 11px;
  font-size: 14px; color: var(--text);
  transition: border-color .15s; outline: none;
}
.reg-field input:focus { border-color: var(--green); background: var(--bg2); }
.reg-field-err { font-size: 11px; color: #ef4444; min-height: 0; display: block; }
.reg-consent { display: flex; align-items: center; gap: 9px; margin-top: 2px; }
.reg-consent input[type=checkbox] { accent-color: var(--green); flex-shrink: 0; width:15px; height:15px; }
.reg-consent label { font-size: 12px; color: var(--muted); line-height: 1.4; cursor: pointer; }
.reg-status {
  font-size: 13px; padding: 10px 14px; border-radius: 8px;
  margin-bottom: 14px; display: none;
}
.reg-status.err { background: rgba(239,68,68,.12); color: #ef4444; display: block; }
.reg-status.ok  { background: rgba(101,179,58,.12); color: var(--green); display: block; }
.reg-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 14px; }
.reg-actions .btn-ghost  { background: none; border: 1px solid var(--border); color: var(--muted); border-radius: 8px; padding: 9px 18px; font-size: 14px; cursor: pointer; transition: border-color .15s, color .15s; }
.reg-actions .btn-ghost:hover { border-color: var(--text); color: var(--text); }
.reg-actions .btn-green { background: var(--green); color: #fff; border: none; border-radius: 8px; padding: 9px 22px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .15s; }
.reg-actions .btn-green:hover { background: var(--green-dk); }
.reg-actions .btn-green:disabled { opacity: .55; cursor: not-allowed; }
.reg-success { padding: 28px 24px 32px; text-align: center; }
.reg-success-icon { font-size: 42px; margin-bottom: 14px; }
.reg-success h3 { font-size: 18px; font-weight: 700; color: var(--text); margin: 0 0 8px; }
.reg-success p  { font-size: 14px; color: var(--muted); margin: 0 0 20px; }
.reg-success dl { text-align: left; background: var(--bg3); border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; }
.reg-success dt { font-size: 12px; color: var(--muted); }
.reg-success dd { font-size: 13px; font-weight: 600; color: var(--text); margin: 0; }
@media (max-width: 460px) {
  .reg-modal { border-radius: 12px; }
  .reg-backdrop { padding: 10px; }
}
@media (max-width: 360px) {
  .reg-row2 { grid-template-columns: 1fr; }
  .reg-row-cp { grid-template-columns: 1fr 46px; gap: 6px; }
  .reg-body { padding: 14px 14px 16px; }
  .reg-modal-head { padding: 14px 14px 0; }
}

