/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #162033;
  background:
    radial-gradient(circle at top left, rgba(232, 69, 69, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(20, 24, 48, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, #ffffff 36%, #f7f8fb 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
button, input, select, textarea { font: inherit; }

:root {
  --primary: #e84545;
  --primary-dark: #c73232;
  --primary-soft: #fff0f0;
  --accent: #101827;
  --text: #162033;
  --text-muted: #5f6b7e;
  --border: #e5e8ef;
  --bg-light: #f6f7fb;
  --bg-card: rgba(255, 255, 255, 0.86);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
  --shadow-strong: 0 28px 60px rgba(17, 24, 39, 0.14);
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute;
  left: 20px;
  top: -48px;
  background: #fff;
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 1000;
}
.skip-link:focus { top: 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading-tight { margin-bottom: 26px; }

.section-heading h2,
.benefits h2,
.register-copy h2,
.faq-section h2,
.feature-band h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin-top: 14px;
  letter-spacing: -0.04em;
}

.section-heading p,
.register-copy p,
.feature-band p,
.benefit-card p,
.step p,
.faq-item p,
.hero-sub {
  color: var(--text-muted);
}

/* ===== Logo ===== */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.logo-get { color: var(--primary); }
.logo-eat { color: var(--accent); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(232, 69, 69, 0.25);
}
.btn-primary:hover {
  color: #fff;
  box-shadow: 0 20px 34px rgba(232, 69, 69, 0.32);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent);
  border-color: rgba(22, 32, 51, 0.1);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  color: var(--accent);
  border-color: rgba(22, 32, 51, 0.14);
  background: #fff;
}
.btn-sm { padding: 8px 14px; font-size: 13px; min-height: 38px; }
.btn-lg { padding: 14px 28px; font-size: 16px; min-height: 52px; }
.btn-block { display: flex; width: 100%; }

/* ===== Forms ===== */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--accent);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 15px;
  background: #fff;
  color: var(--accent);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #98a2b3; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(232, 69, 69, 0.55);
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 69, 69, 0.12);
}
.checkbox-label { display: flex; align-items: center; gap: 8px; font-weight: 400; cursor: pointer; }
.checkbox-label input { width: auto; }
.form-row { display: flex; gap: 8px; }
.form-row input { flex: 1; }

/* ===== Alerts ===== */
.alert {
  padding: 12px 16px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: 600;
}
.alert-error { background: #fdecec; color: #a91f1f; border: 1px solid #f6c5c5; }
.alert-success { background: #e8f9ef; color: #167a43; border: 1px solid #b8e8cb; }
.text-error { color: #e74c3c; font-size: 14px; }
.text-muted { color: var(--text-muted); font-size: 13px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(229, 232, 239, 0.9);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}
.site-header nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.site-header nav a:not(.btn) {
  font-weight: 700;
  color: var(--text);
  opacity: 0.88;
}
.site-header nav a:not(.btn):hover { color: var(--primary); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 84px 0 44px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 69, 69, 0.18), rgba(232, 69, 69, 0) 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
  margin: 14px 0 20px;
  letter-spacing: -0.06em;
  max-width: 11ch;
}
.hero-sub {
  font-size: 18px;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin: 30px 0 22px;
  flex-wrap: wrap;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}
.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(229, 232, 239, 0.9);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.hero-panel {
  display: grid;
  gap: 16px;
}
.hero-card {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid rgba(229, 232, 239, 0.95);
  box-shadow: var(--shadow-strong);
}
.hero-card-primary {
  padding: 28px;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(16, 24, 39, 0.98) 0%, rgba(16, 24, 39, 0.84) 100%),
    linear-gradient(135deg, rgba(232, 69, 69, 0.5), rgba(232, 69, 69, 0));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-card-primary::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-card-primary::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 69, 69, 0.6), rgba(232, 69, 69, 0) 72%);
}
.hero-card-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-card-title {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  max-width: 10ch;
  letter-spacing: -0.05em;
}
.hero-card-line {
  position: relative;
  z-index: 1;
  height: 14px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.hero-card-line-lg { width: 90%; margin-top: 28px; }
.hero-card-line:nth-of-type(3) { width: 74%; }
.hero-card-price {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-card-price span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}
.hero-card-price strong {
  font-size: 34px;
  letter-spacing: -0.05em;
}
.hero-card-secondary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}
.mini-metric {
  padding: 16px 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(229, 232, 239, 0.95);
}
.mini-metric span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.mini-metric strong {
  display: block;
  color: var(--accent);
  font-size: 16px;
  line-height: 1.15;
}

