:root {
  --bg: #070d12;
  --bg-soft: #0e1821;
  --surface: rgba(17, 29, 40, 0.82);
  --surface-solid: #111d28;
  --text: #ebf2f7;
  --text-muted: #9db0c0;
  --brand: #2aafe5;
  --brand-strong: #1387ba;
  --success: #22c55e;
  --danger: #ef4444;
  --border: rgba(107, 176, 214, 0.18);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 10%, rgba(42, 175, 229, 0.14), transparent 35%),
    radial-gradient(circle at 90% 20%, rgba(44, 109, 144, 0.18), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

html[lang="ar"] body,
[dir="rtl"] body {
  font-family: "Tajawal", "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.section {
  padding: 92px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(42, 175, 229, 0.1);
  color: #7fd2f4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--brand), #53c7f2);
  color: #072031;
  box-shadow: 0 14px 30px rgba(42, 175, 229, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(42, 175, 229, 0.34);
}

.btn-secondary {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(42, 175, 229, 0.42);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  inset-inline-start: 16px;
  top: -60px;
  background: var(--brand);
  color: #082335;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 999;
}

.skip-link:focus {
  top: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.error-section {
  min-height: calc(100vh - 240px);
  display: flex;
  align-items: center;
}

.error-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(127, 210, 244, 0.25);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
}

.error-code {
  margin: 14px 0 10px;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #d8f3ff;
  text-shadow: 0 8px 34px rgba(42, 175, 229, 0.28);
}

.error-card h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.error-text {
  margin: 10px auto 0;
  max-width: 58ch;
  color: var(--text-muted);
}

.error-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand span {
  color: var(--brand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #e6f5fc;
}

.nav-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
}

.hero {
  padding: 86px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  margin: 12px 0;
  line-height: 1.05;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
}

.hero p {
  color: var(--text-muted);
  max-width: 60ch;
}

.gradient-title {
  background: linear-gradient(135deg, #b0e8fb, #2aafe5 48%, #77d4f3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.metrics {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  padding: 16px;
  border-radius: var(--radius-md);
}

.metric strong {
  font-size: 1.4rem;
}

.metric span {
  display: block;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.mock-panel {
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.mock-toolbar {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.mock-toolbar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.mock-toolbar i:nth-child(1) { background: #ef4444; }
.mock-toolbar i:nth-child(2) { background: #f59e0b; }
.mock-toolbar i:nth-child(3) { background: #22c55e; }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.kpi-grid div {
  background: rgba(42, 175, 229, 0.1);
  border: 1px solid rgba(127, 210, 244, 0.18);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
}

.section-title {
  margin-bottom: 28px;
}

.rich-content {
  color: #d6e3ee;
  line-height: 1.8;
}

.rich-content > *:first-child {
  margin-top: 0;
}

.rich-content > *:last-child {
  margin-bottom: 0;
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
  color: #f3f8fc;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 1.2em 0 0.5em;
  line-height: 1.25;
}

.rich-content h1 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.rich-content h2 { font-size: clamp(1.45rem, 2.4vw, 1.85rem); }
.rich-content h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.rich-content h4 { font-size: 1.15rem; }
.rich-content h5 { font-size: 1.05rem; }
.rich-content h6 { font-size: 0.95rem; }

.rich-content p,
.rich-content ul,
.rich-content ol,
.rich-content pre,
.rich-content table,
.rich-content blockquote {
  margin: 0.8em 0;
}

.rich-content ul,
.rich-content ol {
  padding-inline-start: 1.35rem;
}

.rich-content ul {
  list-style: disc;
}

.rich-content ol {
  list-style: decimal;
}

.rich-content li {
  margin: 0.3em 0;
}

.rich-content a {
  color: #7fd2f4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rich-content blockquote {
  border-inline-start: 3px solid rgba(127, 210, 244, 0.45);
  padding: 0.35rem 0 0.35rem 0.9rem;
  color: #a7c1d3;
}

.rich-content figure {
  margin: 1rem 0;
}

.rich-content figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(127, 210, 244, 0.2);
}

.rich-content figcaption {
  margin-top: 0.45rem;
  font-size: 0.88rem;
  color: #9db0c0;
  text-align: center;
}

.rich-content code {
  font-family: "Fira Code", "Cascadia Code", monospace;
  font-size: 0.92em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.08rem 0.35rem;
}

.rich-content pre {
  overflow: auto;
  background: rgba(8, 15, 21, 0.9);
  border: 1px solid rgba(127, 210, 244, 0.2);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
}

.rich-content pre code {
  background: transparent;
  border: 0;
  padding: 0;
}

.rich-content hr {
  border: 0;
  border-top: 1px solid rgba(190, 216, 233, 0.35);
  margin: 1.2rem 0;
}

.rich-content table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(127, 210, 244, 0.28);
  border-radius: 10px;
  overflow: hidden;
}

.rich-content th,
.rich-content td {
  border: 1px solid rgba(127, 210, 244, 0.22);
  padding: 0.55rem 0.65rem;
  text-align: start;
}

.rich-content th {
  color: #eaf6ff;
  background: rgba(127, 210, 244, 0.1);
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 10px 0 6px;
}

.section-title p {
  color: var(--text-muted);
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border-radius: var(--radius-md);
  padding: 20px;
}

.card h3,
.card h4 {
  margin-top: 0;
}

.card p,
.card li {
  color: var(--text-muted);
}

.card ul {
  padding-inline-start: 18px;
  margin: 0;
}

.two-col {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.1fr 0.9fr;
}

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.portfolio-caption {
  padding: 16px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  padding: 24px;
  border-radius: var(--radius-md);
  position: relative;
}

.price-card.featured {
  outline: 2px solid rgba(42, 175, 229, 0.45);
  transform: translateY(-6px);
}

.price {
  font-size: 2rem;
  font-weight: 800;
}

.price small {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid .full {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  background: #0f1a23;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--text);
  font: inherit;
  padding: 12px 13px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(42, 175, 229, 0.5);
  outline: 2px solid rgba(42, 175, 229, 0.14);
}

.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.footer h4 {
  margin-top: 0;
  color: var(--text);
}

.toast {
  position: fixed;
  inset-inline-start: 50%;
  transform: translateX(-50%) translateY(110px);
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(16, 26, 35, 0.92);
  color: #caf1ff;
  z-index: 999;
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.table-wrap {
  overflow: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  text-align: start;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

th {
  color: #cae7f3;
  background: rgba(42, 175, 229, 0.08);
  font-size: 0.85rem;
}

.actions-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.action-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #d8ecf5;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.action-icon-btn .iconify {
  font-size: 18px;
}

.action-icon-btn:hover {
  transform: translateY(-1px);
}

.action-icon-btn.view:hover {
  border-color: rgba(42, 175, 229, 0.48);
  background: rgba(42, 175, 229, 0.12);
}

.action-icon-btn.edit:hover {
  border-color: rgba(234, 179, 8, 0.5);
  background: rgba(234, 179, 8, 0.14);
}

.action-icon-btn.delete:hover {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.14);
}

.tag {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.75rem;
  font-weight: 700;
}

.tag.success { background: rgba(34, 197, 94, 0.18); color: #86efac; }
.tag.warn { background: rgba(234, 179, 8, 0.18); color: #fde68a; }
.tag.danger { background: rgba(239, 68, 68, 0.18); color: #fca5a5; }

.dashboard-shell {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 100vh;
}

.sidebar {
  border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 14px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar h2 {
  margin: 0 0 16px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, rgba(42, 175, 229, 0.14), rgba(42, 175, 229, 0.03));
  border: 1px solid rgba(127, 210, 244, 0.18);
}

.sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--text-muted);
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.sidebar a .iconify {
  font-size: 18px;
  opacity: 0.92;
}

.sidebar a:hover,
.sidebar a.active {
  color: #eaf9ff;
  background: rgba(42, 175, 229, 0.14);
  border-color: rgba(127, 210, 244, 0.22);
}

.sidebar a.active {
  box-shadow: inset 0 0 0 1px rgba(42, 175, 229, 0.2);
}

.dashboard-main {
  padding: 22px;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.stats-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat-box {
  border-radius: 14px;
  padding: 16px;
}

.stat-box strong {
  font-size: 1.7rem;
}

.dashboard-kpi {
  position: relative;
  border-radius: 16px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(127, 210, 244, 0.18);
  background: linear-gradient(155deg, rgba(42, 175, 229, 0.14), rgba(17, 29, 40, 0.86));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.dashboard-kpi::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  inset-inline-end: -46px;
  top: -46px;
  background: radial-gradient(circle, rgba(42, 175, 229, 0.2), transparent 70%);
  pointer-events: none;
}

.dashboard-kpi-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.dashboard-kpi-label {
  color: #d5ecf7;
  font-size: 0.9rem;
  font-weight: 700;
}

.dashboard-kpi-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(127, 210, 244, 0.25);
  background: rgba(42, 175, 229, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-kpi-icon .iconify {
  font-size: 20px;
  color: #b5e9ff;
}

.dashboard-kpi-value {
  margin: 0;
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
  line-height: 1;
  font-weight: 800;
  color: #f1fbff;
}

.traffic-panel {
  margin-top: 16px;
}

.traffic-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.traffic-note {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.traffic-canvas-wrap {
  border-radius: 14px;
  border: 1px solid rgba(127, 210, 244, 0.18);
  background: linear-gradient(180deg, rgba(42, 175, 229, 0.08), rgba(12, 19, 26, 0.85));
  padding: 14px;
}

.traffic-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(240px, 0.9fr);
  gap: 14px;
  align-items: stretch;
}

.traffic-side-card {
  border-radius: 14px;
  border: 1px solid rgba(127, 210, 244, 0.2);
  background: linear-gradient(170deg, rgba(42, 175, 229, 0.11), rgba(11, 18, 24, 0.9));
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.traffic-side-stat {
  border: 1px solid rgba(127, 210, 244, 0.14);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.traffic-side-row-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.traffic-side-stat--number-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.traffic-side-stat--number-top .traffic-side-value {
  margin: 0;
}

.traffic-side-stat--number-top .traffic-side-row-head {
  margin-bottom: 0;
}

.traffic-side-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  border: 1px solid rgba(127, 210, 244, 0.24);
  background: rgba(42, 175, 229, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.traffic-side-icon .iconify {
  font-size: 16px;
  color: #b8ebff;
}

.traffic-side-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.traffic-side-value {
  margin: 4px 0 0;
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  font-weight: 800;
  line-height: 1.1;
  color: #e9f8ff;
}

.traffic-side-help {
  margin: 5px 0 0;
  font-size: 0.78rem;
  color: #97b8c9;
}

.traffic-live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.live-indicator {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.13);
  color: #fecaca;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 8px;
}

.live-indicator .iconify {
  font-size: 13px;
  color: #f87171;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  animation: livePulse 1.6s infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.62); }
  70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

#traffic-chart {
  width: 100%;
  height: 280px;
  display: block;
}

@media (max-width: 980px) {
  .traffic-grid {
    grid-template-columns: 1fr;
  }
}

.panel {
  border-radius: 16px;
  padding: 16px;
  margin-top: 16px;
}

.panel h3 {
  margin-top: 0;
}

.form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-inline > * {
  flex: 1 1 160px;
}

.admin-edit-section {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-edit-section h3 {
  margin: 0 0 10px;
}

.admin-edit-section h4 {
  margin: 12px 0 8px;
  color: #cae7f3;
}

.mini-grid {
  margin-bottom: 8px;
}

textarea[data-rich-editor="1"] {
  min-height: 260px;
}

.form-grid .tox,
.form-grid .tox-tinymce,
.form-grid .tox-editor-container {
  grid-column: 1 / -1;
  width: 100%;
}

.form-grid .tox-tinymce {
  border-radius: 12px;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1050px) {
  .hero-grid,
  .two-col,
  .card-grid,
  .pricing,
  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 720px) {
  .error-section {
    min-height: calc(100vh - 190px);
  }

  .error-card {
    border-radius: 18px;
    padding: 22px;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .site-nav .btn-primary {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero,
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-grid,
  .card-grid,
  .two-col,
  .pricing,
  .form-grid,
  .footer-grid,
  .stats-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .site-nav {
    min-height: 70px;
  }

  .price-card.featured {
    transform: none;
  }
}
