/* ========== Site Header ========== */
.dc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0 0;
  background: transparent;
  transition: padding 0.3s ease;
}

.dc-header.is-scrolled {
  padding: 10px 0 0;
}

.dc-header.is-open {
  background: transparent;
}

.dc-header__bar {
  width: min(calc(100% - 32px), 1440px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(15, 17, 16, 0.12);
}

.dc-header__nav {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.dc-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.dc-nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  font: 600 0.9rem/1 "Inter", system-ui, sans-serif;
  color: rgba(26, 26, 26, 0.78);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.dc-nav-btn:hover,
.dc-nav-btn[aria-expanded="true"] {
  color: #1a1a1a;
  background: rgba(26, 26, 26, 0.04);
}

.dc-nav-btn__chevron {
  width: 12px;
  height: 12px;
  opacity: 0.55;
  transition: transform 0.25s ease;
}

.dc-nav-btn[aria-expanded="true"] .dc-nav-btn__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.dc-nav-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-green, #d6e02c);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.dc-nav-btn[aria-expanded="true"]::after {
  width: 18px;
}

.dc-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  background: #fff;
  display: inline-grid;
  place-items: center;
  color: #1a1a1a;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.dc-icon-btn:hover {
  background: #f4f4f2;
  border-color: rgba(26, 26, 26, 0.14);
}

.dc-icon-btn svg {
  width: 18px;
  height: 18px;
}

.dc-cta-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font: 700 0.88rem/1 "Inter", system-ui, sans-serif;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.dc-cta-btn:hover,
.dc-cta-btn:focus,
.dc-cta-btn:active,
.dc-cta-btn:visited {
  background: var(--brand-green, #d6e02c);
  color: #1a1a1a;
  text-decoration: none;
  transform: translateY(-1px);
}

.dc-profile-btn {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: #fff;
  color: #1a1a1a;
  font: 700 0.88rem/1 "Inter", system-ui, sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dc-profile-btn:hover {
  background: #fffeef;
  border-color: rgba(214, 224, 44, 0.7);
  transform: translateY(-1px);
}

.dc-menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 0;
  background: #1a1a1a;
  color: #fff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.dc-menu-toggle svg {
  width: 18px;
  height: 18px;
}

/* ========== Desktop Mega Menu ========== */
.dc-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 2px);
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 999;
}

.dc-mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dc-mega__panel {
  width: min(calc(100% - 24px), 1440px);
  margin: 0 auto;
  background: #f6f5f1;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 28px 80px rgba(15, 17, 16, 0.14);
  padding: 28px 28px 36px;
  max-height: min(86vh, 860px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(26, 26, 26, 0.22) transparent;
}

.dc-mega__panel::-webkit-scrollbar {
  width: 8px;
}

.dc-mega__panel::-webkit-scrollbar-thumb {
  background: rgba(26, 26, 26, 0.18);
  border-radius: 999px;
}

.dc-mega__panel::-webkit-scrollbar-track {
  background: transparent;
}

.dc-mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr minmax(240px, 0.95fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 8px;
}

.dc-mega__grid--promos {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.dc-mega__col {
  min-width: 0;
}

.dc-mega__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  margin: 0 0 12px 4px;
}

.dc-mega__list {
  list-style: none;
  margin: 0;
  padding: 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dc-menu-card {
  display: grid;
  grid-template-columns: 40px 1fr 16px;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.07);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.dc-menu-card:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 224, 44, 0.65);
  box-shadow: 0 10px 28px rgba(15, 17, 16, 0.07);
  background: #fffeef;
}

.dc-menu-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  display: grid;
  place-items: center;
  color: #1a1a1a;
  background: #fafaf9;
  flex-shrink: 0;
}

.dc-menu-card__icon svg {
  width: 18px;
  height: 18px;
}

.dc-menu-card__title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  margin-bottom: 2px;
  line-height: 1.25;
}

.dc-menu-card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(26, 26, 26, 0.55);
}

.dc-menu-card__arrow {
  width: 16px;
  height: 16px;
  color: rgba(26, 26, 26, 0.35);
  transition: transform 0.22s ease, color 0.22s ease;
}

