:root {
  --bg: #070b16;
  --bg-soft: #0f1830;
  --card: rgba(255, 255, 255, 0.06);
  --text: #e8ecf7;
  --muted: #a2b0cc;
  --accent: #4f8cff;
  --accent-2: #00d9c6;
  --danger: #ff5b7f;
  --border: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top right, #1e2d59 0%, var(--bg) 45%);
  color: var(--text);
  line-height: 1.55;
}

html {
  overflow-y: scroll;
}

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

.topbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 22, 0.65);
  z-index: 10;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  color: var(--text);
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 16px var(--accent);
}

.ghost-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.ghost-link:hover {
  color: var(--text);
}

.top-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0;
}

.menu-toggle:hover {
  box-shadow: none;
  transform: none;
}

.ghost-link.is-active {
  color: var(--text);
}

.hero {
  padding: 64px 0 54px;
}

.compact-hero {
  padding-bottom: 16px;
}

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

.hero-grid > * {
  min-width: 0;
}

.eyebrow {
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-list {
  padding-left: 18px;
  margin: 0;
  color: var(--text);
}

.hero-list li {
  margin-bottom: 8px;
}

.panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  padding: 24px 22px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  min-height: 590px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.panel h2 {
  margin: 0;
  font-size: 1.5rem;
}

.panel-subtitle {
  margin: 8px 0 18px;
  color: var(--muted);
}

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

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input {
  width: 100%;
  border-radius: 12px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  outline: none;
  font-size: 0.97rem;
}

textarea {
  width: 100%;
  border-radius: 12px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  outline: none;
  font-size: 0.97rem;
  font-family: "Inter", sans-serif;
  resize: vertical;
}

input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.2);
}

textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.2);
}

button {
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--accent), #7c9dff);
  color: #f7f9ff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(79, 140, 255, 0.3);
}

button:disabled {
  opacity: 0.75;
  cursor: progress;
}

.search-area {
  margin-top: 20px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(7, 12, 24, 0.78);
  min-height: 340px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.idle-visual {
  margin-top: 20px;
  min-height: 340px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(16, 24, 46, 0.95), rgba(6, 10, 22, 0.95));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 14px;
}

.idle-map {
  position: relative;
  height: 220px;
  border-radius: 10px;
  border: 1px solid rgba(79, 140, 255, 0.28);
  background:
    radial-gradient(circle at 30% 25%, rgba(79, 140, 255, 0.24), transparent 44%),
    radial-gradient(circle at 72% 70%, rgba(0, 217, 198, 0.2), transparent 42%),
    linear-gradient(140deg, rgba(28, 46, 94, 0.58), rgba(7, 13, 29, 0.78));
  overflow: hidden;
}

.idle-card {
  border-radius: 10px;
  border: 1px solid rgba(79, 140, 255, 0.3);
  background: linear-gradient(155deg, rgba(19, 30, 58, 0.94), rgba(8, 13, 30, 0.96));
  min-height: 220px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.idle-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #cfe0ff;
  border: 1px solid rgba(79, 140, 255, 0.38);
  background: rgba(79, 140, 255, 0.2);
}

.idle-state {
  font-size: 0.76rem;
  color: #9cc8ff;
}

.idle-card-main {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.idle-avatar {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.idle-lines {
  display: grid;
  gap: 9px;
  width: 100%;
}

.idle-lines span {
  display: block;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.82rem;
  color: #d5e0f6;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.idle-person .idle-avatar {
  background: rgba(79, 140, 255, 0.18);
}

.idle-vehicle .idle-avatar {
  background: rgba(0, 217, 198, 0.16);
}

.idle-tg .idle-avatar {
  background: rgba(29, 161, 242, 0.18);
}

.grid-line {
  position: absolute;
  border: 1px dashed rgba(125, 157, 255, 0.22);
  border-radius: 999px;
}

.grid-line-a {
  inset: 16px;
}

.grid-line-b {
  inset: 42px;
}

.grid-line-c {
  inset: 72px;
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #6ea7ff;
  box-shadow: 0 0 0 0 rgba(110, 167, 255, 0.45);
  animation: pin-pulse 2.1s ease-out infinite;
}

.pin-main {
  top: 48%;
  left: 56%;
  width: 16px;
  height: 16px;
  background: #20e3d1;
}

.pin-alt-1 {
  top: 30%;
  left: 28%;
}

.pin-alt-2 {
  top: 68%;
  left: 75%;
}

.map-route {
  position: absolute;
  top: 54%;
  left: 32%;
  width: 46%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7ed8ff, transparent);
  transform: rotate(-19deg);
  filter: drop-shadow(0 0 6px rgba(126, 216, 255, 0.65));
}

.idle-caption {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.radar {
  width: 130px;
  height: 130px;
  margin: 4px auto 12px;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.2), transparent 62%);
  overflow: hidden;
}

