.mobile-menu-toggle,
.mobile-drawer-overlay,
.mobile-drawer {
  display: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(38, 79, 57, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.92);
  color: var(--green);
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(23, 18, 15, 0.26);
  backdrop-filter: blur(2px);
}

.mobile-drawer {
  position: fixed;
  inset-block: 0;
  right: 0;
  z-index: 90;
  width: min(84vw, 340px);
  padding: 26px 24px;
  flex-direction: column;
  gap: 24px;
  border-left: 1px solid rgba(38, 79, 57, 0.12);
  background: rgba(255, 253, 249, 0.98);
  box-shadow: -22px 0 60px rgba(23, 18, 15, 0.14);
  transform: translateX(105%);
  transition: transform 0.24s ease;
}

.mobile-drawer-overlay:not([hidden]) {
  display: block;
}

.mobile-drawer:not([hidden]) {
  display: flex;
  transform: translateX(0);
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--green);
  font-weight: 900;
}

.mobile-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer nav {
  display: grid;
  gap: 4px;
}

.mobile-drawer nav a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 18, 15, 0.08);
  color: var(--ink);
  font-weight: 900;
  transition: color 0.2s ease;
}

.mobile-drawer nav a:hover,
.mobile-drawer nav a:focus-visible {
  color: var(--green);
}

.mobile-drawer-action {
  min-height: 48px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .topbar .brand {
    grid-column: 1;
  }

  .topbar .nav-action {
    grid-column: 2;
    justify-self: end;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .pricing-section {
    width: calc(100% - 32px);
  }

  .pricing-card {
    width: 100%;
    max-width: 430px;
    padding: 26px 20px 24px;
  }

  .price-badge {
    position: static;
    width: fit-content;
    margin: 0 auto 12px;
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .pricing-main {
    gap: 12px;
  }

  .price-intro {
    margin-top: 0 !important;
    font-size: clamp(1.25rem, 6.4vw, 1.75rem);
    line-height: 1.35;
  }

  .pricing-subtitle {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .price-proof-list {
    gap: 7px;
  }

  .price-proof-list span {
    padding: 7px 11px;
    font-size: 0.8rem;
  }

  .pricing-card h2 {
    font-size: clamp(2.45rem, 15vw, 3.45rem);
    line-height: 1.05;
  }

  .price-old-row {
    gap: 7px;
    font-size: 0.84rem;
  }

  .savings-badge {
    min-height: 26px;
    font-size: 0.78rem;
  }

  .pricing-main > .btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    margin-top: 4px;
  }

  .payment-notes {
    gap: 3px;
    font-size: 0.82rem;
    line-height: 1.75;
  }

  .price-value-line {
    font-size: 0.84rem;
    line-height: 1.8;
  }
}

@media (max-width: 430px) {
  .topbar .nav-action {
    display: none;
  }
}
