:root {
  --qeta-ink: #070b1c;
  --qeta-ink-soft: #18223d;
  --qeta-blue: #2448d8;
  --qeta-cyan: #19aeca;
  --qeta-gold: #d4af37;
  --qeta-gold-soft: #f5e7b6;
  --qeta-mint: #16b985;
  --qeta-red: #e44c4c;
  --qeta-paper: #f6f8fc;
  --qeta-line: #dbe2f0;
  --qeta-text: #4a556f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--qeta-text);
  background: #ffffff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 226, 240, 0.9);
  backdrop-filter: blur(14px);
}

.qeta-nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 0;
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--qeta-ink);
  font-weight: 850;
}

.brand-lockup:hover,
.footer-brand:hover {
  color: var(--qeta-ink);
  text-decoration: none;
}

.brand-mark,
.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1.05;
}

.brand-lockup strong {
  font-size: 19px;
}

.brand-lockup small {
  color: var(--qeta-text);
  font-size: 13px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--qeta-ink-soft);
  font-size: 14px;
  font-weight: 750;
  padding: 10px 14px;
}

.nav-action {
  border: 1px solid var(--qeta-line);
  border-radius: 6px;
  background: #ffffff;
}

.hero-section {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 74px 0 86px;
  background:
    linear-gradient(135deg, rgba(36, 72, 216, 0.08), rgba(25, 174, 202, 0.09)),
    #ffffff;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--qeta-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--qeta-ink);
  letter-spacing: 0;
}

.hero-section h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 70px);
  line-height: 0.98;
  font-weight: 870;
}

.hero-copy {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--qeta-text);
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn-primary-qeta,
.btn-secondary-qeta,
.plan-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

button.btn-primary-qeta,
button.plan-link {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.btn-primary-qeta {
  color: #ffffff;
  background: var(--qeta-blue);
}

.btn-primary-qeta:hover {
  color: #ffffff;
  background: #1837b1;
  text-decoration: none;
}

.btn-secondary-qeta,
.plan-link {
  color: var(--qeta-ink);
  background: #ffffff;
  border: 1px solid var(--qeta-line);
}

.btn-secondary-qeta:hover,
.plan-link:hover {
  color: var(--qeta-ink);
  text-decoration: none;
  border-color: var(--qeta-blue);
}

.tech-slider {
  position: relative;
  min-height: 520px;
  margin-left: auto;
  padding: 22px;
  border: 1px solid rgba(219, 226, 240, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #071026, #0d1835 58%, #0b2441);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(7, 11, 28, 0.2);
}

.tech-slide {
  position: absolute;
  inset: 22px;
  display: grid;
  grid-template-columns: minmax(230px, 1.1fr) minmax(190px, 0.9fr);
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.tech-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.tech-slide h2 {
  margin: 8px 0 12px;
  color: #ffffff;
  font-size: 46px;
  font-weight: 870;
}

.tech-slide p {
  max-width: 270px;
  margin: 0;
  color: #b9c6e4;
  line-height: 1.7;
}

.tech-slide div > span {
  color: var(--qeta-cyan);
  font-weight: 850;
}

.slide-visual {
  position: relative;
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.node,
.trace {
  position: absolute;
  display: block;
}

.node {
  width: 22px;
  height: 22px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--qeta-cyan);
  box-shadow: 0 0 34px rgba(25, 174, 202, 0.65);
}

.node.main {
  width: 72px;
  height: 72px;
  left: calc(50% - 36px);
  top: calc(50% - 36px);
  background: var(--qeta-blue);
}

.node.top { left: 22%; top: 18%; }
.node.right { right: 18%; top: 44%; }
.node.bottom { left: 32%; bottom: 18%; }

.trace {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--qeta-cyan), transparent);
  transform-origin: left center;
}

.trace-one { width: 165px; left: 30%; top: 31%; transform: rotate(33deg); }
.trace-two { width: 140px; left: 51%; top: 50%; transform: rotate(-8deg); }
.trace-three { width: 150px; left: 36%; top: 62%; transform: rotate(-38deg); }

.slide-visual.panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px;
}

