/* ===== CUSTOM PROPERTIES ===== */
:root {
  --c5-bg: #15141A;
  --c5-surface: #1D1C22;
  --c5-surface2: #262230;
  --c5-border: #302A3D;
  --c5-accent: #FE617C;
  --c5-accent-light: #FF7E94;
  --c5-text: #FFFFFF;
  --c5-muted: #8F89A6;
  --c5-badge-bg: #27262C;
  --c5-badge-text: #FE617C;
  --c5-code-bg: #222127;
  --c5-warning: #8A7105;
  --c5-radius: 8px;
  --c5-radius-lg: 12px;
  --c5-radius-xl: 16px;
  --c5-contain-max: 1140px;
  --c5-content-max: 800px;
  --c5-gap: 1.5rem;
  --c5-section-pad: 4rem 0;
  --c5-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c5-text);
  background-color: var(--c5-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--c5-accent-light);
  text-decoration: none;
  transition: color var(--c5-transition);
}

a:hover {
  color: var(--c5-accent);
}

a:focus-visible {
  outline: 2px solid var(--c5-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ===== UTILITIES ===== */
.c5-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.c5-contain {
  max-width: var(--c5-contain-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.c5-content-width {
  max-width: var(--c5-content-max);
}

/* ===== HEADER ===== */
.c5-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c5-surface2);
  border-bottom: 1px solid var(--c5-border);
  transition: background var(--c5-transition), backdrop-filter var(--c5-transition);
}

.c5-topbar.c5-scrolled {
  background: rgba(38, 34, 48, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.c5-topbar .c5-contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.c5-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.c5-brand img {
  height: 32px;
  width: auto;
}

.c5-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.c5-nav-list {
  display: flex;
  gap: 0.25rem;
}

.c5-nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c5-muted);
  border-radius: var(--c5-radius);
  transition: color var(--c5-transition), background var(--c5-transition);
}

.c5-nav-link:hover {
  color: var(--c5-text);
  background: rgba(255, 255, 255, 0.05);
}

.c5-nav-link.c5-nav-active {
  color: var(--c5-text);
  background: rgba(254, 97, 124, 0.1);
}

.c5-btn-header {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c5-text);
  background: var(--c5-accent);
  border-radius: var(--c5-radius);
  transition: box-shadow var(--c5-transition), filter var(--c5-transition);
}

.c5-btn-header:hover {
  color: var(--c5-text);
  box-shadow: 0 4px 16px rgba(254, 97, 124, 0.25);
  filter: brightness(1.1);
}

.c5-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}

.c5-mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--c5-text);
  border-radius: 2px;
  transition: transform var(--c5-transition), opacity var(--c5-transition);
}

.c5-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.c5-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.c5-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO / LANDING ===== */
.c5-landing {
  padding: 4rem 0 3.5rem;
  background: var(--c5-bg);
  position: relative;
  overflow: hidden;
}

.c5-landing::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 97, 124, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.c5-landing-compact {
  padding: 3rem 0 2.5rem;
}

.c5-landing-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.c5-landing-content {
  flex: 1;
  min-width: 0;
}

.c5-landing-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c5-landing-emblem {
  width: 160px;
  height: 160px;
  opacity: 0.2;
  filter: grayscale(0.3);
}

.c5-landing-title {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.c5-landing-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c5-muted);
  margin-bottom: 1.75rem;
}

/* ===== PROMO WIDGET ===== */
.c5-widget {
  background: var(--c5-surface);
  border: 1px solid var(--c5-accent);
  border-radius: var(--c5-radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

.c5-widget-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.c5-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--c5-badge-bg);
  color: var(--c5-badge-text);
  border-radius: 100px;
}

.c5-checked-date {
  font-size: 0.8rem;
  color: var(--c5-muted);
}

.c5-widget-body {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.c5-code-display {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--c5-code-bg);
  border: 1px dashed var(--c5-border);
  border-radius: var(--c5-radius);
  padding: 0.75rem 1.25rem;
  min-height: 52px;
}

.c5-code-text {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.05em;
  color: var(--c5-text);
  user-select: all;
}

.c5-copy-trigger {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c5-text);
  background: var(--c5-accent);
  border-radius: var(--c5-radius);
  transition: box-shadow var(--c5-transition), filter var(--c5-transition);
  min-height: 52px;
}

