/*
Theme Name: Арканис SaaS
Theme URI: https://www.arcanis.ru/
Author: Арканис
Description: Чистая русскоязычная тема для сайта Арканис.
Version: 1.0.4
Text Domain: arcanis-saas
*/

:root {
  --bg: #f6f8fb;
  --paper: #ffffff;
  --soft: #eef3f8;
  --ink: #162033;
  --text: #2d3748;
  --muted: #667085;
  --line: #dce5ef;
  --red: #d52b1e;
  --blue: #11457e;
  --green: #18715f;
  --shadow: 0 18px 45px rgba(17, 34, 62, 0.11);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; height: auto; }
h1, h2, h3, p, a, span, b, strong, li, label, th, td { overflow-wrap: anywhere; }

:focus-visible {
  outline: 3px solid rgba(17,69,126,0.42);
  outline-offset: 3px;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand img { width: 150px; min-width: 0; }

.nav-links,
.nav-actions,
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a,
.footer-links a {
  line-height: 1.2;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  line-height: 1.15;
  text-align: center;
}

.btn.primary { border-color: var(--red); background: var(--red); color: #fff; }
.btn.blue { border-color: var(--blue); background: var(--blue); color: #fff; }
.btn.green { border-color: var(--green); background: var(--green); color: #fff; }
.btn.full { width: 100%; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 46px;
  background:
    linear-gradient(90deg, rgba(246,248,251,0.97), rgba(246,248,251,0.88)),
    linear-gradient(135deg, #ffffff, #e9f0f8);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg,
      rgba(17,69,126,0.32) 0%,
      rgba(255,255,255,0.18) 24%,
      rgba(213,43,30,0.2) 48%,
      rgba(24,113,95,0.18) 70%,
      rgba(17,69,126,0.26) 100%);
  background-size: 260% 260%;
  background-position: 0% 50%;
  animation: arcanisHeroGradient 18s ease-in-out infinite;
  opacity: 0.95;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
  align-items: center;
}

.hero h1,
.hero .lead,
.hero-note {
  text-shadow: 0 1px 0 rgba(255,255,255,0.62);
}

.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.lead {
  max-width: 760px;
  color: #344054;
  font-size: 20px;
}

.actions { flex-wrap: wrap; margin-top: 26px; }

.hero-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.proof-item,
.panel,
.card,
.strip,
.order-form,
.function-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.proof-item {
  padding: 14px;
  background: rgba(255,255,255,0.86);
}

.proof-item strong,
.proof-item span { display: block; }
.proof-item strong { color: var(--ink); font-size: 18px; }
.proof-item span { color: var(--muted); font-size: 14px; }

.panel {
  padding: 20px;
  box-shadow: var(--shadow);
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.panel-row:last-child { border-bottom: 0; }
.panel-row span { color: var(--muted); }
.panel-row b { color: var(--ink); text-align: right; }

.section { padding: 58px 0; }
.section.alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,251,0.92)),
    linear-gradient(115deg, rgba(17,69,126,0.035), rgba(213,43,30,0.025), rgba(24,113,95,0.025));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 26px;
}

.section-head p { max-width: 620px; margin: 0; color: var(--muted); }
.muted { color: var(--muted); }

.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
}

.strip div { padding: 18px; background: #fff; }
.strip b,
.strip span { display: block; }
.strip b { color: var(--ink); }
.strip span { color: var(--muted); }

.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  min-height: 100%;
  padding: 20px;
}

.card p { margin: 0; }
.card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #edf3f8;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card.best {
  border-color: rgba(213,43,30,0.38);
  box-shadow: var(--shadow);
}

.price {
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 900;
  line-height: 1.08;
}

