

/* Start:/assets/css/styles.css?178117014718937*/
:root {
  --bg: #f7f4ed;
  --bg-2: #fffaf0;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --text: #17130b;
  --muted: #6f6656;
  --line: rgba(23, 19, 11, 0.14);
  --gold: #f2b51d;
  --gold-2: #ffd45a;
  --gold-dark: #9b6b00;
  --shadow: 0 28px 80px rgba(72, 48, 0, 0.12);
}

html[data-theme="dark"] {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --surface: rgba(18, 18, 18, 0.84);
  --surface-solid: #111111;
  --text: #fff7df;
  --muted: #b9ae98;
  --line: rgba(255, 212, 90, 0.18);
  --gold: #f6bd26;
  --gold-2: #ffd760;
  --gold-dark: #b98507;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 78% 8%, rgba(246, 189, 38, 0.18), transparent 30%),
    var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.page {
  min-height: 100vh;
  overflow: hidden;
}

.header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--gold);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.logo-mark::after {
  position: absolute;
  bottom: 9px;
  width: 31px;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

.logo strong,
.logo small {
  display: block;
}

.logo strong {
  letter-spacing: 0.22em;
}

.logo small {
  margin-top: 3px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 32px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--gold-dark);
  border-radius: 16px;
  background: transparent;
  color: var(--text);
  padding: 0 14px;
  cursor: pointer;
  font-weight: 700;
}

.theme-toggle:hover {
  background: rgba(246, 189, 38, 0.12);
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 18px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #161006;
  box-shadow: 0 14px 30px rgba(246, 189, 38, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-light {
  border: 1px solid var(--gold-dark);
  background: transparent;
  color: var(--text);
}

.btn-light:hover {
  background: rgba(246, 189, 38, 0.12);
  color: var(--gold);
}

.btn-dark {
  background: #050505;
  color: #fff7df;
}

html[data-theme="light"] .btn-dark {
  background: #17130b;
  color: #fff7df;
}

.btn-dark:hover {
  background: #2b2110;
}

.btn-outline {
  border: 1px solid var(--gold-dark);
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(246, 189, 38, 0.12);
  color: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 104px;
}

.hero::before {
  position: absolute;
  inset: -150px -180px auto auto;
  width: 540px;
  height: 540px;
  content: "";
  border-radius: 999px;
  background: rgba(246, 189, 38, 0.16);
  filter: blur(74px);
}

.badge,
.modal-label,
.section-title span {
  display: inline-flex;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 900;
}

.badge {
  margin-bottom: 24px;
  padding: 10px 16px;
  border: 1px solid rgba(246, 189, 38, 0.35);
  border-radius: 999px;
  background: rgba(246, 189, 38, 0.1);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 600;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 560px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
}

.stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 28px;
}

.calc-card,
.login-card,
.cabinet-info {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--surface);
  padding: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.card-head span {
  color: var(--muted);
  font-size: 14px;
}

.card-head h2 {
  margin: 4px 0 0;
  font-size: 24px;
}

.card-head b {
  border-radius: 999px;
  background: rgba(246, 189, 38, 0.14);
  color: var(--gold);
  padding: 7px 12px;
  font-size: 13px;
}

.air-row {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface-solid) 72%, transparent);
  padding: 16px;
}

.air-row div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
}

.air-row b {
  color: var(--gold);
}

.air-row::after {
  display: block;
  width: 100%;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: rgba(128, 128, 128, 0.18);
}

.air-row i {
  position: relative;
  z-index: 1;
  display: block;
  height: 8px;
  margin-bottom: -8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.total {
  margin-top: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #161006;
  padding: 22px;
}

.total span,
.total strong {
  display: block;
}

.total strong {
  margin-top: 8px;
  font-size: 40px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 24px;
}

.section-title {
  max-width: 760px;
}

.section-title h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-title p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.features-grid article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  padding: 26px;
  box-shadow: var(--shadow);
}

.features-grid article div,
.icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(246, 189, 38, 0.12);
  font-size: 24px;
}

.features-grid h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.features-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.tariffs {
  background: var(--bg-2);
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tariffs-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 24px;
}