.dc-menu-card:hover .dc-menu-card__arrow {
  transform: translateX(3px);
  color: #1a1a1a;
}

.dc-promo-card {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  height: calc(100% - 0px);
  max-height: calc(86vh - 120px);
  border-radius: 22px;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 224, 44, 0.35), transparent 42%),
    linear-gradient(160deg, #1a1a1a 0%, #242820 55%, #121412 100%);
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  align-self: start;
}

.dc-mega__grid--promos .dc-promo-card {
  position: relative;
  top: auto;
  min-height: 500px;
  height: auto;
  max-height: none;
  align-self: stretch;
  display: grid;
  grid-template-rows: 188px auto auto 1fr auto;
  justify-content: stretch;
  padding: 22px;
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.dc-promo-card--light {
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 18px 44px rgba(15, 17, 16, 0.06);
}

.dc-promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.55) 100%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.03) 18px,
      rgba(255, 255, 255, 0.03) 19px
    );
  z-index: 0;
}

.dc-promo-card--light::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.92) 100%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 18px,
      rgba(26, 26, 26, 0.025) 18px,
      rgba(26, 26, 26, 0.025) 19px
    );
}

.dc-promo-card > * {
  position: relative;
  z-index: 1;
}

.dc-promo-card__visual {
  position: absolute;
  top: 22px;
  right: 18px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 30%, #f2f7a0, transparent 45%),
    linear-gradient(145deg, rgba(214, 224, 44, 0.9), rgba(26, 26, 26, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.dc-promo-card__visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.dc-promo-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(214, 224, 44, 0.55);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.dc-mega__grid--promos .dc-promo-card__media {
  height: 188px;
  aspect-ratio: auto;
  margin-bottom: 22px;
}

.dc-promo-card--light .dc-promo-card__media {
  border-color: rgba(26, 26, 26, 0.08);
  background: #f7f6f0;
  box-shadow: 0 18px 36px rgba(15, 17, 16, 0.08);
}

.dc-promo-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-promo-card__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-green, #d6e02c);
  margin-bottom: 10px;
}

.dc-promo-card--light .dc-promo-card__kicker {
  color: #9aa311;
}

.dc-promo-card__title {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 10px;
  max-width: 16ch;
}

.dc-promo-card:not(.dc-promo-card--light) .dc-promo-card__title {
  color: #fff;
}

.dc-mega__grid--promos .dc-promo-card__title {
  max-width: none;
  min-height: 2.3em;
}

.dc-promo-card__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 18px;
  max-width: 28ch;
}

.dc-promo-card:not(.dc-promo-card--light) .dc-promo-card__desc {
  color: rgba(255, 255, 255, 0.78);
}

.dc-mega__grid--promos .dc-promo-card__desc {
  max-width: none;
  min-height: 4.65em;
}

.dc-promo-card--light .dc-promo-card__desc {
  color: rgba(26, 26, 26, 0.62);
}

.dc-promo-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a1a;
  background: var(--brand-green, #d6e02c);
  border-radius: 999px;
  padding: 11px 16px;
  width: fit-content;
  transition: transform 0.2s ease, gap 0.2s ease;
}

.dc-mega__grid--promos .dc-promo-card__cta {
  margin-top: auto;
}

.dc-promo-card--light .dc-promo-card__cta {
  background: #1a1a1a;
  color: #fff;
}

.dc-promo-card:hover .dc-promo-card__cta {
  transform: translateY(-1px);
  gap: 12px;
}

.dc-mega--resources .dc-mega__panel {
  max-height: min(calc(100vh - 120px), 520px);
}

.dc-mega--resources .dc-mega__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
  padding-bottom: 0;
}

.dc-mega--resources .dc-promo-card {
  position: relative;
  top: auto;
  min-height: 0;
  height: auto;
  max-height: none;
  align-self: start;
  justify-content: flex-start;
  padding: 24px;
  border-radius: 16px;
}

.dc-mega--resources .dc-promo-card--compact {
  min-height: 296px;
}

.dc-mega--resources .dc-promo-card--compact .dc-promo-card__visual,
.dc-mega--resources .dc-promo-card--compact .dc-promo-card__media {
  display: none;
}

