:root {
  --bg: #19222d;
  --bg-soft: #1e2b38;
  --bg-elevated: #23394e;
  --surface: rgba(35, 57, 78, 0.72);
  --surface-strong: #223649;
  --text: #e6eaf0;
  --muted: #9fb2c4;
  --primary: #ffaa4f;
  --primary-soft: #ffcb8a;
  --primary-shadow: rgba(255, 170, 79, 0.34);
  --border: rgba(230, 234, 240, 0.16);
  --danger: #cf5d57;
  --ok: #56c08a;
  --radius: 18px;
  --shadow-lg: 0 20px 48px rgba(10, 16, 24, 0.46);
  --shadow-sm: 0 8px 24px rgba(10, 16, 24, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 86% 4%, rgba(255, 170, 79, 0.19) 0%, rgba(255, 170, 79, 0) 40%),
    radial-gradient(circle at 12% 26%, rgba(68, 113, 152, 0.25) 0%, rgba(68, 113, 152, 0) 42%),
    linear-gradient(170deg, #141c26 0%, #19222d 48%, #18212b 100%);
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(20, 28, 38, 0.8);
  border-bottom: 1px solid rgba(230, 234, 240, 0.08);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo-image {
  display: block;
  width: auto;
  height: 42px;
  max-width: min(280px, 62vw);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 13px;
}

.main-nav a {
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.mobile-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(230, 234, 240, 0.02);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 11px 16px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #131a22;
  box-shadow: 0 12px 24px var(--primary-shadow);
}

.btn-primary:hover {
  background: #ffb869;
}

.btn-outline {
  border-color: rgba(255, 170, 79, 0.56);
  color: var(--primary-soft);
  background: rgba(255, 170, 79, 0.05);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 170, 79, 0.09);
}

.btn-nav {
  background: rgba(255, 170, 79, 0.13);
  border: 1px solid rgba(255, 170, 79, 0.46);
  color: var(--primary-soft);
  margin-left: 6px;
}

.btn-nav:hover {
  background: rgba(255, 170, 79, 0.2);
}

.btn-small {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 82px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-soft);
  background: rgba(255, 170, 79, 0.12);
  border: 1px solid rgba(255, 170, 79, 0.25);
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin: 12px 0 12px;
  line-height: 1.1;
}

.lead {
  color: #ccdae7;
  max-width: 760px;
  font-size: 1.06rem;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-card {
  background: linear-gradient(165deg, rgba(35, 57, 78, 0.95) 0%, rgba(27, 43, 58, 0.94) 100%);
  border: 1px solid rgba(255, 170, 79, 0.25);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: -44px;
  right: -28px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at center, rgba(255, 170, 79, 0.25), rgba(255, 170, 79, 0));
  pointer-events: none;
}

.hero-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(25, 34, 45, 0.58) 0%, rgba(35, 57, 78, 0.34) 100%);
  border-top: 1px solid rgba(230, 234, 240, 0.06);
  border-bottom: 1px solid rgba(230, 234, 240, 0.06);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.card h3,
.feature h3,
.steps h3,
.news-card h2,
.news-card h3 {
  color: #f2f5f9;
}

.card p,
.feature p,
.steps p {
  color: #bfd0de;
}

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

