/*
Theme Name: M9Asia Light
Theme URI: https://m9asia.co/
Author: Codex
Description: Lightweight WordPress theme for M9Asia with an SEO-focused front page and minimal assets.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: m9asia-light
*/

:root {
  --m9-bg: #090a0c;
  --m9-panel: #111317;
  --m9-panel-soft: #181b20;
  --m9-text: #f7f5ef;
  --m9-muted: #c9c1ad;
  --m9-gold: #f6c65b;
  --m9-gold-2: #d99b26;
  --m9-red: #da2f2f;
  --m9-green: #21b36b;
  --m9-line: rgba(246, 198, 91, 0.22);
  --m9-max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--m9-bg);
  color: var(--m9-text);
  font-family: "Noto Sans Myanmar", "Myanmar Text", "Padauk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: #08090b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: auto auto;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--m9-max);
  min-height: 72px;
  padding: 10px 18px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  border-radius: 8px;
  height: 46px;
  width: 46px;
}

.brand span {
  color: var(--m9-gold);
  font-size: 20px;
}

.menu-shell {
  position: relative;
}

.menu-shell summary {
  list-style: none;
}

.menu-shell summary::-webkit-details-marker {
  display: none;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.menu-toggle svg {
  fill: currentColor;
  height: 28px;
  transition: transform 0.18s ease;
  width: 28px;
}

.menu-shell[open] .menu-toggle svg {
  transform: rotate(180deg);
}

.main-nav {
  background: #08090b;
  border: 1px solid rgba(246, 198, 91, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  display: grid;
  gap: 4px;
  min-width: min(88vw, 360px);
  padding: 10px;
  position: absolute;
  right: 0;
  top: 52px;
}

.main-nav a {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 11px 12px;
}

.main-nav a:hover,
.main-nav a:focus {
  background: rgba(246, 198, 91, 0.12);
  border-color: rgba(246, 198, 91, 0.42);
  color: var(--m9-gold);
  outline: none;
}

.hero {
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.98) 0%, rgba(9, 10, 12, 0.88) 48%, rgba(9, 10, 12, 0.52) 100%),
    url("https://m9asia.co/wp-content/uploads/2026/03/free5000-m9asia.webp") center right / contain no-repeat,
    #090a0c;
}

.hero-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  margin: 0 auto;
  max-width: var(--m9-max);
  min-height: 560px;
  padding: 58px 18px 48px;
}

.hero-copy {
  align-self: center;
  max-width: 690px;
}

.eyebrow {
  color: var(--m9-gold);
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 8px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: #fff;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.22;
  margin-bottom: 16px;
}

.hero-copy p {
  color: var(--m9-muted);
  font-size: 18px;
  margin-bottom: 24px;
  max-width: 660px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-panel {
  background: rgba(7, 8, 8, 0.82);
  border: 1px solid var(--m9-line);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28), 0 0 20px rgba(246, 198, 91, 0.06);
  margin-top: 12px;
  padding: 14px;
  width: min(100%, 440px);
}

.service-title {
  color: var(--m9-gold);
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 10px;
  text-align: center;
}

.service-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chat-btn {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  padding: 11px 14px;
  position: relative;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.chat-btn::before {
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 72%);
  content: "";
  height: 160%;
  left: -85%;
  opacity: 0;
  position: absolute;
  top: -30%;
  transform: rotate(8deg);
  transition: left 420ms ease, opacity 180ms ease;
  width: 54%;
}

.chat-btn:hover,
.chat-btn:focus {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.chat-btn:hover::before,
.chat-btn:focus::before,
.chat-btn:active::before {
  left: 118%;
  opacity: 1;
}

.chat-btn:active {
  transform: translateY(1px) scale(0.99);
}

.chat-icon {
  align-items: center;
  display: inline-flex;
  height: 22px;
  justify-content: center;
  position: relative;
  width: 22px;
  z-index: 1;
}

.chat-icon svg {
  fill: currentColor;
  height: 22px;
  width: 22px;
}

.chat-btn-viber {
  background: linear-gradient(135deg, #8c68ff 0%, #6d50e8 54%, #4f36b8 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(115, 96, 242, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.chat-btn-telegram {
  background: linear-gradient(135deg, #4fc5ff 0%, #2aabee 56%, #147ec2 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(42, 171, 238, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.chat-btn span:not(.chat-icon) {
  position: relative;
  z-index: 1;
}

.chat-btn-custom {
  background: linear-gradient(180deg, var(--m9-gold), var(--m9-gold-2));
  color: #14100a;
}

.promotion-top {
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 198, 91, 0.08), transparent 42%),
    #08090b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 18px 8px;
}

.promotion-top-inner {
  display: grid;
  gap: 18px;
}

.rtp-panel {
  color: #fff;
  text-align: center;
}

.rtp-panel h1 {
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.35;
  margin-bottom: 8px;
}

.rtp-note {
  color: var(--m9-muted);
  font-size: 14px;
  margin: 0 auto 14px;
  max-width: 680px;
}

.rtp-board {
  background: rgba(38, 28, 27, 0.94);
  border: 1px solid rgba(183, 236, 103, 0.7);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(176, 219, 101, 0.36);
  color: #9cff45;
  display: grid;
  font-weight: 900;
  gap: 6px;
  margin: 0 auto;
  max-width: 620px;
  padding: 18px;
}

.service-panel-top {
  margin: 0 auto 18px;
  max-width: 430px;
}

.promotion-top-compact {
  padding-top: 18px;
}

.promotion-top-compact .rtp-note {
  margin-bottom: 14px;
}

.promotion-list-section {
  border-top: 0;
  padding-top: 28px;
}

.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
}

