/* ====================================================
   ISCO B2B — Лендинг
   Светлая тёплая тема, акцент — алый красный
   ==================================================== */

:root {
  --bg: #f6f5f1;
  --bg-2: #eeecea;
  --bg-3: #e4e2de;
  --surface: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.13);
  --text: #1c1c1e;
  --text-dim: #525260;
  --text-mute: #a0a0ab;
  --accent: #d62839;
  --accent-2: #f03347;
  --accent-glow: rgba(214, 40, 57, 0.28);
  --radius: 18px;
  --radius-lg: 28px;
  --max-width: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --display: 'Montserrat', system-ui, sans-serif;
  --body: 'Montserrat', system-ui, sans-serif;
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

/* Плавный переход при смене темы */
html {
  color-scheme: light dark;
}

body * {
  transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0s, 
              border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0s,
              color 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0s,
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===================== Кнопки ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 30px -8px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px var(--accent-glow);
}
.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: rgba(0,0,0,0.04);
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }

/* ===================== Шапка ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(246, 245, 241, 0.82);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--gutter);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo__mark { color: var(--accent); font-size: 20px; }
.logo__text span { color: var(--accent); }

.nav {
  display: flex;
  gap: 32px;
  font-size: 15px;
  color: var(--text-dim);
}
.nav a { transition: color .2s; }
.nav a:hover { color: var(--text); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }

@media (max-width: 820px) {
  .nav { display: none; }
  .header .btn { display: none; }
  .burger { display: flex; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: var(--bg);
}
.hero__glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 28px;
}
.hero__badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .4; } }

.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.accent { color: var(--accent); }

.hero__lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__stats {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero__stats b {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero__stats span { color: var(--text); font-size: 13px; }

/* "Телефоны" — декоративные карточки */
.hero__visual { position: relative; height: 480px; }
@media (max-width: 920px) { .hero__visual { height: 360px; } }

.phones { position: relative; width: 100%; height: 100%; }
.phone {
  position: absolute;
  border-radius: 36px;
  background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone__placeholder {
  font-size: 80px;
  opacity: 0.6;
}

.phone__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
}

.phone::before, .phone::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.phone--top-left {
  width: 47%;
  height: 47%;
  top: 2%;
  left: 2%;
  background: linear-gradient(145deg, #ebebea, #f0efec);
}
.phone--top-right {
  width: 47%;
  height: 47%;
  top: 2%;
  right: 2%;
  background: linear-gradient(145deg, #e8e7e4, #eeedea);
}
.phone--bottom-left {
  width: 47%;
  height: 47%;
  bottom: 2%;
  left: 2%;
  background: linear-gradient(145deg, #e8e7e4, #eeedea);
}
.phone--bottom-right {
  width: 47%;
  height: 47%;
  bottom: 2%;
  right: 2%;
  background: linear-gradient(145deg, #ebebea, #f0efec);
}

.phone_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 36px;
  display: block;
}

/* ===================== Маркетплейсы маркер ===================== */
.marquee-section { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.eyebrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  background: rgba(214, 40, 57, 0.09);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(214, 40, 57, 0.18);
}
.marquee {
  overflow: hidden;
  margin-top: 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #f6f5f1 10%, #f6f5f1 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #f6f5f1 10%, #f6f5f1 90%, transparent);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: -0.02em;
  transition: color .3s;
}
.marquee__item:hover { color: var(--accent); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===================== Секции — общее ===================== */
section { position: relative; }
.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}

/* ===================== Почему мы ===================== */
.why { padding: clamp(80px, 10vw, 140px) 0; background: var(--bg); }
.why__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .why__inner { grid-template-columns: 1fr; gap: 48px; }
}
.why__list { display: flex; flex-direction: column; gap: 18px; margin: 32px 0; }
.why__list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 17px;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.why__list li span {
  font-family: var(--display);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

.why__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why__metric {
  padding: 36px 28px;
  background: var(--surface);
  transition: background .3s;
}
.why__metric:hover { background: var(--bg-3); }
.why__metric-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  line-height: 1;
}
.why__metric-label { color: var(--text-dim); font-size: 14px; }

/* ===================== Услуги ===================== */
.services { padding: clamp(80px, 10vw, 140px) 0; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(214, 40, 57, 0.09), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--bg-3);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  font-size: 32px;
  margin-bottom: 24px;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(214, 40, 57, 0.09);
  border: 1px solid rgba(214, 40, 57, 0.22);
  border-radius: 14px;
}
.service-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.service-card p, .service-card ul { color: var(--text-dim); font-size: 15px; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; }
.service-card ul li { position: relative; padding-left: 18px; }
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===================== CTA Banner ===================== */
.cta-banner {
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(214, 40, 57, 0.08), transparent 60%),
    var(--bg);
}
.cta-banner__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 1000px;
  margin: 0 auto;
}

