/* أنماط صفحة دليل AdGuard DNS — عربي RTL ومتوافق مع الجوال */
:root {
  --navy-950: #060912;
  --navy-900: #0b1220;
  --navy-800: #121a2b;
  --violet-500: #8b5cf6;
  --violet-400: #a855f7;
  --violet-300: #c084fc;
  --indigo-500: #6366f1;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --blue-500: #3b82f6;
  --orange-500: #f97316;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-soft: #94a3b8;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --border: #e2e8f0;
  --lavender: #f5f3ff;
  --mint: #ecfdf5;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 6px 20px rgba(15, 23, 42, 0.06);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1120px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font: "Tajawal", "Noto Sans Arabic", system-ui, sans-serif;
  --focus: 0 0 0 3px rgba(139, 92, 246, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--violet-500);
}

button,
.btn {
  font-family: inherit;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 15% 40%, rgba(139, 92, 246, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(59, 130, 246, 0.18), transparent 50%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 70%, #10182a);
  color: #fff;
  padding: 3.5rem 0 5.5rem;
  overflow: hidden;
}

.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1.5px);
  background-size: 48px 48px;
}

.hero__orbits {
  position: absolute;
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  inset-inline-start: -8%;
  top: 12%;
  animation: orbitPulse 8s ease-in-out infinite;
}

.hero__orbits::before,
.hero__orbits::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.hero__orbits::after {
  inset: 24%;
  border-color: rgba(255, 255, 255, 0.1);
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 6.5vw, 3.25rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero__title .accent {
  background: linear-gradient(90deg, #c084fc, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0;
  color: #cbd5e1;
  font-size: clamp(0.98rem, 2.8vw, 1.12rem);
  max-width: 36rem;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
}

.hero__shield {
  width: min(260px, 68vw);
  filter: drop-shadow(0 20px 50px rgba(139, 92, 246, 0.45));
  animation: floatY 5.5s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero__float {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #e2e8f0;
  font-size: 0.7rem;
  font-weight: 700;
}

.hero__float--ads {
  top: 12%;
  inset-inline-end: 8%;
  text-decoration: line-through;
  color: #fda4af;
}

.hero__float--game {
  bottom: 18%;
  inset-inline-start: 6%;
}

.hero__curve {
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 64px;
  color: var(--surface);
}

.hero__curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 900px) {
  .hero {
    padding: 4.5rem 0 7rem;
  }

  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }

  .hero__visual {
    order: -1;
    min-height: 360px;
  }

  .hero__shield {
    width: 300px;
  }
}

/* ========== Follower ========== */
.follower {
  text-align: center;
  padding: 1.75rem 0 0.5rem;
}

.follower__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.follower__brand {
  font-family: "Aref Ruqaa Ink", "Traditional Arabic", serif;
  font-size: clamp(1.2rem, 4vw, 1.55rem);
  font-weight: 700;
  color: #dc2626;
  line-height: 1.2;
}

.follower__heart {
  color: var(--violet-400);
  display: inline-flex;
}

.snap-add {
  margin: 1rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #111;
  background: #fffc00;
  border-radius: 999px;
  padding: 0.55rem 1rem 0.55rem 0.7rem;
  min-height: 48px;
  box-shadow: 0 8px 20px rgba(255, 252, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.snap-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 252, 0, 0.45);
}

.snap-add__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.snap-add__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
  text-align: start;
}

.snap-add__handle {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  direction: ltr;
  unicode-bidi: isolate;
}

.snap-add__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #333;
}

/* ========== Sections ========== */
.section {
  padding: 3rem 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section__head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section__title {
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 800;
}

.section__rule {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet-400), var(--indigo-500));
  margin: 0.75rem auto 0;
}

.section__desc {
  margin: 0.85rem auto 0;
  max-width: 40rem;
  color: var(--text-muted);
}

/* ========== Device cards ========== */
.device-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.device-card {
  appearance: none;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 1.15rem 1rem 1.1rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
}

.device-card:hover,
.device-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #ddd6fe;
}