.btn-primary {
  background: linear-gradient(180deg, var(--m9-gold), var(--m9-gold-2));
  color: #14100a;
}

.btn-secondary {
  border: 1px solid var(--m9-line);
  color: #fff;
}

.hero-media {
  align-self: end;
  justify-self: center;
}

.hero-media img {
  border: 1px solid var(--m9-line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  max-height: 430px;
  object-fit: cover;
}

.section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 18px;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--m9-max);
}

.section-title {
  font-size: 28px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.section-lead {
  color: var(--m9-muted);
  margin-bottom: 26px;
  max-width: 780px;
}

.feature-grid,
.promo-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature,
.promo {
  background: var(--m9-panel);
  border: 1px solid var(--m9-line);
  border-radius: 8px;
  padding: 18px;
}

.feature h3,
.promo h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.feature p,
.promo p {
  color: var(--m9-muted);
  margin-bottom: 0;
}

.promo {
  padding: 0;
  overflow: hidden;
}

.promo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.promo-content {
  padding: 16px;
}

.trust-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
}

.trust-list li {
  background: var(--m9-panel-soft);
  border-left: 3px solid var(--m9-gold);
  border-radius: 8px;
  color: var(--m9-muted);
  list-style: none;
  padding: 14px 16px;
}

.contact-band {
  background: linear-gradient(180deg, #15171b, #0b0c0e);
  border-top: 1px solid var(--m9-line);
}

.promo-hero {
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.98) 0%, rgba(9, 10, 12, 0.86) 58%, rgba(9, 10, 12, 0.58) 100%),
    var(--m9-hero-bg) center right / contain no-repeat,
    #090a0c;
}

.promo-hero .hero-inner {
  min-height: var(--m9-hero-height, 500px);
}

.promo-hero .eyebrow {
  font-size: var(--m9-label-size, 15px);
}

.promo-hero h1 {
  font-size: var(--m9-title-size, clamp(34px, 6vw, 58px));
}

.promo-hero .hero-text-block > p:not(.eyebrow) {
  font-size: var(--m9-desc-size, 18px);
}

.promo-hero .hero-text-block {
  text-align: var(--m9-text-align, left);
}

.hero-layout-free .hero-inner {
  display: block;
  position: relative;
}

.hero-layout-free .hero-copy {
  display: contents;
}