.ring {
  position: absolute;
  border: 1px solid rgba(79, 140, 255, 0.45);
  border-radius: 50%;
  inset: 0;
  margin: auto;
}

.ring-1 {
  width: 44px;
  height: 44px;
}

.ring-2 {
  width: 82px;
  height: 82px;
}

.ring-3 {
  width: 122px;
  height: 122px;
}

.scan-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(0, 217, 198, 0.5);
  animation: pulse 1.7s ease-out infinite, orbit 3s linear infinite;
}

.success-visual {
  width: 130px;
  height: 130px;
  margin: 4px auto 12px;
  border-radius: 50%;
  border: 1px solid rgba(32, 227, 209, 0.35);
  background: radial-gradient(circle, rgba(32, 227, 209, 0.2), rgba(8, 18, 24, 0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: success-glow 2.2s ease-in-out infinite;
}

.success-pin {
  font-size: 1.6rem;
  line-height: 1;
}

.success-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #b6fff6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 0 8px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 217, 198, 0.42);
  }
  90% {
    box-shadow: 0 0 0 14px rgba(0, 217, 198, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 217, 198, 0);
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(45px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(45px) rotate(-360deg);
  }
}

@keyframes pin-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(110, 167, 255, 0.45);
  }
  85% {
    box-shadow: 0 0 0 12px rgba(110, 167, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(110, 167, 255, 0);
  }
}

@keyframes success-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(32, 227, 209, 0.22);
  }
  50% {
    box-shadow: 0 0 18px 4px rgba(32, 227, 209, 0.2);
  }
}

.status-text {
  margin: 0 0 10px;
  text-align: center;
  color: var(--muted);
  font-weight: 500;
  min-height: 42px;
}

.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.8s ease;
}

.hack-console {
  margin-top: 12px;
  border: 1px solid rgba(0, 217, 198, 0.28);
  background: rgba(2, 12, 14, 0.75);
  border-radius: 10px;
  overflow: hidden;
}

.hack-console-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0, 217, 198, 0.22);
  color: #8ee8de;
  font-size: 0.78rem;
  font-weight: 600;
}

.console-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #20e3d1;
  box-shadow: 0 0 8px rgba(32, 227, 209, 0.9);
}

.hack-lines {
  padding: 10px;
  height: 130px;
  overflow-y: auto;
  overflow-x: hidden;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #75f7e9;
}

.hack-line {
  opacity: 0;
  animation: line-in 0.24s ease forwards;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@keyframes line-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.telegram-btn {
  display: inline-flex;
  width: 100%;
  margin-top: 16px;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(120deg, #1da1f2, #2aabee);
  color: #f3faff;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
}

.telegram-btn:hover {
  filter: brightness(1.06);
}

.hidden {
  display: none;
}

.info-blocks {
  padding: 8px 0 56px;
}

.section-intro {
  margin-bottom: 18px;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--accent-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

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

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

.query-link-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-weight: 600;
  transition: border-color 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.query-link-card:hover {
  border-color: rgba(79, 140, 255, 0.42);
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.card {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 20px 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(79, 140, 255, 0.42);
  transform: translateY(-2px);
}

.card h3 {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: rgba(79, 140, 255, 0.18);
  border: 1px solid rgba(79, 140, 255, 0.35);
}

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

.review-card p {
  font-size: 0.98rem;
}

.reviews-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.reviews-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  color: #ecf3ff;
  border: 1px solid rgba(79, 140, 255, 0.48);
  background: linear-gradient(120deg, rgba(79, 140, 255, 0.22), rgba(0, 217, 198, 0.2));
  transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.reviews-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.07);
  border-color: rgba(0, 217, 198, 0.52);
}

.about-site {
  padding: 8px 0 56px;
}

.about-inner {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 24px 20px;
}

.about-inner h2 {
  margin-top: 0;
}

.about-inner p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.review-form-wrap {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 24px 20px;
}

.review-form-wrap h2 {
  margin: 0 0 8px;
}

.review-form-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
}

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

.review-success {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 217, 198, 0.45);
  color: #b9fff7;
  background: rgba(0, 217, 198, 0.12);
}

.review-error {
  margin: -2px 0 2px;
  color: #ff9cb2;
  font-size: 0.88rem;
}

.faq-head {
  margin-bottom: 16px;
  max-width: 700px;
}