.c5-copy-trigger:hover {
  box-shadow: 0 4px 16px rgba(254, 97, 124, 0.25);
  filter: brightness(1.1);
}

.c5-copy-trigger:focus-visible {
  outline: 2px solid var(--c5-accent-light);
  outline-offset: 2px;
}

.c5-copy-trigger.c5-copied {
  background: #2d8a4e;
}

.c5-widget-note {
  font-size: 0.85rem;
  color: var(--c5-muted);
  line-height: 1.5;
}

/* ===== BUTTONS ===== */
.c5-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--c5-radius);
  transition: box-shadow var(--c5-transition), filter var(--c5-transition), background var(--c5-transition);
  text-align: center;
}

.c5-btn-main {
  color: var(--c5-text);
  background: var(--c5-accent);
}

.c5-btn-main:hover {
  color: var(--c5-text);
  box-shadow: 0 4px 16px rgba(254, 97, 124, 0.25);
  filter: brightness(1.1);
}

.c5-btn-alt {
  color: var(--c5-text);
  background: #242329;
  border: 1px solid var(--c5-border);
}

.c5-btn-alt:hover {
  color: var(--c5-text);
  background: #2e2d34;
}

.c5-btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c5-text);
  background: var(--c5-accent);
  border-radius: var(--c5-radius);
}

.c5-btn-sm:hover {
  color: var(--c5-text);
  box-shadow: 0 4px 16px rgba(254, 97, 124, 0.25);
  filter: brightness(1.1);
}

.c5-landing-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.c5-cta-row {
  margin-top: 2rem;
  text-align: center;
}

/* ===== SECTIONS ===== */
.c5-intro {
  padding: 3rem 0;
  background: var(--c5-surface);
}

.c5-intro p {
  margin-bottom: 1rem;
  color: var(--c5-text);
  line-height: 1.7;
}

.c5-intro p:last-child {
  margin-bottom: 0;
}

.c5-codes-grid {
  padding: var(--c5-section-pad);
  background: var(--c5-bg);
}

.c5-perks-block {
  padding: var(--c5-section-pad);
  background: var(--c5-surface);
}

.c5-steps-block {
  padding: var(--c5-section-pad);
  background: var(--c5-bg);
}

.c5-reqs-block {
  padding: var(--c5-section-pad);
  background: var(--c5-surface);
}

.c5-benefits-block {
  padding: var(--c5-section-pad);
  background: var(--c5-bg);
}

.c5-compare-block {
  padding: var(--c5-section-pad);
  background: var(--c5-surface);
}

.c5-promos-block {
  padding: var(--c5-section-pad);
  background: var(--c5-bg);
}

.c5-trust-block {
  padding: var(--c5-section-pad);
  background: var(--c5-surface);
}

.c5-verdict-block {
  padding: var(--c5-section-pad);
  background: var(--c5-bg);
}

.c5-faq-block {
  padding: var(--c5-section-pad);
  background: var(--c5-surface);
}

.c5-freshness {
  padding: 2rem 0;
  background: var(--c5-bg);
}

.c5-troubleshoot-block {
  padding: var(--c5-section-pad);
  background: var(--c5-surface);
}

.c5-legal-page {
  padding: 3rem 0 4rem;
  background: var(--c5-bg);
}

/* ===== HEADINGS ===== */
.c5-heading-main {
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.c5-heading-sub {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--c5-accent-light);
}

.c5-section-lead {
  color: var(--c5-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.c5-section-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--c5-muted);
}

/* ===== TABLES ===== */
.c5-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--c5-radius-lg);
  border: 1px solid var(--c5-border);
}

.c5-data-table {
  min-width: 560px;
}

.c5-data-table th,
.c5-data-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--c5-border);
  font-size: 0.9rem;
}