/* ===== Proof strip ===== */
.proof-strip { padding: 12px 0 34px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.proof-item {
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(229, 232, 239, 0.95);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.05);
}
.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--accent);
}
.proof-item span {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== Benefits ===== */
.benefits { padding: 84px 0; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.benefit-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(229, 232, 239, 0.95);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.benefit-card h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

/* ===== How it works ===== */
.how {
  padding: 84px 0;
  background:
    linear-gradient(180deg, rgba(246, 247, 251, 0.85) 0%, rgba(246, 247, 251, 1) 100%);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.step {
  background: rgba(255, 255, 255, 0.88);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(229, 232, 239, 0.95);
  box-shadow: var(--shadow);
}
.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 16px 30px rgba(232, 69, 69, 0.22);
}
.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

/* ===== Feature band ===== */
.feature-band { padding: 12px 0 84px; }
.feature-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(16, 24, 39, 0.98) 0%, rgba(16, 24, 39, 0.84) 100%);
  color: #fff;
  box-shadow: var(--shadow-strong);
}
.feature-band .eyebrow,
.feature-band p { color: rgba(255, 255, 255, 0.72); }
.feature-band .eyebrow::before { background: rgba(232, 69, 69, 0.95); }
.feature-band h2 { margin-top: 12px; }

/* ===== Visual gallery ===== */
.visual-gallery { padding: 0 0 84px; }
.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.visual-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(229, 232, 239, 0.95);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.visual-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  margin-bottom: 16px;
}
.visual-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.visual-card p { color: var(--text-muted); }
.article-grid .visual-card h3 a {
  color: var(--accent);
}
.article-grid .visual-card h3 a:hover {
  color: var(--primary);
}
.article-excerpts {
  padding: 0 0 84px;
}
.article-excerpts .article-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.article-excerpts .visual-card {
  padding: 20px;
}
.article-excerpts .visual-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.article-excerpts .visual-card p {
  font-size: 14px;
}

/* ===== Register section ===== */
.register-section { padding: 0 0 84px; }
.register-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}
.register-copy {
  padding: 8px 4px;
}
.register-copy p { margin-top: 14px; }
.check-list {
  margin-top: 22px;
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--accent);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: var(--primary);
  font-weight: 900;
}
.register-box {
  max-width: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.92);
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(229, 232, 239, 0.95);
  box-shadow: var(--shadow-strong);
}
.register-form { margin-top: 8px; }