.feature {
  background: rgba(31, 50, 68, 0.82);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.admin-modules {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-modules span {
  border: 1px solid rgba(255, 170, 79, 0.34);
  background: rgba(255, 170, 79, 0.1);
  color: #ffce94;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.92rem;
}

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

.economy-highlight {
  margin-top: 16px;
  background: linear-gradient(165deg, rgba(255, 170, 79, 0.14) 0%, rgba(35, 57, 78, 0.84) 100%);
  border: 1px solid rgba(255, 170, 79, 0.35);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.economy-highlight h3 {
  margin-bottom: 8px;
}

.economy-highlight p {
  margin: 0;
  color: #d8e5f1;
}

.economy-highlight ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #f2f6fb;
}

.economy-highlight li + li {
  margin-top: 6px;
}

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

.steps article {
  background: rgba(27, 43, 58, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.steps span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1b1f25;
  background: var(--primary);
}

.pricing-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.plan-card {
  position: relative;
  background: rgba(30, 47, 64, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.plan-card-recommended {
  border-color: rgba(255, 170, 79, 0.58);
  box-shadow: 0 16px 34px rgba(255, 170, 79, 0.16);
}

.plan-badge {
  position: absolute;
  right: 16px;
  top: 14px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #1b1f25;
  background: var(--primary);
}

.plan-price {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 3.1vw, 2.2rem);
  line-height: 1.1;
  font-family: "Space Grotesk", sans-serif;
  color: #f4f8fd;
}

.plan-price span {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: var(--muted);
}

.plan-subprice {
  margin: 6px 0 0;
  color: #d5e3ef;
  font-weight: 700;
}

.plan-volume {
  margin: 2px 0 0;
  color: var(--primary-soft);
  font-size: 0.95rem;
}

.plan-benefits {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #c7d7e4;
}

.plan-benefits li + li {
  margin-top: 5px;
}

.plan-cta-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plan-security-note {
  margin-top: 18px;
  border: 1px solid rgba(255, 170, 79, 0.25);
  background: rgba(255, 170, 79, 0.08);
  border-radius: 14px;
  padding: 16px;
}

.plan-security-note h3 {
  margin-bottom: 8px;
}

.plan-security-note p {
  margin: 0;
  color: #c7d7e4;
}

.roi-calculator {
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(25, 39, 54, 0.85);
  box-shadow: var(--shadow-sm);
}

.roi-form {
  margin-top: 10px;
}

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

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

.roi-field label,
.roi-field legend {
  font-weight: 700;
  color: #e8eff6;
}

.roi-field input[type="number"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  background: rgba(20, 28, 38, 0.72);
  color: var(--text);
}

.roi-field input[type="number"]:focus {
  outline: 2px solid rgba(255, 170, 79, 0.38);
  outline-offset: 1px;
  border-color: rgba(255, 170, 79, 0.58);
}

.roi-field input[aria-invalid="true"] {
  border-color: rgba(207, 93, 87, 0.8);
}

.roi-toggle-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.roi-toggle-options {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.roi-toggle-options label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 170, 79, 0.34);
  background: rgba(255, 170, 79, 0.09);
  color: #ffd8a8;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.roi-toggle-options input {
  margin: 0;
}

.roi-error {
  min-height: 1.1rem;
  margin: 0;
  color: #ffb1a9;
  font-size: 0.9rem;
}

.roi-warning {
  min-height: 1.2rem;
  margin: 10px 0 0;
  color: #ffd59f;
  font-size: 0.94rem;
}

.roi-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.roi-result {
  margin-top: 16px;
  border: 1px solid rgba(255, 170, 79, 0.25);
  border-radius: 14px;
  background: rgba(255, 170, 79, 0.08);
  padding: 16px;
}

.roi-breakdown-grid {
  margin-top: 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roi-breakdown-card {
  border: 1px solid rgba(230, 234, 240, 0.16);
  border-radius: 12px;
  padding: 12px;
  background: rgba(21, 31, 42, 0.6);
}

.roi-breakdown-card h4 {
  margin: 0;
  font-size: 1.02rem;
}

.roi-breakdown-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #d5e2ed;
}

.roi-total-line {
  font-weight: 800;
  color: #f5f8fc;
}

.roi-metrics-grid {
  margin-top: 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.roi-result-card {
  border: 1px solid rgba(230, 234, 240, 0.16);
  border-radius: 12px;
  padding: 12px;
  background: rgba(21, 31, 42, 0.6);
}

.roi-result-card span {
  display: block;
  color: #bfd0de;
  font-size: 0.92rem;
}

.roi-result-card strong {
  display: block;
  margin-top: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  color: #f4f8fd;
}

.roi-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 9px;
  background: var(--primary);
  color: #1b1f25;
  font-size: 0.77rem;
  font-weight: 800;
  margin-top: 8px;
}

.roi-plan-card p {
  margin: 0;
}

.roi-summary-message {
  margin: 12px 0 0;
  color: #d7e5f1;
}

#roi-consult-cta {
  margin-top: 10px;
}

.roi-disclaimer {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

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

.news-card {
  background: rgba(28, 44, 60, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.news-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.news-card > div {
  padding: 16px;
}

.news-card small {
  color: var(--muted);
}

.news-card h2,
.news-card h3 {
  margin: 8px 0;
  font-size: 1.12rem;
}

.news-card p {
  margin: 0;
  color: #bfd0de;
}

.text-link {
  color: var(--primary-soft);
  font-weight: 700;
}

.faq-list details {
  background: rgba(31, 49, 66, 0.88);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}

.faq-list details + details {
  margin-top: 10px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  color: #bfd0de;
}

.cta-final {
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 170, 79, 0.22), rgba(255, 170, 79, 0) 46%),
    linear-gradient(150deg, #1d2f41 0%, #18222d 65%, #19222d 100%);
  border-top: 1px solid rgba(255, 170, 79, 0.2);
}

.cta-final-wrap {
  text-align: center;
}

.cta-final p {
  margin: 0;
  color: #c2d2df;
}

.cta-final a {
  color: var(--primary-soft);
}

.tool-panel {
  background: rgba(28, 44, 60, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.tool-form {
  display: grid;
  gap: 10px;
}

.tool-form label {
  font-weight: 700;
}

.tool-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.tool-input-row input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  background: rgba(20, 28, 38, 0.66);
  color: var(--text);
}

.tool-note {
  color: var(--muted);
  margin-top: 10px;
}

.tool-result {
  margin-top: 18px;
}

.tool-meta {
  color: var(--muted);
}

.risk-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.risk-safe {
  color: #9ee6be;
  border: 1px solid rgba(86, 192, 138, 0.4);
  background: rgba(86, 192, 138, 0.14);
}

.risk-attention,
.risk-warning {
  color: #ffd08f;
  border: 1px solid rgba(255, 170, 79, 0.45);
  background: rgba(255, 170, 79, 0.14);
}

.scan-list,
.finding-list,
.chip-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.scan-list li,
.finding-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(230, 234, 240, 0.09);
}

.scan-list li span,
.finding-list li span {
  color: var(--muted);
  font-size: 0.92rem;
}

.finding {
  border-left: 3px solid transparent;
  padding-left: 8px;
}

.finding-high {
  border-left-color: #ef8a6d;
}

.finding-medium {
  border-left-color: var(--primary);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip-list li {
  border: 1px solid rgba(255, 170, 79, 0.3);
  background: rgba(255, 170, 79, 0.11);
  color: #ffd4a1;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.9rem;
}

.compliance-note {
  margin-top: 24px;
}

.site-footer {
  margin-top: 34px;
  border-top: 1px solid rgba(230, 234, 240, 0.08);
  background: #131b24;
  color: #d0dbe5;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 2fr 1fr 1fr;
}

.site-footer p,
.site-footer a {
  color: #a9bfce;
}

.site-footer a:hover {
  color: var(--primary-soft);
}

.footer-bottom {
  margin-top: 22px;
  border-top: 1px solid rgba(230, 234, 240, 0.13);
  color: #8fa6b8;
  padding: 12px 0 22px;
}

.article-wrap {
  max-width: 860px;
}

.article-meta {
  color: var(--muted);
}

.article-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 14px 0 18px;
}

.article-content {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(30, 46, 62, 0.86);
}

.article-content p,
.article-content li,
.article-content blockquote {
  color: #cedae5;
}

.article-content code {
  font-size: 0.92em;
  background: rgba(20, 28, 38, 0.8);
  border: 1px solid rgba(230, 234, 240, 0.14);
  border-radius: 6px;
  padding: 2px 5px;
}

.error-wrap {
  text-align: center;
}

.empty-state {
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-body {
  background: #eef3f7;
  color: #1c2a36;
}

.admin-body .site-header,
.admin-body .site-footer {
  display: none;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.admin-sidebar {
  background: #10202a;
  color: #d3e4ec;
  padding: 24px 18px;
}

.logo-admin {
  color: #e6f4ff;
  display: inline-block;
  margin-bottom: 18px;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #d3e4ec;
}

.admin-sidebar nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.logout-form {
  margin-top: 20px;
}

.admin-main {
  padding: 24px;
}

.admin-main h1,
.admin-main h2,
.admin-main h3,
.admin-main h4 {
  color: #172636;
}

.admin-main .lead,
.admin-main p,
.admin-main td,
.admin-main th,
.admin-main label {
  color: #31485a;
}

.admin-main .card,
.table-wrap,
.auth-card,
.admin-main .feature,
.admin-main .steps article {
  background: #fff;
  border-color: #d7e1e8;
  box-shadow: none;
}

.admin-section + .admin-section {
  margin-top: 22px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #d7e1e8;
  border-radius: 12px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid #d7e1e8;
  text-align: left;
  padding: 11px 12px;
  vertical-align: top;
}

th {
  background: #f3f8fb;
  font-size: 0.92rem;
}

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

.actions form {
  margin: 0;
}

.btn-link {
  border: 0;
  background: transparent;
  color: #0a4f59;
  cursor: pointer;
  font-weight: 700;
  padding: 0;
}

.btn-link.danger {
  color: #b23c34;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-ok {
  background: #d7f4e5;
  color: #08633b;
}

.badge-muted {
  background: #edf2f6;
  color: #516878;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid #d7e1e8;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
  color: #1e2d3a;
}

.form-grid textarea {
  resize: vertical;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-card {
  width: min(460px, 100%);
  border: 1px solid #d7e1e8;
  border-radius: 16px;
  padding: 24px;
}

.admin-form {
  max-width: 900px;
}

.cover-preview {
  width: 240px;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid #d7e1e8;
}

.alert {
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid transparent;
}

.alert-success {
  border-color: #9edabf;
  background: #e8f9f0;
  color: #0b5d39;
}

.alert-error {
  border-color: #e8b2ad;
  background: #fff1ef;
  color: #8a1f17;
}

.stat {
  font-size: 1.7rem;
  font-family: "Space Grotesk", sans-serif;
}

@media (max-width: 980px) {
  .hero-grid,
  .cards-3,
  .pricing-grid,
  .news-grid,
  .steps,
  .feature-grid,
  .roi-grid,
  .roi-breakdown-grid,
  .roi-metrics-grid,
  .footer-grid,
  .tool-input-row {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    padding-bottom: 14px;
  }
}

@media (max-width: 860px) {
  .logo-image {
    height: 34px;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(20, 29, 40, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
    display: flex;
  }

  .js-enabled .main-nav {
    display: none;
  }

  .js-enabled .main-nav.open {
    display: flex;
  }

  .btn-nav {
    margin-left: 0;
  }
}