.price small {
  display: inline-block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-card .btn { margin-top: auto; }

.function-calculator,
.feature-calculator {
  display: grid;
  gap: 16px;
  overflow: visible;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-item {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.94);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.feature-item:focus-within {
  border-color: rgba(17,69,126,0.38);
  box-shadow: 0 12px 30px rgba(17,34,62,0.08);
}

.feature-check {
  min-width: 0;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  cursor: pointer;
}

.feature-check input {
  width: 24px;
  height: 24px;
  margin: 1px 0 0;
  accent-color: var(--red);
  cursor: pointer;
}

.feature-check strong,
.feature-check small {
  display: block;
}

.feature-check strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.feature-check small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.feature-meta {
  min-width: 0;
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.feature-meta b {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.feature-meta a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feature-more {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.feature-more summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.feature-more summary::-webkit-details-marker { display: none; }

.feature-more summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.feature-more[open] summary {
  border-bottom: 1px solid var(--line);
}

.feature-more[open] summary::after {
  transform: rotate(225deg);
}

.feature-list-full {
  padding: 14px;
}

.feature-summary {
  position: static;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(150px, 0.85fr));
  gap: 10px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid rgba(17,69,126,0.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow);
  z-index: 2;
}

.calc-plan-group,
.feature-summary > div:not(.feature-summary-actions),
.feature-summary > p {
  min-width: 0;
  min-inline-size: 0;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(17,69,126,0.12);
  border-radius: var(--radius);
  background: #fff;
}

.calc-plan-group {
  display: grid;
  gap: 8px;
}

.calc-plan-group legend {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.calc-plan-group label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 6px;
  align-items: start;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.calc-plan-group input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.calc-plan-group input[type="radio"]:focus-visible {
  outline: 3px solid rgba(216,27,27,0.25);
  outline-offset: 2px;
}

.feature-summary > div:not(.feature-summary-actions) {
  display: grid;
  gap: 5px;
  align-content: start;
}

#calc-total {
  display: inline-flex;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  color: var(--red);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.feature-summary span,
.feature-summary strong {
  min-width: 0;
  display: block;
}

.feature-summary span {
  color: var(--muted);
  font-size: 13px;
}

.feature-summary strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.feature-summary p {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  background: rgba(244,248,252,0.82);
}

.feature-summary-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.feature-summary-actions .btn {
  width: 100%;
  min-width: 0;
  white-space: normal;
}

.function-table-wrap { overflow-x: auto; }
.function-calculator.function-table-wrap,
.feature-calculator.function-table-wrap { overflow: visible; }
.function-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.function-table th,
.function-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.function-table th {
  color: var(--ink);
  font-size: 13px;
  background: var(--soft);
}

.function-table td { color: var(--text); }
.function-table td:first-child,
.function-table th:first-child { width: 90px; text-align: center; }
.function-table td:nth-child(4),
.function-table th:nth-child(4) { width: 130px; }
.function-table tr:last-child td { border-bottom: 0; }
.function-table a { color: var(--blue); font-weight: 800; }
.function-table input { width: 22px; height: 22px; accent-color: var(--red); }

.order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 34px;
  align-items: start;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.order-form label {
  min-width: 0;
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.order-form .wide,
.order-form button { grid-column: 1 / -1; }

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 10px;
  background: #fff;
  color: var(--text);
}

.order-form textarea { resize: vertical; }

.order-form label:has(input[type="checkbox"]) {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 42px;
}

.order-form input[type="checkbox"] {
  width: 20px;
  min-height: 20px;
  height: 20px;
  padding: 0;
  accent-color: var(--red);
}

.order-form label:has(input[type="checkbox"]) {
  cursor: pointer;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.step b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.step p { margin: 0; color: var(--muted); }

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 44px 0;
  background:
    linear-gradient(90deg, rgba(14,23,38,0.94), rgba(14,23,38,0.84)),
    linear-gradient(120deg, #11457e, #0e1726);
  color: #fff;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg,
      rgba(213,43,30,0.55) 0%,
      rgba(17,69,126,0.28) 32%,
      rgba(14,23,38,0.12) 54%,
      rgba(24,113,95,0.38) 100%);
  background-size: 240% 240%;
  background-position: 0% 50%;
  animation: arcanisCtaGradient 22s ease-in-out infinite;
}

.cta-band h2 { color: #fff; }
.cta-band p { margin: 8px 0 0; color: rgba(255,255,255,0.82); }

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: center;
}

@keyframes arcanisHeroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes arcanisCtaGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .cta-band::before {
    animation: none;
    background-position: 50% 50%;
  }

  .feature-item,
  .feature-more summary::after {
    transition: none;
  }
}

.site-footer {
  padding: 30px 0;
  background: #0e1726;
  color: #cbd5e1;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .order,
  .cta-grid { grid-template-columns: 1fr; }
  .panel { max-width: 620px; }
  .grid-4,
  .strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-summary {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .feature-summary p,
  .feature-summary-actions {
    grid-column: 1 / -1;
  }
  .feature-summary-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header { position: relative; }
  .nav { align-items: stretch; flex-direction: column; padding: 10px 0; gap: 10px; }
  .brand { min-width: 0; align-self: flex-start; }
  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    white-space: normal;
  }
  .nav-links a {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    text-align: center;
  }
  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .grid-3 { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .feature-summary {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .feature-summary p,
  .feature-summary-actions {
    grid-column: 1 / -1;
  }
  .feature-summary-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-head { display: block; }
  .section-head p { margin-top: 10px; }
}

@media (max-width: 720px) {
  .feature-item {
    grid-template-columns: 1fr;
  }

  .feature-meta {
    justify-items: start;
    text-align: left;
    padding-left: 34px;
  }

  .feature-meta a {
    min-height: 44px;
    justify-content: flex-start;
  }

  .feature-more summary {
    min-height: 50px;
    align-items: center;
  }

  .feature-summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-summary p,
  .feature-summary-actions {
    grid-column: auto;
  }

  .feature-summary-actions {
    grid-template-columns: 1fr;
  }

  #calc-total {
    font-size: 20px;
  }

  .function-table-wrap {
    overflow: visible;
    padding: 0;
  }

  .function-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

  .function-table thead {
    display: none;
  }

  .function-table,
  .function-table tbody,
  .function-table tr,
  .function-table td {
    display: block;
    width: 100%;
  }

  .function-table tr {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px 10px;
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .function-table tr:last-child {
    border-bottom: 0;
  }

  .function-table td {
    min-width: 0;
    padding: 0;
    border-bottom: 0;
  }

  .function-table td:first-child {
    grid-row: 1 / span 4;
    width: auto;
    text-align: left;
  }

  .function-table input {
    width: 24px;
    height: 24px;
    margin-top: 2px;
  }

  .function-table td:not(:first-child) {
    grid-column: 2;
  }

  .function-table td:nth-child(2) {
    color: var(--ink);
    font-size: 16px;
  }

  .function-table td:nth-child(3),
  .function-table td:nth-child(5) {
    color: var(--muted);
    font-size: 14px;
  }

  .function-table td:nth-child(5) a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .function-table td:nth-child(4) {
    width: auto;
    color: var(--ink);
    font-weight: 900;
  }

  .function-table td:nth-child(4)::before,
  .function-table td:nth-child(5)::before {
    display: inline;
    margin-right: 4px;
    color: var(--muted);
    font-weight: 700;
  }

  .function-table td:nth-child(4)::before { content: "Цена:"; }
  .function-table td:nth-child(5)::before { content: "Действие:"; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 24px, 1180px); }
  .hero { padding: 38px 0 30px; }
  h1 { font-size: 38px; line-height: 1.04; }
  h2 { font-size: 28px; }
  h3 { font-size: 19px; }
  .lead { font-size: 18px; }
  .section { padding: 44px 0; }
  .section-head { margin-bottom: 20px; }
  .btn { width: 100%; min-width: 0; padding: 0 14px; }
  .actions,
  .nav-actions { align-items: stretch; }
  .nav-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof,
  .grid-4,
  .strip,
  .order-form { grid-template-columns: 1fr; }
  .card,
  .panel,
  .order-form,
  .feature-item,
  .feature-summary { padding: 16px; }
  .price-card { gap: 12px; }
  .order-form label:has(input[type="checkbox"]) {
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    line-height: 1.35;
  }
  .panel-row { display: grid; grid-template-columns: 1fr; gap: 4px; }
  .panel-row b { text-align: left; }
  .footer-grid { display: block; }
  .footer-links { margin-top: 14px; }
}

@media (max-width: 420px) {
  .wrap { width: min(100% - 20px, 1180px); }
  .brand img { width: 126px; }
  .nav-links,
  .nav-actions { grid-template-columns: 1fr; }
  .nav-links a { min-height: 38px; }
  .hero { padding-top: 32px; }
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  .lead { font-size: 17px; }
  .actions { gap: 8px; }
  .proof-item { padding: 12px; }
  .proof-item strong { font-size: 16px; }
  .price small { display: block; margin-top: 4px; }
  .function-table tr {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 12px;
  }
  .feature-check {
    grid-template-columns: 24px minmax(0, 1fr);
  }
  .feature-more summary {
    padding: 0 14px;
  }
  #calc-total {
    min-height: 44px;
  }
  .feature-list-full {
    padding: 12px;
  }
  .step { grid-template-columns: 30px 1fr; }
  .step b { width: 30px; height: 30px; }
}

@media (max-width: 374px) {
  .wrap { width: min(100% - 18px, 1180px); }
  .nav { gap: 8px; }
  .brand img { width: 118px; }
  h1 { font-size: 30px; }
  h2 { font-size: 23px; }
  .lead { font-size: 16px; }
  .btn { min-height: 44px; font-size: 13px; }
  .card,
  .panel,
  .order-form,
  .feature-item,
  .feature-summary { padding: 14px; }
  .feature-meta { padding-left: 0; }
}