.c5-data-table thead th {
  background: var(--c5-surface2);
  font-weight: 600;
  color: var(--c5-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.c5-data-table tbody tr {
  background: var(--c5-surface);
  transition: background var(--c5-transition);
}

.c5-data-table tbody tr:hover {
  background: var(--c5-surface2);
}

.c5-data-table tbody tr:last-child td {
  border-bottom: none;
}

.c5-inline-code {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c5-accent);
  background: var(--c5-code-bg);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

.c5-status-ok {
  color: #4ade80;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

.c5-yes {
  color: #4ade80;
  font-weight: 500;
}

.c5-no {
  color: var(--c5-muted);
  font-weight: 500;
}

/* ===== LISTS ===== */
.c5-perks-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.c5-perks-list li {
  padding: 1rem 1.25rem;
  background: var(--c5-surface2);
  border-radius: var(--c5-radius);
  border-left: 3px solid var(--c5-accent);
  line-height: 1.65;
  font-size: 0.92rem;
}

.c5-req-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.c5-req-list li {
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  background: var(--c5-code-bg);
  border-radius: var(--c5-radius);
  font-size: 0.9rem;
  line-height: 1.65;
  position: relative;
}

.c5-req-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--c5-border);
  border-radius: 3px 0 0 3px;
}

/* ===== STEPS ===== */
.c5-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  counter-reset: none;
}

.c5-step-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--c5-surface);
  border: 1px solid var(--c5-border);
  border-radius: var(--c5-radius-lg);
  transition: border-color var(--c5-transition);
}

.c5-step-card:hover {
  border-color: var(--c5-accent);
}

.c5-step-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--c5-accent);
  color: var(--c5-text);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
}

.c5-step-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.c5-step-card p {
  font-size: 0.9rem;
  color: var(--c5-muted);
  line-height: 1.6;
}

/* ===== PARAGRAPHS IN CONTENT BLOCKS ===== */
.c5-perks-block > .c5-contain > p,
.c5-steps-block > .c5-contain > p,
.c5-reqs-block > .c5-contain > p,
.c5-benefits-block > .c5-contain > p,
.c5-compare-block > .c5-contain > p,
.c5-promos-block > .c5-contain > p,
.c5-trust-block > .c5-contain > p,
.c5-verdict-block > .c5-contain > p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--c5-text);
}

/* ===== FAQ ACCORDION ===== */
.c5-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c5-accordion-item {
  background: var(--c5-surface2);
  border: 1px solid var(--c5-border);
  border-radius: var(--c5-radius-lg);
  overflow: hidden;
  transition: border-color var(--c5-transition);
}

.c5-accordion-item[open] {
  border-color: var(--c5-accent);
}

.c5-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c5-text);
  cursor: pointer;
  list-style: none;
  transition: background var(--c5-transition);
}

.c5-accordion-trigger::-webkit-details-marker {
  display: none;
}

.c5-accordion-trigger::after {
  content: '+';
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c5-muted);
  background: var(--c5-code-bg);
  border-radius: 50%;
  transition: transform var(--c5-transition), color var(--c5-transition);
}

.c5-accordion-item[open] .c5-accordion-trigger::after {
  content: '−';
  color: var(--c5-accent);
  transform: rotate(180deg);
}

.c5-accordion-trigger:hover {
  background: rgba(255, 255, 255, 0.02);
}

.c5-accordion-panel {
  padding: 0 1.25rem 1.25rem;
  animation: c5-slide-in 0.2s ease-out;
}

.c5-accordion-panel p {
  font-size: 0.9rem;
  color: var(--c5-muted);
  line-height: 1.7;
}

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

/* ===== FRESHNESS ===== */
.c5-updated-line {
  font-size: 0.85rem;
  color: var(--c5-muted);
  text-align: center;
  padding: 0.5rem 0;
}

/* ===== BREADCRUMB ===== */
.c5-breadcrumb {
  margin-bottom: 1.5rem;
}

.c5-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.c5-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c5-muted);
}

.c5-breadcrumb li + li::before {
  content: '›';
  color: var(--c5-border);
}

.c5-breadcrumb a {
  color: var(--c5-muted);
}

.c5-breadcrumb a:hover {
  color: var(--c5-text);
}

/* ===== LEGAL PAGES ===== */
.c5-legal-updated {
  font-size: 0.85rem;
  color: var(--c5-muted);
  margin-bottom: 2.5rem;
}

.c5-legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--c5-text);
}

.c5-legal-content p {
  margin-bottom: 0.85rem;
  line-height: 1.7;
  color: var(--c5-muted);
}

.c5-legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.c5-legal-content ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--c5-muted);
  line-height: 1.65;
}

.c5-legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--c5-accent);
}

.c5-legal-content a {
  color: var(--c5-accent-light);
}

/* ===== FOOTER ===== */
.c5-footer {
  background: var(--c5-surface);
  border-top: 1px solid var(--c5-border);
  padding: 3rem 0 0;
}