.faq-head h2 {
  margin: 0 0 8px;
}

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

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  padding: 16px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: none;
  transform: none;
}

.accordion-button:hover {
  box-shadow: none;
  transform: none;
}

.accordion-button::after {
  content: "+";
  color: var(--accent-2);
  font-size: 1.3rem;
  line-height: 1;
}

.accordion-item.open .accordion-button::after {
  content: "-";
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.accordion-panel p {
  margin: 0;
  color: var(--muted);
  padding: 0 18px 18px;
  line-height: 1.65;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-inner {
  color: #93a1bb;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .panel {
    min-height: auto;
  }

  .search-area {
    min-height: 320px;
  }

  .idle-visual {
    min-height: 320px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .query-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, 94%);
  }

  .topbar-inner {
    min-height: 58px;
  }

  .brand {
    font-size: 0.95rem;
  }

.top-links {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 3%;
  width: min(280px, 92vw);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(7, 11, 22, 0.95);
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  z-index: 20;
}

.top-links.is-open {
  display: flex;
}

.ghost-link {
  font-size: 0.94rem;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

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

  .hero {
    padding: 34px 0 36px;
  }

  h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.16;
    margin-bottom: 10px;
  }

  .lead {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .hero-list {
    padding-left: 16px;
  }

  .hero-list li {
    margin-bottom: 6px;
    font-size: 0.93rem;
  }

  .panel {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .panel h2 {
    font-size: 1.24rem;
  }

  .panel-subtitle {
    margin: 6px 0 12px;
    font-size: 0.92rem;
  }

  .trace-form {
    gap: 8px;
  }

  label {
    font-size: 0.84rem;
  }

  input,
  button,
  .telegram-btn {
    padding: 11px 12px;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  .idle-visual,
  .search-area {
    min-height: 292px;
    margin-top: 14px;
    padding: 12px;
    border-radius: 10px;
  }

  .idle-map {
    height: 180px;
  }

  .idle-card {
    min-height: 180px;
    padding: 11px;
    gap: 10px;
  }

  .idle-avatar {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    border-radius: 10px;
  }

  .idle-lines span {
    font-size: 0.76rem;
    padding: 7px 8px;
  }

  .idle-caption {
    font-size: 0.84rem;
    margin-top: 10px;
  }

  .radar,
  .success-visual {
    width: 108px;
    height: 108px;
    margin-bottom: 8px;
  }

  .status-text {
    min-height: 36px;
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .progress-track {
    height: 7px;
  }

  .hack-console {
    margin-top: 10px;
    border-radius: 8px;
  }

  .hack-console-head {
    padding: 7px 8px;
    font-size: 0.72rem;
  }

  .hack-lines {
    height: 108px;
    padding: 8px;
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .section-intro {
    margin-bottom: 12px;
  }

  .section-kicker {
    font-size: 0.72rem;
    margin-bottom: 6px;
  }

  .section-intro h2 {
    font-size: 1.25rem;
    line-height: 1.22;
  }

  .info-blocks {
    padding: 4px 0 34px;
  }

  .card {
    padding: 15px 13px;
    border-radius: 12px;
  }

  .card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .card p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .card-icon {
    width: 24px;
    height: 24px;
    font-size: 0.84rem;
  }

  .about-site {
    padding-bottom: 34px;
  }

  .about-inner {
    padding: 16px 14px;
    border-radius: 12px;
  }

  .about-inner h2 {
    font-size: 1.18rem;
    margin-bottom: 8px;
  }

  .about-inner p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .review-form-wrap {
    padding: 16px 14px;
    border-radius: 12px;
  }

  .review-form-wrap h2 {
    font-size: 1.18rem;
    margin-bottom: 8px;
  }

  .review-form-subtitle {
    font-size: 0.92rem;
    margin-bottom: 12px;
  }

  textarea {
    border-radius: 10px;
    font-size: 0.95rem;
    padding: 11px 12px;
  }

  .faq-head {
    margin-bottom: 10px;
  }

  .faq-head h2 {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .faq-head p {
    font-size: 0.9rem;
  }

  .accordion {
    gap: 8px;
  }

  .accordion-button {
    padding: 12px 13px;
    font-size: 0.93rem;
    line-height: 1.35;
  }

  .accordion-button::after {
    font-size: 1.1rem;
  }

  .accordion-panel p {
    padding: 0 13px 13px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .footer {
    padding: 14px 0;
  }

  .footer-inner {
    font-size: 0.84rem;
  }
  @media (min-width: 641px) {
  .menu-toggle {
    display: none !important;
  }

  .top-links {
    display: inline-flex !important;
    position: static;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
}
}