/* ===== FAQ ===== */
.faq-section { padding: 0 0 90px; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 232, 239, 0.95);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
  color: var(--accent);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-weight: 900;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 22px 20px;
  max-width: 66ch;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.72);
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}
.footer-links a:hover { color: #fff; }

/* ===== Content Pages ===== */
.content-page {
  padding-bottom: 80px;
}
.content-hero {
  padding: 72px 0 28px;
}
.content-shell {
  max-width: 860px;
}
.content-hero h1 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.content-hero p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 18px;
}
.content-stack {
  display: grid;
  gap: 16px;
}
.content-card,
.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 232, 239, 0.95);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.content-card h2,
.contact-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.content-card p,
.contact-card p {
  color: var(--text-muted);
}
.contact-card a {
  color: var(--primary);
  font-weight: 800;
}
.content-shell .contact-card + .contact-card {
  margin-top: 16px;
}
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.article-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.article-pagination-status {
  font-weight: 800;
  color: var(--text-muted);
}
.article-date {
  margin: 8px 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
}
.article-hero-image,
.article-card-image,
.article-feature-preview {
  overflow: hidden;
  border-radius: 22px;
  background: #eef2f7;
  border: 1px solid rgba(229, 232, 239, 0.95);
}
.article-hero-image {
  margin: 0 0 18px;
}
.article-hero-image img,
.article-card-image img,
.article-feature-preview img {
  width: 100%;
  height: auto;
  display: block;
}
.article-card-image {
  margin-bottom: 14px;
}
.article-feature-preview {
  margin-bottom: 16px;
}
.article-feature-preview {
  padding: 12px;
}
.article-feature-preview img {
  max-height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

/* ===== Superadmin ===== */
.superadmin-page {
  background:
    radial-gradient(circle at top left, rgba(232, 69, 69, 0.12), transparent 26%),
    linear-gradient(180deg, #fffdfb 0%, #f6f7fb 100%);
}
.superadmin-page .container {
  max-width: none;
}
.superadmin-header {
  padding: 34px 0 16px;
}
.superadmin-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.superadmin-header h1 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.superadmin-header p {
  margin-top: 10px;
  color: var(--text-muted);
}
.superadmin-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.superadmin-main {
  width: 100%;
  padding: 8px 0 72px;
}
.superadmin-section {
  padding: 0 20px;
  margin-top: 18px;
}
.superadmin-kpis,
.superadmin-grid,
.superadmin-quicklinks {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.superadmin-quicklinks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.superadmin-card,
.superadmin-panel,
.superadmin-link-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 232, 239, 0.95);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.superadmin-card h2 {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.superadmin-card p {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.superadmin-link-card strong,
.superadmin-panel h2 {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--accent);
}
.superadmin-link-card span,
.superadmin-panel p {
  color: var(--text-muted);
}
.superadmin-link-card {
  display: grid;
  gap: 8px;
}
.superadmin-panel {
  min-width: 0;
}
.superadmin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.superadmin-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.9fr);
  gap: 18px;
  align-items: start;
}
.superadmin-article-main {
  min-width: 0;
}
.superadmin-article-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 24px;
}
.superadmin-table-wrap {
  overflow: auto;
}
.superadmin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}
.superadmin-table th,
.superadmin-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eef1f6;
  text-align: left;
  vertical-align: top;
}
.superadmin-table th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.superadmin-pagination,
.superadmin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.superadmin-filters {
  display: grid;
  gap: 18px;
}
.superadmin-filter-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.superadmin-chart-stack {
  display: grid;
  gap: 18px;
}
.superadmin-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid,
  .register-grid,
  .feature-band-inner,
  .proof-grid,
  .benefit-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 { max-width: none; }
  .hero { padding-top: 62px; }
  .proof-grid { gap: 12px; }

  .superadmin-kpis,
  .superadmin-grid,
  .superadmin-quicklinks,
  .superadmin-filter-grid,
  .superadmin-article-layout {
    grid-template-columns: 1fr;
  }

  .superadmin-header-inner {
    flex-direction: column;
  }

  .superadmin-header-actions {
    justify-content: flex-start;
  }

  .superadmin-article-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 72px;
    align-items: flex-start;
    padding: 14px 0;
  }
  .site-header nav { gap: 10px; }
  .site-header nav a:not(.btn) { display: none; }
  .hero {
    padding: 42px 0 24px;
  }
  .hero-copy h1 {
    font-size: clamp(34px, 11vw, 52px);
  }
  .hero-sub { font-size: 16px; }
  .hero-card-secondary {
    grid-template-columns: 1fr;
  }
  .register-box {
    padding: 24px 18px;
    border-radius: 22px;
  }
  .benefit-card,
  .step,
  .proof-item,
  .feature-band-inner {
    padding: 22px;
  }
  .feature-band {
    padding-bottom: 64px;
  }
  .visual-gallery {
    padding-bottom: 64px;
  }
  .visual-grid {
    grid-template-columns: 1fr;
  }
  .article-excerpts {
    padding-bottom: 64px;
  }
  .article-excerpts .article-grid {
    grid-template-columns: 1fr;
  }
}

.article-promo {
  padding: 0 0 84px;
}
.article-promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(16, 24, 39, 0.98) 0%, rgba(16, 24, 39, 0.82) 100%);
  color: #fff;
  box-shadow: var(--shadow-strong);
}
.article-promo-inner p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  max-width: 68ch;
}
.article-promo .eyebrow { color: #fff; }
.article-promo .eyebrow::before { background: rgba(232, 69, 69, 0.95); }

@media (max-width: 720px) {
  .article-promo {
    padding-bottom: 64px;
  }
  .article-promo-inner {
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .superadmin-section {
    padding: 0 16px;
  }
}