.device-card.is-selected {
  border-color: var(--violet-400);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.18);
}

.device-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 0.2rem;
}

.device-card__icon svg {
  width: 36px;
  height: 36px;
}

.device-card__name {
  font-weight: 800;
  font-size: 1rem;
}

.device-card__meta {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.device-card__go {
  margin-top: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--violet-500);
}

.device-card[data-device="android"] .device-card__go {
  background: var(--green-500);
}

.device-card[data-device="computer"] .device-card__go {
  background: var(--blue-500);
}

.device-card[data-device="tv"] .device-card__go {
  background: #7c3aed;
}

@media (min-width: 900px) {
  .device-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
  }

  .device-card {
    min-height: 220px;
    padding: 1.5rem 1.1rem;
  }
}

/* ========== Mode picker ========== */
.mode-grid {
  display: grid;
  gap: 0.9rem;
}

.mode-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.15rem;
  background: var(--surface);
  cursor: pointer;
  text-align: right;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mode-card.is-active {
  border-color: var(--violet-400);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.12);
}

.mode-card--family.is-active {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.mode-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.mode-card__label {
  font-weight: 800;
  font-size: 1.05rem;
}

.mode-card__en {
  color: var(--text-muted);
  font-size: 0.86rem;
  direction: ltr;
  unicode-bidi: isolate;
}

.mode-card__pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--lavender);
  color: #6d28d9;
  white-space: nowrap;
}

.mode-card--family .mode-card__pill {
  background: #eff6ff;
  color: #1d4ed8;
}

.mode-card__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

@media (min-width: 768px) {
  .mode-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* ========== Guide panels ========== */
.guides {
  display: none;
  padding-bottom: 2rem;
}

.guides.is-visible {
  display: block;
}

.guide-panel {
  display: none;
  animation: fadeUp 0.28s ease;
}

.guide-panel.is-active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.guide-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--violet-400), var(--indigo-500));
  color: #fff;
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.3);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: #f1f5f9;
  color: var(--text);
}

.btn--soft {
  background: var(--lavender);
  color: #6d28d9;
}

.btn--block {
  width: 100%;
}

.subnav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.subnav__btn {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  min-height: 44px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-muted);
}

.subnav__btn.is-active {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}

.tv-subnav .subnav__btn.is-active {
  background: #7c3aed;
  border-color: #7c3aed;
}

.guide-section {
  display: none;
}

.guide-section.is-active {
  display: block;
}

.guide-title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.guide-note {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.step__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-400), var(--indigo-500));
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.step__body {
  display: grid;
  gap: 0.85rem;
}

.step__text {
  margin: 0;
  font-size: 1rem;
}

.step__hint {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.path {
  display: grid;
  gap: 0.35rem;
  margin: 0.55rem 0;
}

.path__item {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
}

.path__ar {
  display: block;
  font-weight: 700;
}

.path__en {
  display: block;
  direction: ltr;
  unicode-bidi: isolate;
  color: var(--violet-500);
  font-weight: 700;
  font-size: 0.95rem;
  word-break: break-word;
}

.path__arrow {
  text-align: center;
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1;
}

.step__shot {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f8fafc;
  cursor: zoom-in;
  padding: 0;
  width: 100%;
}

.step__shot img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .step__body.has-shot {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

/* Copy / DNS values */
.dns-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  background: #0b1220;
  color: #e2e8f0;
  border-radius: var(--radius-md);
  padding: 0.75rem 0.85rem;
  margin: 0.55rem 0;
}

.dns-box code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  direction: ltr;
  unicode-bidi: isolate;
  font-size: 0.92rem;
  word-break: break-all;
  flex: 1;
  min-width: 0;
}

.copy-btn {
  appearance: none;
  border: none;
  background: rgba(168, 85, 247, 0.25);
  color: #f5d0fe;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 40px;
  min-width: 72px;
  white-space: nowrap;
}

.copy-btn.is-copied {
  background: rgba(34, 197, 94, 0.25);
  color: #bbf7d0;
}