.c5-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--c5-border);
}

.c5-footer-brand img {
  height: 28px;
  width: auto;
  margin-bottom: 1rem;
}

.c5-footer-desc {
  font-size: 0.85rem;
  color: var(--c5-muted);
  line-height: 1.6;
  max-width: 320px;
}

.c5-footer-links h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c5-muted);
  margin-bottom: 1rem;
}

.c5-footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.c5-footer-links a {
  font-size: 0.88rem;
  color: var(--c5-text);
  opacity: 0.8;
  transition: opacity var(--c5-transition);
}

.c5-footer-links a:hover {
  opacity: 1;
  color: var(--c5-accent-light);
}

.c5-footer-warning {
  padding: 2rem 0;
  text-align: center;
  border-bottom: 1px solid var(--c5-border);
}

.c5-warning-text {
  font-size: 1rem;
  font-weight: 700;
  color: #facc15;
  margin-bottom: 0.75rem;
}

.c5-warning-detail {
  font-size: 0.82rem;
  color: var(--c5-muted);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 1.25rem;
}

.c5-warning-detail a {
  color: var(--c5-accent-light);
}

.c5-rg-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.c5-rg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid #facc15;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  color: #facc15;
}

.c5-rg-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c5-muted);
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--c5-border);
  border-radius: 100px;
  transition: border-color var(--c5-transition), color var(--c5-transition);
}

.c5-rg-link:hover {
  border-color: var(--c5-muted);
  color: var(--c5-text);
}

.c5-footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}

.c5-footer-bottom p {
  font-size: 0.78rem;
  color: var(--c5-muted);
  opacity: 0.7;
}

/* ===== SCROLL TO TOP ===== */
.c5-scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c5-accent);
  color: var(--c5-text);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--c5-transition), visibility var(--c5-transition), transform var(--c5-transition), box-shadow var(--c5-transition);
  z-index: 900;
}

.c5-scroll-top.c5-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.c5-scroll-top:hover {
  box-shadow: 0 6px 20px rgba(254, 97, 124, 0.35);
  filter: brightness(1.1);
}

.c5-scroll-top:focus-visible {
  outline: 2px solid var(--c5-accent-light);
  outline-offset: 3px;
}

/* ===== MOBILE NAV OVERLAY ===== */
.c5-mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 20, 26, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  padding: 2rem 1.25rem;
  flex-direction: column;
  gap: 0.5rem;
  animation: c5-fade-in 0.2s ease-out;
}

.c5-mobile-nav.c5-open {
  display: flex;
}

.c5-mobile-nav a {
  display: block;
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c5-text);
  border-radius: var(--c5-radius);
  transition: background var(--c5-transition);
}

.c5-mobile-nav a:hover {
  background: var(--c5-surface2);
  color: var(--c5-text);
}

.c5-mobile-nav .c5-btn-main {
  margin-top: 1rem;
  text-align: center;
}

@keyframes c5-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root {
    --c5-section-pad: 2.5rem 0;
  }

  .c5-nav {
    display: none;
  }

  .c5-btn-header {
    display: none;
  }

  .c5-mobile-toggle {
    display: flex;
  }

  .c5-landing-inner {
    flex-direction: column;
    gap: 0;
  }

  .c5-landing-visual {
    display: none;
  }

  .c5-landing {
    padding: 2.5rem 0 2rem;
  }

  .c5-landing-compact {
    padding: 2rem 0 1.5rem;
  }

  .c5-widget-body {
    flex-direction: column;
  }

  .c5-landing-actions {
    flex-direction: column;
  }

  .c5-landing-actions .c5-btn {
    width: 100%;
    justify-content: center;
  }

  .c5-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .c5-step-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .c5-scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  .c5-cta-row .c5-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .c5-topbar .c5-contain {
    height: 56px;
  }

  .c5-brand img {
    height: 26px;
  }

  .c5-landing-title {
    font-size: 1.35rem;
  }

  .c5-heading-main {
    font-size: 1.2rem;
  }

  .c5-widget {
    padding: 1.15rem;
  }

  .c5-data-table th,
  .c5-data-table td {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
  }

  .c5-perks-list li {
    padding: 0.85rem 1rem;
    font-size: 0.87rem;
  }
}