.section-title.dark span {
  color: var(--gold);
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.tariff-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--surface-solid);
  padding: 30px;
  box-shadow: var(--shadow);
}

.tariff-card.highlighted {
  border-color: var(--gold);
  background: #070707;
  color: #fff7df;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

html[data-theme="light"] .tariff-card.highlighted {
  background: #17130b;
}

.tariff-card em {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #161006;
  padding: 7px 12px;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.tariff-card h3 {
  margin-bottom: 14px;
  font-size: 28px;
}

.tariff-card p {
  min-height: 74px;
  color: var(--muted);
  line-height: 1.65;
}

.tariff-card.highlighted p {
  color: #cfc4ac;
}

.tariff-card strong {
  display: block;
  margin: 28px 0;
  color: var(--gold);
  font-size: 38px;
  line-height: 1;
}

.tariff-card .btn {
  width: 100%;
}

.tariff-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tariff-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold);
  font-weight: 900;
}

.cabinet {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 24px;
}

.login-card h2,
.cabinet-info h3 {
  font-size: 34px;
  line-height: 1.1;
}

.login-card p {
  color: var(--muted);
  line-height: 1.7;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

input,
select {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: 0;
  background: color-mix(in srgb, var(--surface-solid) 84%, transparent);
  color: var(--text);
  padding: 0 16px;
}

/* Кнопки-инпуты не должны растягиваться на всю ширину как текстовые поля. */
input[type="submit"],
input[type="button"],
input[type="reset"] {
  width: auto;
  height: auto;
}

input:focus,
select:focus {
  border-color: var(--gold);
}

/* Кнопки в подвале формы (Сохранить / Применить / Отмена) — в одну линию. */
.form tfoot td {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-links {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.form-links a:hover {
  color: var(--gold);
}

.cabinet-info {
  background:
    radial-gradient(circle at 12% 0%, rgba(246, 189, 38, 0.14), transparent 35%),
    var(--surface);
}

.cabinet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.cabinet-grid span {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-solid) 72%, transparent);
  padding: 16px;
  color: var(--text);
}

.demo-box {
  margin-top: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #161006;
  padding: 22px;
}

.demo-box p {
  margin: 8px 0 0;
  color: #3c2a05;
  line-height: 1.65;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 34px 24px;
  text-align: center;
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.modal-window {
  position: relative;
  width: min(100%, 460px);
  border: 1px solid var(--gold-dark);
  border-radius: 34px;
  background: var(--surface-solid);
  padding: 32px;
  box-shadow: var(--shadow);
}

.modal-logo {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-bottom: 22px;
}

.modal-logo strong {
  letter-spacing: 0.22em;
}

.modal-logo small {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal-window h2 {
  margin: 10px 0 12px;
  font-size: 30px;
}

.modal-window p {
  color: var(--muted);
  line-height: 1.65;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(246, 189, 38, 0.12);
  color: var(--gold);
}

/* Cabinet */
.cabinet-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

.dashboard-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--bg-2);
  color: var(--text);
  padding: 28px;
  border-right: 1px solid var(--line);
}

.dashboard-logo {
  align-items: flex-start;
}

.dashboard-nav {
  display: grid;
  gap: 10px;
}

.dashboard-nav a {
  border-radius: 16px;
  color: var(--muted);
  padding: 14px 16px;
  transition: 0.2s ease;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
  background: rgba(246, 189, 38, 0.12);
  color: var(--gold);
}

.theme-toggle.wide,
.dashboard-exit {
  width: 100%;
}

.tariff-mini-card {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  padding: 20px;
}

.tariff-mini-card span,
.dashboard-summary span,
.dashboard-section span,
.profile-card span,
.subscription-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tariff-mini-card strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.tariff-mini-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.dashboard-main {
  min-width: 0;
  padding: 34px;
}

.dashboard-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 28px;
  max-width: 1180px;
}

.dashboard-topbar h1 {
  margin: 8px 0 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 56px);
}

.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.dashboard-summary article,
.dashboard-section,
.profile-card,
.subscription-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-solid);
  padding: 26px;
  box-shadow: var(--shadow);
}