.slide-visual.panels span {
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(25, 174, 202, 0.14));
}

.slide-visual.pulse {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.slide-visual.pulse span {
  width: 84px;
  height: 180px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--qeta-cyan), var(--qeta-blue));
  box-shadow: 0 0 40px rgba(36, 72, 216, 0.4);
}

.slide-visual.pulse span:nth-child(2) {
  height: 250px;
}

.slider-dots {
  position: absolute;
  left: 28px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.slider-dots button.is-active {
  background: var(--qeta-cyan);
}

.plans-section,
.band-section,
.account-section,
.final-cta {
  padding: 86px 0;
}

.band-section,
.account-section {
  background: var(--qeta-paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 560px;
}

.section-heading h2,
.account-panel h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 850;
}

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

.feature-grid article,
.plan-card,
.auth-card,
.account-panel,
.activation-modal,
.final-cta-inner {
  border: 1px solid var(--qeta-line);
  border-radius: 8px;
  background: #ffffff;
}

.feature-grid article {
  min-height: 250px;
  padding: 26px;
}

.feature-grid img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 22px;
}

.feature-grid h3,
.plan-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 840;
}

.feature-grid p,
.plan-card p,
.account-panel p {
  margin: 0;
  line-height: 1.7;
}

.plan-card {
  height: 100%;
  padding: 30px;
}

.plan-card.featured {
  border-color: rgba(36, 72, 216, 0.42);
  box-shadow: 0 18px 42px rgba(36, 72, 216, 0.11);
}

.plan-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--qeta-blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.price-lockup {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.price-lockup strong {
  color: var(--qeta-ink);
  font-size: 42px;
  line-height: 1;
}

.price-lockup span,
.annual-note {
  color: var(--qeta-text);
  font-size: 14px;
  font-weight: 750;
}

.annual-note {
  margin-top: 8px !important;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  color: var(--qeta-ink-soft);
  font-weight: 750;
}

.plan-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--qeta-mint);
}

.account-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  align-items: center;
  gap: 36px;
  padding: 36px;
  box-shadow: 0 18px 42px rgba(7, 11, 28, 0.06);
}

.account-copy {
  max-width: 540px;
}

.auth-card,
.activation-modal form {
  display: grid;
  gap: 16px;
}

.auth-card {
  padding: 24px;
  background: #fbfcff;
}

.auth-card h1 {
  margin: 0;
  color: var(--qeta-ink);
  font-size: 26px;
  font-weight: 850;
  text-align: center;
}

.auth-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border-radius: 8px;
  background: #eef1f7;
}

.auth-switch button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--qeta-text);
  font-size: 14px;
  font-weight: 850;
}

.auth-switch button.is-active {
  background: #ffffff;
  color: var(--qeta-ink);
  box-shadow: 0 8px 18px rgba(7, 11, 28, 0.08);
}

.auth-link {
  border: 0;
  background: transparent;
  color: var(--qeta-ink);
  font-size: 14px;
  font-weight: 850;
}

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

.admin-access-links[hidden] {
  display: none !important;
}

.admin-access-links .btn-secondary-qeta {
  min-height: 44px;
  padding: 0 12px;
  font-size: 13px;
}

.auth-card label,
.checkout-grid label {
  display: grid;
  gap: 8px;
  margin: 0;
}

.auth-card span,
.checkout-grid span,
.payment-methods legend {
  color: var(--qeta-ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.auth-card input,
.checkout-grid input,
.checkout-grid select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--qeta-line);
  border-radius: 6px;
  color: var(--qeta-ink);
  background: #ffffff;
  font: inherit;
}

.form-note,
.checkout-message {
  margin: 0;
  color: var(--qeta-text);
  font-size: 14px;
  line-height: 1.6;
}

.modal-backdrop-qeta {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(7, 11, 28, 0.62);
}

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

.activation-modal {
  position: relative;
  width: min(760px, 100%);
  max-height: min(92vh, 820px);
  padding: 30px;
  overflow: auto;
  box-shadow: 0 26px 90px rgba(7, 11, 28, 0.32);
}

