@font-face {
  font-family: "Exo2";
  src: url("static/fonts/exo2-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: optional;
}

@font-face {
  font-family: "Exo2";
  src: url("static/fonts/exo2-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: optional;
}

:root {
  --dep-bg: #eef2f8;
  --dep-surface: #ffffff;
  --dep-surface-soft: #f5f8fc;
  --dep-primary: #f8951d;
  --dep-primary-strong: #e27f07;
  --dep-secondary: #0f4d7a;
  --dep-secondary-strong: #0b3d64;
  --dep-text: #0f2435;
  --dep-muted: #5f7284;
  --dep-border: #d9e2eb;
  --dep-success: #1ba53f;
  --dep-shadow: 0 18px 34px rgba(12, 27, 45, 0.1);
  --dep-shadow-soft: 0 10px 24px rgba(12, 27, 45, 0.08);
  --dep-gap: clamp(16px, 2vw, 24px);
  --dep-radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 15% -20%, #ffffff 0, #f4f8fd 45%, #edf3f8 100%);
  color: var(--dep-text);
  font-family: "Exo2", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.5;
}

a {
  color: var(--dep-secondary);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.dep-page {
  min-height: 100vh;
  display: block;
}

.dep-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 286px;
  background: linear-gradient(180deg, #0f4d7a 0, #0d3f66 62%, #0b3454 100%);
  color: #ffffff;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 30;
}

.dep-logo-wrap {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.dep-logo-wrap img {
  width: 100%;
  max-width: 210px;
  height: auto;
  object-fit: contain;
}

.dep-sidebar-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.dep-btn,
.dep-cta-btn,
.dep-mini-btn,
.dep-banner-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  min-height: 50px;
  min-width: 210px;
  padding: 0 22px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.dep-btn:focus-visible,
.dep-cta-btn:focus-visible,
.dep-mini-btn:focus-visible,
.dep-banner-action:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.dep-btn-primary,
.dep-banner-action {
  background: linear-gradient(180deg, var(--dep-primary) 0, var(--dep-primary-strong) 100%);
  color: #ffffff;
  box-shadow: 0 9px 20px rgba(242, 143, 26, 0.36);
}

.dep-btn-secondary {
  background: #ffffff;
  color: var(--dep-secondary);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.dep-btn-primary:hover,
.dep-btn-secondary:hover,
.dep-banner-action:hover,
.dep-mini-btn:hover,
.dep-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.dep-btn-primary:active,
.dep-btn-secondary:active,
.dep-banner-action:active,
.dep-mini-btn:active,
.dep-cta-btn:active {
  transform: translateY(0);
}

.dep-sidebar-nav,
.de-sidebar-nav {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding-right: 3px;
}

.dep-sidebar-nav a,
.de-sidebar-nav a {
  display: block;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 11px;
  padding: 10px 12px;
  font-size: 0.95rem;
  line-height: 1.28;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.dep-sidebar-nav a:hover,
.dep-sidebar-nav a:focus-visible,
.de-sidebar-nav a:hover,
.de-sidebar-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  text-decoration: none;
}

.dep-sidebar-note {
  margin-top: auto;
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.82);
}

.dep-content-wrap {
  margin-left: 286px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dep-main {
  --dep-gap-local: var(--dep-gap);
  padding: var(--dep-gap-local);
  padding-bottom: var(--dep-gap-local);
}

.dep-main > section {
  margin: 0 0 var(--dep-gap-local);
}

.dep-main > section:last-child {
  margin-bottom: 0;
}

.dep-card {
  background: var(--dep-surface);
  border: 1px solid var(--dep-border);
  border-radius: var(--dep-radius);
  box-shadow: var(--dep-shadow-soft);
  padding: clamp(16px, 2vw, 24px);
}

.dep-card > :first-child {
  margin-top: 0;
}

.dep-card > :last-child {
  margin-bottom: 0;
}

.dep-hero {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: clamp(270px, 40vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--dep-shadow);
}

.dep-hero picture,
.dep-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dep-hero-overlay {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 24px));
  background: rgba(9, 31, 50, 0.72);
  color: #ffffff;
  border-radius: 18px;
  padding: 20px 22px 24px;
  text-align: center;
  display: grid;
  gap: 14px;
}

.dep-hero-overlay h1 {
  margin: 0;
  font-size: clamp(1.34rem, 2.8vw, 2.1rem);
  line-height: 1.24;
}

.dep-hero-overlay p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.dep-nav-accordion {
  border-radius: 14px;
  overflow: hidden;
}

.dep-nav-trigger {
  width: 100%;
  min-height: 52px;
  border: 0;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--dep-secondary);
  color: #ffffff;
  font: inherit;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.dep-nav-trigger::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
}

.dep-nav-accordion[data-open="true"] .dep-nav-trigger::after {
  content: "−";
}

.dep-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

.dep-nav-accordion[data-open="true"] .dep-nav-list {
  max-height: 640px;
  opacity: 1;
  margin-top: 10px;
}

.dep-nav-list a {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--dep-secondary);
  background: #f1f6fb;
  margin-bottom: 7px;
}

.dep-slots-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.dep-slot-card {
  position: relative;
  border: 0;
  border-radius: 14px;
  background: #f6f9fd;
  box-shadow: 0 10px 22px rgba(10, 29, 48, 0.18);
  overflow: hidden;
  padding: 0;
}

.dep-slot-card[data-active="true"] {
  box-shadow: 0 14px 28px rgba(10, 29, 48, 0.27);
}

.dep-slot-media {
  margin: 0;
  width: 100%;
  aspect-ratio: 216 / 290;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3fa;
}

.dep-slot-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.dep-slot-reveal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: rgba(9, 31, 50, 0.68);
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(2px);
}