.dc-mega--resources .dc-promo-card__kicker {
  margin-bottom: 18px;
}

.dc-mega--resources .dc-promo-card__title {
  max-width: none;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.dc-mega--resources .dc-promo-card__desc {
  max-width: none;
  margin-bottom: 24px;
}

.dc-mega--resources .dc-promo-card__cta {
  margin-top: auto;
}

/* Backdrop */
.dc-mega-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 16, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  z-index: 900;
  backdrop-filter: blur(2px);
}

.dc-mega-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* ========== Search Modal ========== */
.dc-search {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: start center;
  padding: 12vh 16px 24px;
  background: rgba(15, 17, 16, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
}

.dc-search.is-open {
  opacity: 1;
  visibility: visible;
}

.dc-search__panel {
  width: min(100%, 640px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  padding: 18px;
  transform: translateY(12px);
  transition: transform 0.22s ease;
}

.dc-search.is-open .dc-search__panel {
  transform: none;
}

.dc-search__row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fafaf9;
}

.dc-search__row svg {
  width: 18px;
  height: 18px;
  opacity: 0.5;
  flex-shrink: 0;
}

.dc-search__input {
  flex: 1;
  border: 0;
  background: transparent;
  font: 500 1rem/1.3 "Inter", system-ui, sans-serif;
  color: #1a1a1a;
  outline: none;
}

.dc-search__hint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(26, 26, 26, 0.5);
}

/* ========== Profile Download Modal ========== */
.dc-profile-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 17, 16, 0.56);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
  backdrop-filter: blur(4px);
}

.dc-profile-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.dc-profile-modal__panel {
  position: relative;
  width: min(100%, 540px);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 10%, rgba(214, 224, 44, 0.2), transparent 30%),
    #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  transform: translateY(12px);
  transition: transform 0.22s ease;
}

.dc-profile-modal.is-open .dc-profile-modal__panel {
  transform: none;
}

.dc-profile-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 12px;
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
}

.dc-profile-modal__close svg {
  width: 18px;
  height: 18px;
}

.dc-profile-modal__kicker {
  margin: 0 0 10px;
  color: #9ba511;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dc-profile-modal h2 {
  margin: 0;
  max-width: 12ch;
  color: #1a1a1a;
  font-size: clamp(2rem, 7vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.dc-profile-modal__lead,
.dc-profile-modal__note {
  margin: 14px 0 0;
  color: rgba(26, 26, 26, 0.62);
  line-height: 1.65;
}

.dc-profile-modal__note {
  font-size: 0.82rem;
}

.dc-profile-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.dc-profile-form label {
  display: grid;
  gap: 7px;
}

.dc-profile-form span {
  color: rgba(26, 26, 26, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

.dc-profile-form input,
.dc-profile-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(26, 26, 26, 0.11);
  border-radius: 14px;
  background: #fbfaf7;
  padding: 0 14px;
  color: #1a1a1a;
  font: 600 0.94rem/1.2 "Inter", system-ui, sans-serif;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.dc-profile-form input:focus,
.dc-profile-form select:focus {
  background: #fff;
  border-color: rgba(214, 224, 44, 0.9);
  box-shadow: 0 0 0 4px rgba(214, 224, 44, 0.18);
}

.dc-profile-form__submit {
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font: 800 0.95rem/1 "Inter", system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dc-profile-form__submit:hover {
  background: var(--brand-green, #d6e02c);
  color: #1a1a1a;
  transform: translateY(-1px);
}

/* ========== Mobile Drawer ========== */
.dc-mobile {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
}

.dc-mobile.is-open {
  transform: none;
}

.dc-mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.dc-mobile__close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.dc-mobile__body {
  flex: 1;
  overflow: auto;
  padding: 8px 16px 24px;
  -webkit-overflow-scrolling: touch;
}

.dc-mobile__intro {
  padding: 16px 4px 18px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.55);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  margin-bottom: 4px;
}

.dc-acc {
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.dc-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 4px;
  border: 0;
  background: transparent;
  font: 700 1.05rem/1.2 "Inter", system-ui, sans-serif;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
}

.dc-acc__btn span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dc-acc__count {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.4);
}

.dc-acc__chevron {
  width: 18px;
  height: 18px;
  color: rgba(26, 26, 26, 0.4);
  transition: transform 0.25s ease;
}

.dc-acc.is-open .dc-acc__chevron {
  transform: rotate(90deg);
}

.dc-acc__panel {
  display: none;
  padding: 0 0 16px;
}

.dc-acc.is-open .dc-acc__panel {
  display: block;
}

.dc-acc__section {
  margin-bottom: 14px;
}

.dc-acc__section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.4);
  margin: 0 0 8px 4px;
}

.dc-acc__links {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f4f3ee;
  border-radius: 16px;
  overflow: hidden;
}

.dc-acc__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

.dc-acc__links li:last-child a {
  border-bottom: 0;
}

.dc-acc__links strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.dc-acc__links small {
  display: block;
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.5);
  line-height: 1.35;
}

.dc-acc__links svg {
  width: 16px;
  height: 16px;
  color: rgba(26, 26, 26, 0.35);
  flex-shrink: 0;
}

.dc-mobile__promo {
  margin-top: 10px;
  border-radius: 18px;
  padding: 18px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  display: block;
}

.dc-mobile__promo strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.dc-mobile__promo span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
  margin-bottom: 12px;
}