.download-card {
  background: linear-gradient(180deg, #faf5ff, #fff);
  border: 1px solid #e9d5ff;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  margin: 0.75rem 0 1rem;
  text-align: center;
}

.download-card p {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.remove-box {
  margin-top: 1.5rem;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  background: #f8fafc;
}

.remove-box h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.advanced {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.advanced summary {
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-weight: 700;
  background: #f8fafc;
  list-style: none;
}

.advanced summary::-webkit-details-marker {
  display: none;
}

.advanced__body {
  padding: 0.9rem 1rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--border);
}

.advanced__body code {
  direction: ltr;
  unicode-bidi: isolate;
  word-break: break-all;
}

/* Features */
.feature-grid {
  display: grid;
  gap: 1.25rem;
}

.feature {
  text-align: center;
  padding: 0.5rem;
}

.feature__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 0.75rem;
}

.feature__icon--ads {
  background: #ecfdf5;
  color: var(--green-600);
}

.feature__icon--privacy {
  background: #f5f3ff;
  color: var(--violet-500);
}

.feature__icon--family {
  background: #eff6ff;
  color: var(--blue-500);
}

.feature__icon--clean {
  background: #fff7ed;
  color: var(--orange-500);
}

.feature h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.feature p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* Parents */
.parents {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  background: linear-gradient(135deg, #0b1220, #1e1b4b);
  color: #fff;
  border-radius: calc(var(--radius-xl) + 4px);
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.parents__visual {
  display: grid;
  place-items: center;
  min-height: 140px;
}

.parents__art {
  width: min(180px, 50vw);
  opacity: 0.95;
}

.parents h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 3.5vw, 1.6rem);
}

.parents p {
  margin: 0 0 0.75rem;
  color: #cbd5e1;
}

.parents p:last-child {
  margin-bottom: 0;
  color: #e9d5ff;
  font-weight: 600;
}

@media (min-width: 800px) {
  .parents {
    grid-template-columns: 0.7fr 1.3fr;
    padding: 2rem 2.25rem;
  }
}

/* Notes / trust */
.callout {
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem;
  display: grid;
  gap: 0.9rem;
  align-items: start;
}

.callout--notes {
  background: var(--lavender);
  border: 1px solid #ddd6fe;
}

.callout--trust {
  background: var(--mint);
  border: 1px solid #bbf7d0;
  margin-top: 1rem;
}

.callout__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
}

.callout--notes .callout__icon {
  background: var(--violet-500);
  color: #fff;
}

.callout--trust .callout__icon {
  background: var(--green-500);
  color: #fff;
}

.callout h2,
.callout h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.callout--notes h2 {
  color: #6d28d9;
}

.callout ul {
  margin: 0;
  padding-inline-start: 1.1rem;
  color: #475569;
}

.callout li + li {
  margin-top: 0.4rem;
}

.callout p {
  margin: 0;
  color: #166534;
}

@media (min-width: 700px) {
  .callout {
    grid-template-columns: auto 1fr;
  }
}

.disclosure {
  text-align: center;
  padding: 2rem 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.disclosure a {
  font-weight: 700;
  text-decoration: none;
}

.disclosure a:hover {
  text-decoration: underline;
}

.site-footer {
  text-align: center;
  padding: 1.5rem 0 calc(2rem + var(--safe-bottom));
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.86);
  display: none;
  place-items: center;
  padding: 1rem;
  z-index: 1000;
}

.lightbox.is-open {
  display: grid;
}

.lightbox__img {
  max-width: min(920px, 100%);
  max-height: min(86vh, 100%);
  border-radius: 12px;
  background: #fff;
}

.lightbox__close {
  position: absolute;
  top: calc(0.75rem + env(safe-area-inset-top, 0px));
  inset-inline-start: 0.75rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  padding: 0.75rem 1rem calc(0.75rem + var(--safe-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  display: none;
  z-index: 50;
}

.sticky-cta.is-visible {
  display: block;
}

.sticky-cta .btn {
  width: 100%;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none !important;
  }
}

.is-hidden {
  display: none !important;
}