.dep-slot-card[data-active="true"] .dep-slot-reveal {
  opacity: 0;
  pointer-events: none;
}

.dep-slot-actions {
  position: absolute;
  inset: auto 8px 8px;
  display: grid;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dep-slot-card[data-active="true"] .dep-slot-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dep-mini-btn {
  min-width: 0;
  min-height: 38px;
  width: 100%;
  border-radius: 10px;
  font-size: 0.88rem;
  padding: 0 10px;
}

.dep-mini-btn.dep-btn-primary {
  box-shadow: 0 8px 14px rgba(242, 143, 26, 0.42);
}

.dep-mini-btn.dep-btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dep-secondary);
}

.dep-table-wrap {
  overflow-x: auto;
}

.dep-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
  font-size: 0.95rem;
}

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

.dep-table th {
  width: 36%;
  color: var(--dep-secondary);
  font-weight: 600;
}

.dep-table tr:last-child th,
.dep-table tr:last-child td {
  border-bottom: 0;
}

.dep-two-col {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dep-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.dep-list li {
  margin-bottom: 7px;
}

.dep-steps {
  margin: 12px 0 0;
  padding-left: 22px;
}

.dep-steps li {
  margin-bottom: 9px;
}

.dep-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: clamp(230px, 35vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--dep-shadow);
}

.dep-banner picture,
.dep-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dep-banner-card {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 24px));
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  padding: 18px 20px 20px;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.dep-banner-card h3,
.dep-banner-card p {
  margin: 0;
}

.dep-banner-card p {
  color: #1a3750;
}

.dep-banner-card .dep-banner-action {
  min-width: 220px;
}

.dep-review-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.dep-review-arrow {
  width: 32px;
  min-width: 32px;
  height: 66px;
  min-height: 66px;
  border: 0;
  border-radius: 12px;
  background: var(--dep-secondary);
  color: #ffffff;
  font-size: 1.15rem;
  cursor: pointer;
  align-self: center;
  display: grid;
  place-items: center;
}

.dep-review-view {
  overflow: hidden;
  min-width: 0;
}

.dep-review-track {
  display: flex;
  transition: transform 0.3s ease;
}

.dep-review-card {
  min-width: 100%;
  max-width: 100%;
  background: #f6f9fd;
  border: 1px solid #dce4ed;
  border-radius: 14px;
  padding: 16px;
  overflow-wrap: anywhere;
}

.dep-review-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.dep-review-name {
  font-weight: 600;
}

.dep-review-meta {
  font-size: 0.88rem;
  color: var(--dep-muted);
}

.dep-review-rating {
  color: #ef8d15;
  font-weight: 600;
}

.dep-calc-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dep-field {
  display: grid;
  gap: 6px;
}

.dep-field label {
  font-weight: 600;
  color: var(--dep-secondary);
}

.dep-field input {
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid #cdd9e6;
  padding: 8px 12px;
  font: inherit;
}

#pro-bonus-calculator .dep-calc-result {
  margin-top: clamp(16px, 2vw, 24px);
  border: 1px solid #c9d8e7;
  background: #f0f7ff;
  border-radius: 12px;
  padding: 14px 16px;
  color: #0d3556;
}