.dashboard-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 40px;
  line-height: 1;
}

.dashboard-summary p {
  margin: 12px 0 0;
  color: var(--muted);
}

.dashboard-summary .paid-card {
  background: #070707;
  color: #fff7df;
}

html[data-theme="light"] .dashboard-summary .paid-card {
  background: #17130b;
}

.dashboard-section {
  max-width: 1180px;
  margin: 0 auto 28px;
}

.dashboard-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.dashboard-section h2 {
  margin: 8px 0 0;
  font-size: 32px;
  letter-spacing: -0.03em;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  padding: 20px;
}

.project-card h3 {
  margin: 0;
  font-size: 21px;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.project-status {
  align-self: flex-start;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
}

.project-status.green { background: rgba(34,197,94,.14); color: #22c55e; }
.project-status.yellow { background: rgba(246,189,38,.14); color: var(--gold); }
.project-status.blue { background: rgba(59,130,246,.14); color: #60a5fa; }

.project-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.create-project {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.create-project p {
  color: var(--muted);
  line-height: 1.7;
}

.dashboard-form {
  margin-top: 0;
}

.dashboard-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.archive-search {
  max-width: 280px;
}

.profile-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.profile-card h2,
.subscription-card h2 {
  margin: 8px 0;
  font-size: 32px;
}

.profile-card p,
.subscription-card p {
  color: var(--muted);
}

.profile-card dl {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.profile-card dl div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.profile-card dt {
  color: var(--muted);
  font-size: 13px;
}

.profile-card dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.progress {
  overflow: hidden;
  height: 12px;
  margin: 24px 0 10px;
  border-radius: 999px;
  background: rgba(128,128,128,.18);
}

.progress i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.subscription-card small {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
}

.archive-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.archive-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 16px 18px;
  color: var(--muted);
}

.archive-row:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.archive-head {
  background: rgba(246, 189, 38, 0.08);
  color: var(--text);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .hide-mobile{
	display: none;
  }

  .cabinet-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: relative;
    height: auto;
  }

  .dashboard-main {
    padding: 22px;
  }

  .dashboard-summary,
  .projects-grid,
  .create-project,
  .profile-section,
  .hero,
  .cabinet,
  .tariff-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    display: none;
  }
}

@media (max-width: 620px) {
  .header {
    gap: 16px;
    padding: 18px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .logo small {
    display: none;
  }

  .hero,
  .section,
  .tariffs-inner,
  .cabinet {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 30px;
  }

  .stats,
  .features-grid,
  .cabinet-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .calc-card,
  .login-card,
  .cabinet-info,
  .modal-window {
    padding: 22px;
    border-radius: 26px;
  }

  .dashboard-topbar,
  .dashboard-section-head {
    flex-direction: column;
    align-items: stretch;
  }

  .archive-row {
    grid-template-columns: 1fr;
  }

  .dashboard-main {
    padding: 16px;
  }
}

/* End */


/* Start:/assets/css/custom.css?1781183310957*/
html {
  scroll-behavior: smooth;
}

.btn-margin{
	margin: 10px;
}

.logo-img{
	max-width: 200px;
}

.scroll-top-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
	border-radius: 50%;
	font-size: 24px;
	text-decoration: none;
	transition: background-color 0.3s, transform 0.2s;
	border: 1px solid var(--gold-dark);
	background: transparent;
	opacity: 0;
	visibility: hidden;
}

.scroll-top-btn:hover {
	background-color: var(--gold-dark);
	transform: translateY(-2px);
	color: #FFF;
}

.scroll-top-btn.show {
	opacity: 1;
	visibility: visible;
}

.dark .scroll-top-btn {
	color: var(--text);
}

.projects-nav{
	margin: 30px 0 0;
}
.project-delete-btn-wrapper{
	text-align: center;
}
.project-delete-btn{
	align-self: flex-start;
	color: #ff0000;
}
.project-actions{
	margin: 0 0 30px;
}
/* End */
/* /assets/css/styles.css?178117014718937 */
/* /assets/css/custom.css?1781183310957 */