.hero-layout-free .hero-text-block {
  left: var(--m9-content-x, 28%);
  max-width: min(680px, 72vw);
  position: absolute;
  top: var(--m9-content-y, 46%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hero-layout-free .service-panel {
  left: var(--m9-service-x, 28%);
  position: absolute;
  top: var(--m9-service-y, 72%);
  transform: translate(-50%, -50%);
  width: min(100%, var(--m9-service-width, 360px));
  z-index: 3;
}

.hero-position-left {
  background-position: center left, center left, center !important;
}

.hero-position-center {
  background-position: center, center, center !important;
}

.hero-frame-neon .service-panel,
.hero-frame-neon .hero-media img {
  border-color: rgba(42, 171, 238, 0.72);
  box-shadow: 0 0 28px rgba(42, 171, 238, 0.25);
}

.hero-frame-glass .service-panel {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
}

.hero-frame-plain .service-panel,
.hero-frame-plain .hero-media img {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero-effect-pulse .service-panel {
  animation: m9-pulse 2.4s ease-in-out infinite;
}

@keyframes m9-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(246, 198, 91, 0); }
  50% { box-shadow: 0 0 28px rgba(246, 198, 91, 0.28); }
}

.m9-marquee {
  border: 1px solid var(--m9-line);
  border-radius: 8px;
  color: var(--m9-gold);
  font-weight: 900;
  margin: 0 0 14px;
  overflow: hidden;
  padding: 8px 0;
  white-space: nowrap;
}

.m9-marquee span {
  animation: m9-marquee 16s linear infinite;
  display: inline-block;
  padding-left: 100%;
}

@keyframes m9-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.quick-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.quick-action {
  background: var(--m9-panel-soft);
  border: 1px solid var(--m9-line);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  padding: 14px 16px;
  text-align: center;
}

.deal-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.deal {
  background: var(--m9-panel);
  border: 1px solid var(--m9-line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 170px;
  overflow: hidden;
}

.deal img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.deal-copy {
  padding: 18px;
}

.deal-copy h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.deal-copy p {
  color: var(--m9-muted);
  margin-bottom: 12px;
}

.text-link {
  color: var(--m9-gold);
  font-weight: 800;
}

.steps {
  counter-reset: m9-step;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
}

.steps li {
  background: var(--m9-panel-soft);
  border: 1px solid var(--m9-line);
  border-radius: 8px;
  list-style: none;
  padding: 18px;
}

.steps li::before {
  color: var(--m9-gold);
  content: counter(m9-step, decimal-leading-zero);
  counter-increment: m9-step;
  display: block;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 6px;
}

.legacy-promo-list {
  display: grid;
  gap: 22px;
  margin: 0 auto;
  max-width: 600px;
}

.legacy-promo-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(246, 198, 91, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #0b0d12;
  border: 1px solid rgba(246, 198, 91, 0.38);
  border-radius: 20px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(246, 198, 91, 0.12);
  opacity: 0;
  overflow: hidden;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.legacy-promo-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legacy-promo-card.is-visible:hover,
.legacy-promo-card.is-visible:focus-within {
  border-color: rgba(246, 198, 91, 0.56);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(246, 198, 91, 0.18);
  transform: translateY(-3px);
}

.legacy-promo-image {
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 198, 91, 0.18), transparent 34%),
    linear-gradient(135deg, #15130e, #0a1018 54%, #171008);
  border: 0;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 8px;
  position: relative;
  width: 100%;
}

.legacy-promo-image::before {
  animation: m9-promo-image-shine 4.6s ease-in-out infinite;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 246, 203, 0.06) 42%, rgba(255, 246, 203, 0.22) 50%, rgba(255, 246, 203, 0.06) 58%, transparent 100%);
  content: "";
  height: 120%;
  left: -78%;
  pointer-events: none;
  position: absolute;
  top: -10%;
  transform: skewX(-16deg);
  width: 42%;
  z-index: 2;
}

.legacy-promo-card:hover .legacy-promo-image::before,
.legacy-promo-card:focus-within .legacy-promo-image::before {
  background: linear-gradient(105deg, transparent 0%, rgba(255, 246, 203, 0.08) 42%, rgba(255, 246, 203, 0.32) 50%, rgba(255, 246, 203, 0.08) 58%, transparent 100%);
}

@keyframes m9-promo-image-shine {
  0%,
  28% {
    left: -78%;
  }
  72%,
  100% {
    left: 132%;
  }
}

.legacy-promo-image img {
  border: 1px solid rgba(246, 198, 91, 0.46);
  border-radius: 16px;
  margin: 0 auto;
  max-height: none;
  object-fit: contain;
  width: 100%;
}

.promo-title-band {
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(246, 198, 91, 0.12), rgba(255, 255, 255, 0.025)),
    #141219;
  border-top: 1px solid rgba(246, 198, 91, 0.36);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 13px;
  justify-content: center;
  padding: 0 16px 13px;
  text-align: left;
}



.promo-tag {
  align-items: center;
  background: linear-gradient(135deg, rgba(124, 79, 18, 0.92), rgba(35, 27, 16, 0.88));
  border: 1px solid rgba(246, 198, 91, 0.7);
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32), 0 0 14px rgba(246, 198, 91, 0.12);
  color: #ffe8aa;
  display: inline-flex;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.2;
  padding: 4px 10px;
}

.promo-tag-overlay {
  backdrop-filter: blur(7px);
  bottom: 18px;
  left: 18px;
  position: absolute;
  z-index: 3;
}

.promo-title-band h3 {
  background:
    linear-gradient(135deg, rgba(92, 58, 14, 0.92), rgba(36, 28, 22, 0.96) 54%, rgba(122, 78, 18, 0.78)),
    #201915;
  border: 1px solid rgba(246, 198, 91, 0.5);
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(246, 198, 91, 0.08), inset 0 1px 0 rgba(255, 235, 168, 0.08);
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  padding: 10px 12px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
  width: 100%;
}