.dep-pros-cons {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dep-pros-cons article {
  border: 1px solid var(--dep-border);
  background: #f8fbff;
  border-radius: 14px;
  padding: 14px;
}

.dep-mobile-block {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.dep-mobile-shot {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--dep-border);
  background: #f7fafc;
}

.dep-mobile-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.dep-faq details {
  border: 1px solid var(--dep-border);
  border-radius: 12px;
  background: #f9fcff;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.dep-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--dep-secondary);
}

.dep-faq p {
  margin: 10px 0 0;
}

.dep-page-footer {
  margin-top: 0;
  background: #0d3556;
  color: #f1f6fb;
  padding: 16px var(--dep-gap);
}

.dep-page-footer p {
  margin: 0 0 10px;
}

.dep-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.dep-footer-links a {
  color: #ffffff;
}

.dep-floating-banner {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%) translateY(140%);
  width: min(940px, calc(100vw - 18px));
  background: linear-gradient(135deg, #114b79 0, #0b2f4a 100%);
  color: #ffffff;
  border-radius: 14px;
  padding: 10px 12px;
  display: none;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
  z-index: 60;
  transition: transform 0.25s ease;
}

.dep-floating-banner.dep-visible {
  display: grid;
  transform: translateX(-50%) translateY(0);
}

.dep-floating-text {
  margin: 0;
  font-size: 0.95rem;
}

.dep-floating-close {
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
}

.dep-demo-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(5, 18, 33, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 70;
  transition: opacity 0.2s ease;
}

.dep-demo-modal.dep-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dep-demo-dialog {
  width: min(980px, calc(100vw - 24px));
  max-height: calc(100vh - 28px);
  border-radius: 16px;
  background: #ffffff;
  padding: 10px;
  display: grid;
  gap: 10px;
}

.dep-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dep-demo-close {
  width: 40px;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  font-size: 1.4rem;
  background: #edf3fa;
  color: #0c3b60;
  cursor: pointer;
}

.dep-demo-frame-wrap {
  border: 1px solid #d6e1ed;
  border-radius: 12px;
  overflow: hidden;
  height: min(66vh, 560px);
  background: #f4f8fc;
}

.dep-demo-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.dep-service-main {
  padding: var(--dep-gap);
  padding-bottom: var(--dep-gap);
}

.dep-service-main > section {
  margin-bottom: var(--dep-gap);
}

.dep-service-main > section:last-child {
  margin-bottom: 0;
}

.dep-contact-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.dep-contact-form input,
.dep-contact-form textarea {
  width: 100%;
  border: 1px solid #ccdae8;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.dep-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.dep-form-note {
  font-size: 0.9rem;
  color: #2f597a;
}

.dep-form-status {
  min-height: 22px;
  font-size: 0.9rem;
  color: #12663f;
}

:where(main, [data-main-content], [role="main"], .cp-main, .rb-main)
  :is(
    table,
    [class*="table"],
    [class*="grid"],
    [class*="review"],
    [class*="banner"],
    [data-review-slider],
    [data-cta-banner],
    [class*="slot"]:not([data-slot-card]):not([class*="slot-card"]):not([class*="slot__card"])
  )
  + :is(p, ul, ol, div, section, article) {
  margin-top: clamp(16px, 2vw, 24px);
}

@media (max-width: 1180px) {
  .dep-sidebar {
    width: 250px;
  }

  .dep-content-wrap {
    margin-left: 250px;
  }

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

@media (max-width: 1023px) {
  .dep-sidebar {
    position: sticky;
    top: 0;
    width: 100%;
    inset: auto;
    padding: 12px;
    border-bottom: 4px solid var(--dep-primary);
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .dep-logo-wrap {
    width: min(340px, 92vw);
    max-width: 100%;
    flex-shrink: 0;
    padding: 10px;
    margin: 0 auto;
  }

  .dep-sidebar-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(520px, 92vw);
    gap: 8px;
  }

  .dep-sidebar-cta .dep-btn {
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .dep-sidebar-nav,
  .de-sidebar-nav,
  .dep-sidebar-note {
    display: none;
  }

  .dep-content-wrap {
    margin-left: 0;
  }

  .dep-main {
    padding-top: var(--dep-gap);
  }

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

  .dep-two-col,
  .dep-pros-cons,
  .dep-mobile-block,
  .dep-calc-grid {
    grid-template-columns: 1fr;
  }

  .dep-table th,
  .dep-table td {
    width: auto;
    padding: 9px 8px;
    font-size: 0.93rem;
    word-break: break-word;
  }

  .dep-table {
    font-size: 0.88rem;
  }

  .dep-floating-banner {
    grid-template-columns: 1fr;
    width: calc(100vw - 12px);
    left: 6px;
    right: 6px;
    transform: translateY(140%);
    bottom: 6px;
    padding: 12px 10px 10px;
  }

  .dep-floating-banner.dep-visible {
    transform: translateY(0);
  }

  .dep-floating-text {
    padding-right: 42px;
  }

  .dep-floating-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 34px;
    min-width: 34px;
    min-height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    padding: 0;
    margin: 0;
    line-height: 1;
  }

  .dep-banner,
  .dep-hero {
    min-height: 300px;
  }

  .dep-banner-card,
  .dep-hero-overlay {
    width: calc(100% - 16px);
    padding: 16px;
  }

  .dep-review-shell {
    grid-template-columns: 28px 1fr 28px;
    gap: 7px;
  }

  .dep-review-arrow {
    width: 28px;
    min-width: 28px;
    height: 62px;
    min-height: 62px;
    border-radius: 9px;
  }
}

@media (max-width: 720px) {
  .dep-demo-dialog {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    padding: 10px;
  }

  .dep-demo-frame-wrap {
    height: calc(100vh - 130px);
    border-radius: 10px;
  }

  .dep-main,
  .dep-service-main {
    padding: 14px;
    padding-bottom: 14px;
  }

  .dep-page-footer {
    padding: 14px;
  }
}