.dc-mobile__promo em {
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a1a1a;
  background: var(--brand-green, #d6e02c);
  border-radius: 999px;
  padding: 8px 12px;
  display: inline-block;
}

.dc-mobile__footer {
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  padding: 14px 16px max(16px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #fff;
}

.dc-mobile__footer a,
.dc-mobile__footer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  font: 700 0.9rem/1 "Inter", system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.dc-mobile__footer .is-ghost {
  border: 1px solid rgba(26, 26, 26, 0.12);
  color: #1a1a1a;
  background: #fff;
}

.dc-mobile__footer .is-primary {
  background: var(--brand-green, #d6e02c);
  color: #1a1a1a;
}

/* ========== Responsive ========== */
@media (min-width: 1100px) {
  .dc-header__nav {
    display: flex;
  }

  .dc-cta-btn {
    display: inline-flex;
  }

  .dc-profile-btn {
    display: inline-flex;
  }

  .dc-menu-toggle {
    display: none;
  }

  .dc-header__bar {
    width: min(calc(100% - 48px), 1440px);
    padding: 8px 10px 8px 22px;
  }

  .dc-header.is-scrolled .dc-header__bar {
    box-shadow: 0 10px 32px rgba(15, 17, 16, 0.14);
  }
}

@media (max-width: 1099px) {
  .dc-mega,
  .dc-mega-backdrop {
    display: none !important;
  }

  .dc-header {
    padding: 12px 0 0;
  }

  .dc-header__bar {
    min-height: 58px;
    padding: 8px 10px 8px 16px;
    box-shadow: 0 10px 30px rgba(15, 17, 16, 0.1);
  }

  .site-logo--header .site-logo__img {
    height: 32px;
    max-width: min(150px, 42vw);
  }
}

@media (max-width: 1280px) and (min-width: 1100px) {
  .dc-nav-btn {
    padding: 10px 8px;
    font-size: 0.84rem;
  }

  .dc-mega__grid {
    grid-template-columns: 1fr 1fr 1fr 0.9fr;
    gap: 16px;
  }

  .dc-mega__grid--promos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .dc-mega__grid--promos .dc-promo-card {
    min-height: 460px;
    padding: 20px;
    grid-template-rows: 160px auto auto 1fr auto;
  }

  .dc-mega__grid--promos .dc-promo-card__media {
    height: 160px;
    margin-bottom: 20px;
  }

  .dc-mega--resources .dc-mega__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .dc-mega--resources .dc-promo-card--compact {
    min-height: 280px;
    padding: 20px;
  }

  .dc-menu-card {
    grid-template-columns: 36px 1fr 14px;
    min-height: 68px;
    padding: 10px 12px;
  }
}

@media (max-width: 900px) {
  .dc-mobile__footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dc-mega,
  .dc-mobile,
  .dc-search,
  .dc-menu-card {
    transition: none !important;
  }
}