.activation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 20px;
  align-items: start;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--qeta-line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--qeta-ink);
  font-size: 24px;
  line-height: 1;
}

.modal-heading {
  max-width: 560px;
  margin-bottom: 22px;
}

.modal-heading h2 {
  margin: 0 0 10px;
  color: var(--qeta-ink);
  font-size: 32px;
  font-weight: 850;
}

.modal-heading p {
  margin: 0;
}

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

.full-field {
  grid-column: 1 / -1;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}

.payment-methods legend {
  width: 100%;
  margin: 0;
}

.payment-tile {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  min-height: 86px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--qeta-line);
  border-radius: 6px;
  color: var(--qeta-ink-soft);
  background: #ffffff;
}

.payment-tile strong,
.payment-tile small {
  display: block;
}

.payment-tile small {
  margin-top: 4px;
  color: var(--qeta-text);
  font-size: 12px;
  line-height: 1.45;
}

.payment-tile:has(input:checked) {
  border-color: var(--qeta-ink);
  background: var(--qeta-ink);
  color: #ffffff;
}

.payment-tile:has(input:checked) small {
  color: rgba(255, 255, 255, 0.7);
}

.terms-check {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  color: var(--qeta-text);
  font-size: 13px;
  line-height: 1.5;
}

.terms-check input {
  margin-top: 3px;
}

.activation-summary {
  position: sticky;
  top: 16px;
  padding: 18px;
  border: 1px solid var(--qeta-line);
  border-radius: 8px;
  background: #f8f9fd;
}