/* ===================== Бенефиты ===================== */
.benefits { padding: clamp(80px, 10vw, 140px) 0; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.benefit {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .3s, transform .3s;
}
.benefit:hover { border-color: var(--accent); transform: translateY(-4px); }
.benefit__num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.benefit h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.benefit p { color: var(--text-dim); }

/* ===================== Портфолио ===================== */
.portfolio { padding: clamp(80px, 10vw, 140px) 0; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.portfolio__item {
  background: var(--surface);
  padding: 56px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  color: var(--text-dim);
  letter-spacing: -0.02em;
  transition: background .3s, color .3s;
  text-align: center;
}
.portfolio__item:hover { background: var(--bg-3); color: var(--accent); }
.portfolio__item img {
  max-height: 90px;
  max-width: 72%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity .3s;
  pointer-events: none;
}
.portfolio__item:hover img { opacity: 1; }

@media (max-width: 768px) {
  .portfolio__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ===================== Форма ===================== */
.form-section { padding: clamp(80px, 10vw, 140px) 0; background: var(--bg); }
.form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 920px) {
  .form-section__inner { grid-template-columns: 1fr; gap: 48px; }
}
.form-section__lead { color: var(--text-dim); font-size: 17px; max-width: 480px; }

/* ===================== Детальная заявка ===================== */
.detailed-form-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.detailed-form-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.detailed-form-section__text {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-dim);
  line-height: 1.6;
}

.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field span {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.field input,
.field textarea {
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  resize: vertical;
  transition: border-color .2s, background .2s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-mute); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-3);
}
.field input:invalid:not(:placeholder-shown) { border-color: #dc2626; }

.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form__hint { color: var(--text-mute); font-size: 13px; margin-top: 4px; }
.form__status {
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  margin-top: 8px;
  display: none;
}
.form__status.is-success { display: block; background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.28); color: #16a34a; }
.form__status.is-error { display: block; background: rgba(214, 40, 57, 0.08); border: 1px solid rgba(214, 40, 57, 0.25); color: #b91c2c; }

/* ===================== Футер ===================== */
.footer { padding: 80px 0 32px; border-top: 1px solid var(--border); background: var(--bg-2); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 720px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; gap: 32px; } }

.footer__brand p { color: var(--text-dim); margin-top: 16px; max-width: 280px; }
.footer__col h4 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--text);
}
.footer__col a {
  display: block;
  color: var(--text-dim);
  padding: 4px 0;
  font-size: 15px;
  transition: color .2s;
}
.footer__col a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0;
  transition: all .2s;
}
.footer__social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-mute);
  font-size: 13px;
}

/* ===================== Анимация появления ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(0.22, 1, 0.36, 1), transform .8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Тонкая настройка скроллбара */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 5px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--surface); }

/* ===================== Переключатель темы ===================== */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dim);
  transition: background .2s, border-color .2s, color .2s, transform .3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--bg-3);
  border-color: var(--accent);
  color: var(--accent);
}
.theme-toggle:active {
  transform: scale(0.95) rotate(20deg);
}
.theme-toggle svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.theme-toggle:active svg {
  transform: rotate(180deg);
}
.icon-sun { display: none; }
body.dark .icon-sun { display: block; }
body.dark .icon-moon { display: none; }

/* ===================== Тёмная тема ===================== */
body.dark {
  --bg: #0f0f14;
  --bg-2: #161620;
  --bg-3: #1e1e2a;
  --surface: #1a1a26;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f0f0f2;
  --text-dim: #9898a8;
  --text-mute: #5a5a6a;
  --accent: #e63946;
  --accent-2: #ff5060;
  --accent-glow: rgba(230, 57, 70, 0.38);
}

body.dark .header { background: rgba(15, 15, 20, 0.82); }

body.dark .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.35);
}

body.dark .phone--top-left    { background: linear-gradient(145deg, #1d1d22, #131316); }
body.dark .phone--top-right   { background: linear-gradient(145deg, #1f1f24, #15151a); }
body.dark .phone--bottom-left  { background: linear-gradient(145deg, #1f1f24, #15151a); }
body.dark .phone--bottom-right { background: linear-gradient(145deg, #1a1a1f, #111114); }

body.dark .marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #0f0f14 10%, #0f0f14 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #0f0f14 10%, #0f0f14 90%, transparent);
}

body.dark .field input:invalid:not(:placeholder-shown) { border-color: #f97070; }
body.dark .form__status.is-success { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.3); color: #86efac; }
body.dark .form__status.is-error   { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.3); color: #fca5a5; }

body.dark ::-webkit-scrollbar-track { background: #0f0f14; }
body.dark ::-webkit-scrollbar-thumb { background: #1e1e2a; border-color: #0f0f14; }
body.dark ::-webkit-scrollbar-thumb:hover { background: #1a1a26; }

/* Уважение к prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