.promo-description {
  background: rgba(5, 6, 9, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  color: #d7d3ca;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px;
  padding: 12px 14px;
}

.promo-toggle {
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(246, 198, 91, 0.34);
  border-radius: 12px;
  color: #fff7df;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-weight: 900;
  justify-content: space-between;
  min-height: 48px;
  padding: 11px 14px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 100%;
}

.promo-toggle-icon {
  align-items: center;
  color: var(--m9-gold);
  display: inline-flex;
  font-size: 18px;
  height: 22px;
  justify-content: center;
  line-height: 1;
  transition: transform 220ms ease;
  width: 22px;
}

.promo-toggle[aria-expanded="true"] .promo-toggle-icon {
  transform: rotate(180deg);
}

.promo-toggle:hover,
.promo-toggle:focus {
  background: rgba(246, 198, 91, 0.1);
  border-color: rgba(246, 198, 91, 0.58);
  outline: 2px solid rgba(246, 198, 91, 0.25);
  outline-offset: 2px;
  transform: translateY(-1px);
}

.promo-detail-box {
  background: rgba(5, 6, 9, 0.7);
  border: 1px solid transparent;
  border-radius: 12px;
  color: #f8f2df;
  margin: 0 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 14px;
  transform: translateY(-4px);
  transition: max-height 280ms ease, opacity 240ms ease, padding 280ms ease, border-color 220ms ease, margin 280ms ease, transform 280ms ease;
}

.promo-detail-box.is-open {
  border-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
  max-height: 1200px;
  opacity: 1;
  padding: 12px 14px;
  transform: translateY(0);
}

.promo-detail-box p {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7d3ca;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-bottom: 12px;
  white-space: pre-line;
}

.promo-detail-box p:last-of-type {
  border-bottom: 0;
}

.promo-card-actions {
  background: #141219;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 16px 16px;
}

.promo-action {
  font-size: 14px;
  padding: 10px 12px;
  text-align: center;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9f9788;
  font-size: 14px;
  padding: 24px 18px;
  text-align: center;
}

.page-shell {
  margin: 0 auto;
  max-width: 860px;
  min-height: 64vh;
  padding: 44px 18px;
}

.page-shell h1 {
  font-size: 34px;
}

.screen-reader-text {
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .header-inner {
    grid-template-columns: auto auto;
  }

  .main-nav {
    right: 0;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(9, 10, 12, 0.94), rgba(9, 10, 12, 0.82)),
      url("https://m9asia.co/wp-content/uploads/2026/03/free5000-m9asia.webp") center bottom / 90% auto no-repeat,
      #090a0c;
  }

  .hero-inner {
    min-height: 640px;
    padding-top: 34px;
  }

  .hero-media {
    display: none;
  }

  .hero-layout-free .hero-inner {
    display: grid;
    min-height: 640px;
    position: static;
  }

  .hero-layout-free .hero-copy {
    display: block;
  }

  .hero-layout-free .hero-text-block,
  .hero-layout-free .service-panel {
    left: auto;
    position: static;
    top: auto;
    transform: none;
    width: min(100%, var(--m9-service-width, 360px));
  }

  .feature-grid,
  .promo-grid,
  .trust-list,
  .quick-actions,
  .deal-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-actions {
    grid-template-columns: 1fr;
  }

  .promo-hero {
    background:
      linear-gradient(180deg, rgba(9, 10, 12, 0.94), rgba(9, 10, 12, 0.82)),
      var(--m9-hero-bg) center bottom / 90% auto no-repeat,
      #090a0c;
  }

  .deal {
    grid-template-columns: 1fr;
  }

  .deal img {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 18px;
  }

  .main-nav a {
    font-size: 14px;
    padding: 8px 9px;
  }

  h1 {
    font-size: 32px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .promotion-list-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .legacy-promo-list {
    gap: 18px;
    max-width: 100%;
  }

  .legacy-promo-card {
    border-radius: 20px;
  }

  .legacy-promo-image {
    padding: 7px;
  }

  .legacy-promo-image img {
    border-radius: 15px;
  }

  .promo-title-band {
    padding: 0 14px 12px;
  }

  .promo-title-band h3 {
    font-size: 15.5px;
    line-height: 1.55;
    padding: 9px 10px;
  }

  .promo-description {
    padding: 12px;
  }

  .promo-description,
  .promo-detail-box p {
    font-size: 13px;
  }

  .promo-detail-box {
    margin-left: 14px;
    margin-right: 14px;
  }

  .promo-tag-overlay {
    bottom: 15px;
    left: 15px;
  }

  .promo-card-actions {
    gap: 9px;
    padding: 0 14px 14px;
  }

  .promo-action,
  .chat-btn {
    min-height: 48px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .legacy-promo-card,
  .chat-btn,
  .promo-toggle,
  .promo-detail-box,
  .promo-toggle-icon,
  .legacy-promo-image::before {
    animation: none;
    transition: none;
  }

  .legacy-promo-card {
    opacity: 1;
    transform: none;
  }
}