.summary-kicker {
  color: var(--qeta-gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.activation-summary h3 {
  margin: 8px 0;
  font-size: 22px;
  font-weight: 850;
}

.activation-summary p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.summary-total {
  display: grid;
  gap: 4px;
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid var(--qeta-line);
}

.summary-total span {
  color: var(--qeta-text);
  font-size: 13px;
  font-weight: 750;
}

.summary-total strong {
  color: var(--qeta-ink);
  font-size: 32px;
  line-height: 1;
}

.checkout-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}

.checkout-footer p {
  margin: 0;
  color: var(--qeta-ink);
  font-size: 18px;
  font-weight: 850;
}

.checkout-message.is-success {
  color: #0c8658;
}

.checkout-message.is-error {
  color: var(--qeta-red);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px;
  background: var(--qeta-ink);
}

.final-cta h2 {
  color: #ffffff;
}

.site-footer {
  margin-top: 24px;
  background: linear-gradient(135deg, #080d1e, #050814);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
  padding: 62px 15px;
}

.footer-about p {
  max-width: 310px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.7;
}

.footer-brand {
  color: #ffffff;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-grid h4 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

.footer-grid a,
.footer-grid span {
  position: relative;
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.footer-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  border-radius: 999px;
  background: var(--qeta-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-grid a:hover {
  color: var(--qeta-gold);
  text-decoration: none;
}

.footer-grid a:hover::after {
  transform: scaleX(1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 22px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.auth-page {
  background: #f8f8fb;
}

.auth-layout {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.85fr);
}

.auth-main {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  padding: 32px 48px;
}

.auth-logo {
  width: fit-content;
}

.auth-card-shell {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}

.auth-card-shell .auth-card {
  width: min(448px, 100%);
  padding: 30px;
  border: 1px solid var(--qeta-line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.06);
}

.auth-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 48px;
  background: #f0f1f6;
}

.auth-visual-stack {
  position: relative;
  width: min(440px, 100%);
  min-height: 520px;
}

.visual-card {
  position: absolute;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

.visual-card.small {
  left: 20px;
  top: 0;
  width: 310px;
  padding: 22px;
}

.visual-card.large {
  right: 0;
  top: 96px;
  width: 350px;
  padding: 24px;
}

.visual-card.payment {
  left: 0;
  bottom: 34px;
  width: 260px;
  padding: 22px;
}

.visual-card span {
  color: var(--qeta-text);
  font-size: 13px;
  font-weight: 750;
}

.visual-card strong {
  display: block;
  margin-top: 8px;
  color: var(--qeta-ink);
  font-size: 20px;
}

.visual-browser {
  display: flex;
  gap: 7px;
  margin: -4px -4px 20px;
  padding: 16px;
  border-radius: 12px;
  background: var(--qeta-ink);
}

.visual-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--qeta-gold);
}

.visual-browser span:nth-child(2) {
  background: var(--qeta-cyan);
}

.visual-browser span:nth-child(3) {
  background: var(--qeta-mint);
}

.visual-card h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 850;
}

.visual-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.visual-stats div {
  padding: 14px;
  border-radius: 10px;
  background: #f1f3f8;
}

.handoff-page {
  min-height: 100vh;
  background: linear-gradient(140deg, #f7faff, #ffffff);
}

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

.handoff-card {
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid var(--qeta-line);
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(7, 11, 28, 0.11);
}

.handoff-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 18px;
}

.handoff-card p {
  margin: 18px 0 24px;
}

.quiet-link {
  display: block;
  margin-top: 16px;
  color: var(--qeta-text);
  font-size: 14px;
  font-weight: 750;
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 48px;
  }

  .tech-slider {
    min-height: 470px;
    margin-top: 42px;
  }

  .tech-slide {
    grid-template-columns: 1fr;
  }

  .slide-visual {
    min-height: 230px;
  }

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

  .account-panel,
  .final-cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .account-panel {
    display: grid;
  }

  .activation-layout,
  .footer-grid,
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .activation-summary {
    position: static;
  }

  .auth-visual {
    display: none;
  }

  .auth-main {
    padding: 26px;
  }

  .footer-bottom .container {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .qeta-nav {
    width: min(100% - 24px, 1180px);
  }

  .hero-section h1 {
    font-size: 39px;
  }

  .tech-slider {
    min-height: 520px;
    padding: 18px;
  }

  .tech-slide {
    inset: 18px;
  }

  .tech-slide h2 {
    font-size: 34px;
  }

  .plans-section,
  .band-section,
  .account-section,
  .final-cta {
    padding: 62px 0;
  }

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

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .checkout-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .activation-modal,
  .account-panel,
  .final-cta-inner {
    padding: 24px;
  }

  .footer-grid {
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .auth-card-shell {
    padding: 38px 0;
  }

  .auth-card-shell .auth-card {
    padding: 24px;
  }
}

body.modal-open-qeta {
  overflow: hidden;
}

body .modal-backdrop-qeta[hidden] {
  display: none !important;
}

body .modal-backdrop-qeta.is-open {
  display: flex !important;
}

body .account-panel > .auth-card,
body .auth-card-shell > .auth-card,
body .activation-modal,
body .plan-card,
body .feature-grid article {
  border-radius: 12px;
}

body .account-panel .auth-card label,
body .auth-card-shell .auth-card label,
body .activation-modal .checkout-grid label {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

body .account-panel .auth-card input,
body .auth-card-shell .auth-card input,
body .activation-modal input,
body .activation-modal select {
  display: block !important;
  width: 100% !important;
  min-height: 50px !important;
  padding: 0 14px !important;
  border: 1px solid var(--qeta-line) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: var(--qeta-ink) !important;
  font: inherit !important;
}

body .btn-primary-qeta,
body button.btn-primary-qeta,
body .plan-link {
  border-radius: 8px !important;
  box-shadow: none;
}

body .site-footer {
  background: linear-gradient(135deg, #080d1e, #050814) !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

body .footer-brand img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1);
}

  body .footer-grid a,
  body .footer-grid span {
    display: block;
    margin-top: 10px;
  }

  body .admin-access-links {
    grid-template-columns: 1fr;
  }

@media (max-width: 767px) {
  body .account-panel {
    display: block !important;
    padding: 24px !important;
  }

  body .account-panel .auth-card {
    margin-top: 24px;
  }

  body .activation-modal {
    width: min(94vw, 760px) !important;
    max-height: 90vh !important;
    padding: 22px !important;
  }

  body .activation-layout,
  body .checkout-grid,
  body .payment-methods {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
}
