:root {
  --yellow: #ffcc00;
  --yellow-soft: #fff5bf;
  --black: #080808;
  --ink: #171717;
  --muted: #5f5f5f;
  --line: #e7e0c1;
  --white: #ffffff;
  --soft: #fffaf0;
  --container: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container,
.site-header__inner,
.top-strip__inner,
.footer__inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.top-strip {
  background: var(--black);
  color: var(--white);
}

.top-strip__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 6px;
}

.top-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
}

.top-link:hover,
.top-link.active {
  background: var(--yellow);
  color: var(--black);
}

.site-header__inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.brand img {
  width: 154px;
  height: 70px;
  object-fit: contain;
}

.nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.menu-group {
  position: relative;
}

.mobile-audience {
  display: none;
}

.menu-trigger,
.menu-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.menu-trigger {
  background: transparent;
}

.menu-caret {
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.menu-group.open .menu-caret {
  transform: rotate(180deg);
}

.menu-direct {
  display: none;
}

.top-strip .menu-trigger {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
}

.top-strip .menu-trigger:hover,
.top-strip .menu-group.active .menu-trigger {
  background: var(--yellow);
  color: var(--black);
}

.nav .menu-trigger,
.nav .menu-direct {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #202020;
  font-size: 14px;
  white-space: nowrap;
}

.nav .menu-trigger:hover,
.nav .menu-group.active .menu-trigger,
.nav .menu-group.open .menu-trigger {
  background: var(--black);
  color: var(--yellow);
}

.mega-menu {
  position: absolute;
  z-index: 80;
  top: 100%;
  left: 0;
  display: none;
  width: min(720px, calc(100vw - 32px));
  margin-top: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
}

.top-strip .mega-menu {
  top: 100%;
}

.nav .menu-group:last-child .mega-menu,
.nav .menu-group:nth-last-child(2) .mega-menu {
  right: 0;
  left: auto;
}

.menu-group.open .mega-menu {
  display: block;
  animation: fadeUp 0.18s ease both;
}

@media (hover: hover) and (pointer: fine) and (min-width: 981px) {
  .menu-group:hover .mega-menu {
    display: block;
    animation: fadeUp 0.18s ease both;
  }
}

.mega-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.mega-menu__head strong {
  font-size: 18px;
}

.mega-menu__head a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mega-menu__grid a {
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--soft);
  color: var(--black);
  font-size: 14px;
  font-weight: 850;
}

.mega-menu__grid a:hover {
  background: var(--yellow);
}

.header-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.icon-btn,
.hamburger {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.fa-solid,
.fa-brands {
  display: inline-grid;
  place-items: center;
  line-height: 1;
}

.svg-icon svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.hamburger {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 17px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 950;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.btn.dark {
  background: var(--black);
  color: var(--white);
}

.btn.white {
  background: var(--white);
  color: var(--black);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
}

.slide {
  display: none;
  min-height: clamp(540px, 72vh, 720px);
  align-items: stretch;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.slide.active {
  display: grid;
  animation: heroReveal 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.slide-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(44px, 7vw, 88px) clamp(18px, 6vw, 72px);
  background: linear-gradient(135deg, var(--yellow), #ffe879);
}

.slide-media {
  position: relative;
  min-height: 420px;
  background: var(--black);
}

.home-page .slide-media {
  min-height: clamp(470px, 62svh, 620px);
  height: 100%;
}

.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-media.contain img {
  padding: 28px;
  object-fit: contain;
  background: #f9c900;
}

.home-page .slide-media.contain img {
  padding: 0;
  object-fit: cover;
  background: var(--black);
}

.eyebrow {
  margin: 0;
  color: var(--black);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--black);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.12;
}

.lead,
.slide-copy p:not(.eyebrow),
.page-hero p {
  max-width: 640px;
  margin-bottom: 0;
  color: #2d2d2d;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: clamp(18px, 6vw, 72px);
  display: flex;
  gap: 8px;
}

.slider-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.slider-dots button::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
}

.slider-dots button.active::before {
  background: var(--black);
}

.home-page {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.home-page .hero-slider {
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.46), transparent 28%),
    linear-gradient(135deg, #ffcf1d, #f6bd00);
}

.home-page .slide {
  overflow: hidden;
  min-height: clamp(450px, 58svh, 600px);
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
}

.home-page .slide-copy {
  position: relative;
  z-index: 2;
  overflow: hidden;
  gap: 10px;
  padding: clamp(28px, 4vw, 54px) clamp(18px, 4.8vw, 62px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.58), transparent 24%),
    radial-gradient(circle at 84% 78%, rgba(255, 204, 0, 0.42), transparent 36%),
    linear-gradient(135deg, rgba(255, 204, 0, 0.94), rgba(255, 225, 92, 0.88));
  backdrop-filter: blur(18px);
}

.home-page .slide-copy::before,
.home-page .slide-copy::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
}

.home-page .slide-copy::before {
  top: -90px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.32);
}

.home-page .slide-copy::after {
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  background: rgba(8, 8, 8, 0.08);
}

.home-page .slide-copy > * {
  position: relative;
  z-index: 1;
}

.home-page .slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 204, 0, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 34%, rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.home-page .slide-copy h1 {
  display: -webkit-box;
  max-width: 680px;
  overflow: hidden;
  color: #050505;
  font-size: clamp(34px, 4.25vw, 58px);
  line-height: 0.99;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-page .slide-copy p:not(.eyebrow) {
  display: block;
  max-width: 530px;
  color: rgba(8, 8, 8, 0.78);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.4;
  font-weight: 800;
}

.home-page .slider-dots {
  display: none;
}

.home-page .hero-actions {
  gap: 10px;
  margin-top: 6px;
}

.home-page .hero-actions .btn {
  min-height: 44px;
  padding: 12px 18px;
}

.home-page .hero-actions .btn.dark {
  border-color: #050505;
  background: #050505;
  color: var(--white);
}

.home-page .hero-actions .btn.dark:hover {
  background: var(--yellow);
  color: var(--black);
}

.home-page .hero-actions .btn.white {
  border-color: rgba(8, 8, 8, 0.58);
  background: rgba(255, 255, 255, 0.32);
  color: var(--black);
  backdrop-filter: blur(10px);
}

.home-page .hero-actions .btn.white:hover {
  background: var(--white);
}

.home-page .section {
  padding: clamp(34px, 4.5vw, 58px) 0;
}

.hero-service-strip {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 4vw, 54px);
  bottom: 22px;
  left: min(52vw, 700px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-service-strip a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-service-strip a:hover {
  transform: translateY(-2px);
  background: var(--yellow);
  color: var(--black);
}

.home-quick-section {
  position: relative;
  z-index: 4;
  margin-top: -22px;
  padding-top: 0 !important;
  padding-bottom: clamp(18px, 2.4vw, 28px) !important;
  background: linear-gradient(180deg, transparent 0 22px, var(--white) 22px 100%);
}

.home-quick-section .quick-grid {
  gap: 14px;
}

.home-quick-section .quick-card {
  min-height: 78px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
}

.home-quick-section .quick-card span {
  margin-bottom: 7px;
}

.home-quick-section .quick-card strong {
  font-size: 17px;
}

.home-action-section {
  padding-top: 12px !important;
  padding-bottom: 30px !important;
  background: var(--white);
}

.home-action-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 204, 0, 0.34), transparent 32%),
    linear-gradient(135deg, #fff7cf, var(--white));
  box-shadow: 0 14px 38px rgba(8, 8, 8, 0.07);
}

.home-action-band h2 {
  max-width: 520px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.02;
}

.home-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-action-grid a {
  display: grid;
  gap: 8px;
  min-height: 116px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: var(--radius-sm);
  background: var(--black);
  color: var(--white);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.home-action-grid a:hover {
  transform: translateY(-4px);
  background: var(--yellow);
  color: var(--black);
}

.home-action-grid strong {
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1;
}

.home-action-grid span {
  color: inherit;
  font-size: 14px;
  font-weight: 900;
}

.home-popular-section {
  padding-top: clamp(24px, 3vw, 38px) !important;
  border-top: 1px solid rgba(231, 224, 193, 0.7);
  border-bottom: 1px solid rgba(231, 224, 193, 0.7);
}

.home-universe-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.home-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-feature-card div {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.home-feature-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-feature-card h3 {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.05;
}

.home-feature-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.feature-momo,
.feature-market {
  background: linear-gradient(180deg, #fff, #fff8d8);
}

.feature-business {
  background: var(--black);
  color: var(--white);
}

.feature-business p,
.feature-business h3 {
  color: var(--white);
}

.feature-business .btn.dark {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.home-support-section {
  border-top: 1px solid rgba(231, 224, 193, 0.7);
}

.home-trust-section {
  padding: 28px 0 !important;
  background: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-strip article {
  display: grid;
  gap: 8px;
  min-height: 128px;
  align-content: center;
  padding: 22px;
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.trust-strip strong {
  color: var(--black);
  font-size: 19px;
  line-height: 1.05;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 800;
}

.section {
  padding: clamp(40px, 6vw, 72px) 0;
}

.section.alt {
  background: var(--soft);
}

.section.black {
  background: var(--black);
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.grid {
  display: grid;
  gap: 18px;
}

.quick-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.quick-card,
.feature-card,
.product-card,
.service-card,
.contact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card,
.product-card,
.feature-card,
.service-card,
.contact-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.card:hover,
.quick-card:hover,
.feature-card:hover,
.product-card:hover,
.service-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quick-card {
  min-height: 138px;
  padding: 22px;
  background: var(--black);
  color: var(--white);
}

.quick-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 950;
}

.quick-card span i {
  width: 22px;
  height: 22px;
  font-size: 20px;
}

.quick-card strong {
  display: block;
  font-size: 20px;
}

.card-media,
.product-media,
.feature-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--yellow-soft);
}

.card-media img,
.product-media img,
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media.contain img,
.product-media.contain img {
  padding: 16px;
  object-fit: contain;
}

.card-body,
.product-body,
.feature-body,
.service-card,
.contact-card {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 20px;
}

.card-body .btn,
.product-body .btn,
.feature-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

.muted,
.card p,
.product-card p,
.service-card p,
.contact-card p,
.feature-card p {
  color: var(--muted);
  line-height: 1.48;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.price {
  display: block;
  margin: 10px 0 16px;
  color: var(--black);
  font-size: 22px;
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.split-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--yellow-soft);
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-hero {
  padding: clamp(52px, 8vw, 96px) 0;
  background: linear-gradient(135deg, var(--yellow), #ffe879);
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.page-hero img.contain-img {
  padding: 18px;
  object-fit: contain;
  background: var(--white);
}

.page-hero img.clean-photo {
  padding: 0;
  border: 8px solid rgba(255, 255, 255, 0.72);
  object-fit: cover;
  background: var(--black);
}

.page-hero img.page-hero-art {
  padding: 0;
  border: 8px solid rgba(255, 255, 255, 0.72);
  object-fit: cover;
  background: var(--black);
}

.offer-detail-hero {
  overflow: hidden;
  padding: clamp(38px, 6vw, 78px) 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.62), transparent 24%),
    linear-gradient(135deg, var(--yellow), #ffe879);
}

.offer-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.offer-detail-copy {
  display: grid;
  gap: 14px;
}

.offer-detail-copy h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.96;
}

.offer-detail-copy p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(8, 8, 8, 0.76);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 800;
  line-height: 1.42;
}

.offer-detail-media {
  position: relative;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.74);
  border-radius: 32px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.offer-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 204, 0, 0.16), transparent 46%);
  pointer-events: none;
}

.offer-detail-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.offer-detail-media:hover img {
  transform: scale(1.035);
}

.offer-detail-body {
  background: var(--white);
}

.offer-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr) minmax(240px, 0.85fr);
  gap: 16px;
}

.offer-detail-panel {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.offer-detail-panel.primary {
  background: var(--soft);
}

.offer-detail-panel.dark {
  background: var(--black);
  color: var(--white);
}

.offer-detail-panel.dark h3,
.offer-detail-panel.dark p {
  color: var(--white);
}

.offer-detail-panel.dark .eyebrow {
  color: var(--yellow);
}

.offer-benefits {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.offer-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-weight: 900;
}

.offer-benefits i {
  color: var(--yellow);
}

.offer-mini-packs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.offer-mini-packs strong {
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--black);
  font-size: 14px;
}

.code-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.code-band strong {
  display: grid;
  min-height: 92px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--yellow);
  font-size: clamp(24px, 4vw, 36px);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.market-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.market-search {
  display: grid;
  min-width: min(360px, 100%);
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.market-search input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.market-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.market-filters button {
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-weight: 900;
}

.market-filters button.active,
.market-filters button:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--yellow);
}

.market-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.market-summary {
  position: sticky;
  top: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.cart-list {
  display: grid;
  gap: 8px;
  min-height: 52px;
  margin: 14px 0;
}

.cart-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--yellow-soft);
  font-weight: 900;
}

.cart-chip button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 950;
}

.market-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.market-item.is-hidden {
  display: none;
}

.market-empty {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.momo-page {
  background: var(--white);
}

.momo-hero {
  overflow: hidden;
  padding: clamp(44px, 7vw, 88px) 0;
  background: radial-gradient(circle at 76% 22%, #fff6bd 0 22%, transparent 23%), linear-gradient(135deg, var(--yellow), #ffe879);
}

.momo-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.momo-hero__copy {
  display: grid;
  gap: 18px;
}

.momo-code-row {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
}

.momo-code-row strong {
  color: var(--yellow);
  font-size: 22px;
}

.momo-hero__media {
  position: relative;
}

.momo-hero__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 10px solid var(--white);
  border-radius: 34px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.momo-floating-card {
  position: absolute;
  right: -10px;
  bottom: 28px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.momo-floating-card span {
  display: block;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.momo-floating-card strong {
  font-size: 24px;
}

.momo-quick {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.momo-tile {
  display: grid;
  min-height: 176px;
  align-content: space-between;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.momo-tile:hover {
  transform: translateY(-5px);
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.momo-tile span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: var(--black);
  color: var(--yellow);
  font-size: 24px;
  font-weight: 950;
}

.momo-tile span i {
  font-size: 22px;
}

.momo-tile strong {
  font-size: 18px;
}

.momo-tile small {
  color: var(--muted);
  font-weight: 850;
}

.country-badges,
.bank-logos,
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.country-badges span,
.bank-logos span,
.partner-strip span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 950;
}

.bank-logos span,
.partner-strip span {
  min-width: 132px;
  text-align: center;
}

.momo-step {
  min-height: 220px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.momo-step span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 950;
}

.momo-step p {
  color: #f0f0f0;
}

.momo-tariff {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.momo-tariff div {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--yellow-soft);
}

.momo-tariff strong {
  display: block;
  font-size: 24px;
}

.momo-tariff span {
  color: var(--muted);
  font-weight: 850;
}

.momo-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.momo-pay-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.momo-pay-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 14px;
  background: var(--yellow-soft);
}

.momo-pay-grid h3,
.momo-pay-grid p,
.momo-pay-grid strong {
  margin-right: 18px;
  margin-left: 18px;
}

.momo-pay-grid h3 {
  margin-top: 18px;
}

.momo-pay-grid strong {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--black);
  color: var(--yellow);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 17px 18px;
  font-weight: 950;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.momo-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.momo-footer-cta h2,
.momo-footer-cta p {
  color: var(--white);
}

.business-page {
  background: var(--white);
}

.business-hero {
  padding: clamp(52px, 8vw, 96px) 0;
  background: linear-gradient(135deg, var(--black), #242424);
  color: var(--white);
}

.business-hero h1,
.business-hero p {
  color: var(--white);
}

.business-hero .eyebrow {
  color: var(--yellow);
}

.business-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.business-hero__media {
  position: relative;
}

.business-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.business-stat {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 300px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow);
}

.business-stat strong,
.business-stat span {
  display: block;
}

.business-stat span {
  margin-top: 5px;
  font-weight: 850;
}

.business-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.business-tile {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.business-tile:hover {
  transform: translateY(-5px);
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.business-tile span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 14px;
  background: var(--black);
  color: var(--yellow);
  font-weight: 950;
}

.pricing-cards {
  display: grid;
  gap: 12px;
}

.pricing-cards article {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.pricing-cards p {
  color: #eeeeee;
}

.pricing-cards strong {
  color: var(--yellow);
}

.connectivity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.connectivity-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.connectivity-grid img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.connectivity-grid div {
  padding: 20px;
}

.connectivity-grid ul {
  margin: 12px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.business-feature-list,
.cloud-metrics,
.business-contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.business-feature-list span,
.cloud-metrics span,
.business-contact-cards span {
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--black);
  font-weight: 950;
}

.data-center-section {
  background: var(--black);
  color: var(--white);
}

.data-center-section h2,
.data-center-section p {
  color: var(--white);
}

.data-center-section .eyebrow {
  color: var(--yellow);
}

.cloud-panel {
  display: grid;
  min-height: 420px;
  align-content: end;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 204, 0, 0.38), transparent 34%), #111111;
  box-shadow: var(--shadow);
}

.cloud-panel div {
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(90deg, #222222, #555555, #222222);
}

.cloud-panel strong {
  color: var(--yellow);
  font-size: 32px;
}

.cloud-panel span {
  color: #f2f2f2;
  font-weight: 850;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.timeline article {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.timeline span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 950;
}

.business-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 24px;
  align-items: start;
  padding: clamp(24px, 5vw, 42px);
  border-radius: var(--radius);
  background: var(--soft);
}

.business-form {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.business-form input,
.business-form select,
.business-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.business-form textarea {
  min-height: 112px;
  resize: vertical;
}

.offers-page {
  background: var(--white);
}

.offers-hero {
  padding: clamp(50px, 8vw, 94px) 0;
  background: linear-gradient(135deg, var(--yellow), #ffe879);
}

.offers-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.offers-hero__media {
  position: relative;
}

.offers-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 8px solid var(--white);
  border-radius: 34px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.offer-bubble {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.offer-bubble strong,
.offer-bubble span {
  display: block;
}

.offer-bubble strong {
  color: var(--yellow);
  font-size: 26px;
}

.offers-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.offers-card-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.offer-card {
  --offer-accent: var(--yellow);
  position: relative;
}

.offer-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--offer-accent);
}

.offer-card.comjaim {
  --offer-accent: #ffcc00;
}

.offer-card.comjaim-plus {
  --offer-accent: #111111;
}

.offer-card.pass {
  --offer-accent: #00a3ff;
}

.offer-card.kdo {
  --offer-accent: #ffcc00;
}

.offer-card.cool {
  --offer-accent: #35c759;
}

.offer-card.sms {
  --offer-accent: #ff6b6b;
}

.offer-card.boss {
  --offer-accent: #7c5cff;
}

.offers-card-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.offers-card-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.offers-card-grid span,
.offers-card-grid h3,
.offers-card-grid p,
.offers-card-grid strong,
.offers-card-grid .btn {
  margin-right: 18px;
  margin-left: 18px;
}

.offers-card-grid span {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow-soft);
  font-size: 13px;
  font-weight: 950;
}

.offers-card-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 21px;
}

.offers-card-grid .btn {
  margin-bottom: 18px;
}

.offer-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 18px;
}

.offer-meta b {
  min-height: 44px;
  padding: 9px 10px;
  border-radius: 12px;
  background: var(--yellow-soft);
  color: var(--black);
  font-size: 13px;
  line-height: 1.15;
}

.offer-card span {
  background: color-mix(in srgb, var(--offer-accent) 22%, white);
}

.offer-focus .pricing-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-identity,
.promo-identity {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  margin: 18px 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.offer-identity.reverse {
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
}

.offer-identity > div,
.promo-identity > div {
  padding: clamp(22px, 4vw, 40px);
}

.offer-identity h3,
.promo-identity h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.98;
}

.offer-identity p,
.promo-identity p {
  max-width: 620px;
  color: var(--muted);
  font-weight: 750;
}

.offer-identity img,
.promo-identity img {
  width: 100%;
  min-height: 330px;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.offer-identity:hover img,
.promo-identity:hover img,
.premium-image:hover img {
  transform: scale(1.035);
}

.identity-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.voice-identity {
  border-color: #191919;
  background: linear-gradient(135deg, #fff, #fff8d8);
}

.youth-identity {
  border-color: #35c759;
}

.sms-identity {
  background: linear-gradient(135deg, #fff, #fff1f1);
}

.offer-identity.compact {
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.75fr);
}

.devices-offer-section .split-image {
  background: var(--black);
}

.promo-identity {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  border: 0;
  background: var(--black);
  color: var(--white);
}

.promo-identity h2,
.promo-identity p {
  color: var(--white);
}

.promo-identity .eyebrow {
  color: var(--yellow);
}

.promo-identity .btn.dark {
  background: var(--yellow);
  color: var(--black);
}

.premium-image {
  background: var(--black);
}

.internet-pack-grid,
.sms-pricing,
.payg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.internet-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.internet-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.internet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.internet-card.popular,
.internet-card.premium,
.internet-card.maxi {
  border-color: var(--black);
}

.internet-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.internet-card span,
.internet-card h3,
.internet-card p,
.internet-card strong,
.internet-card small,
.internet-card .btn {
  margin-right: 18px;
  margin-left: 18px;
}

.internet-card span {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 950;
}

.internet-card strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.internet-card small {
  display: block;
  margin-top: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 850;
}

.internet-card .btn {
  margin-bottom: 18px;
}

.sms-pricing,
.payg-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.internet-pack-grid article,
.sms-pricing article,
.payg-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.internet-pack-grid strong,
.sms-pricing strong,
.payg-grid strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.internet-pack-grid span,
.sms-pricing span {
  display: block;
  margin: 10px 0 6px;
  color: var(--black);
  font-weight: 950;
}

.internet-pack-grid small,
.sms-pricing small {
  color: var(--muted);
  font-weight: 850;
}

.gift-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.gift-cards span {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--yellow);
  font-weight: 950;
  text-align: center;
}

.cool-section .service-card,
.boss-section .internet-pack-grid article {
  border-color: var(--black);
}

.payg-grid article {
  background: var(--black);
  color: var(--white);
}

.payg-grid p {
  color: #eeeeee;
}

.payg-grid strong {
  color: var(--yellow);
}

.ussd-list {
  margin-top: 16px;
}

.ussd-list p {
  color: var(--black);
  font-size: 22px;
  font-weight: 950;
}

.devices-hero {
  padding: clamp(50px, 8vw, 94px) 0;
  background: linear-gradient(135deg, var(--yellow), #ffe879);
}

.devices-hero__grid,
.device-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.devices-hero__media,
.device-product-image {
  position: relative;
}

.devices-hero__media img,
.device-product-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 8px solid var(--white);
  border-radius: 34px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.device-deal {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.device-deal strong,
.device-deal span {
  display: block;
}

.device-deal strong {
  color: var(--yellow);
  font-size: 24px;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.device-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.device-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.device-card.featured {
  border-color: var(--black);
}

.device-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 18px;
  background: var(--yellow-soft);
}

.device-card span,
.device-card h3,
.device-card p,
.device-card strong,
.device-card .btn {
  margin-right: 18px;
  margin-left: 18px;
}

.device-card span {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--black);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
}

.device-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
}

.device-card .btn {
  margin-bottom: 18px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-grid article {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.compare-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.compare-grid span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--yellow-soft);
  font-weight: 950;
}

.device-product-hero {
  padding: clamp(50px, 8vw, 94px) 0;
  background: var(--soft);
}

.device-product-image img {
  object-fit: contain;
  background: var(--white);
}

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

.spec-grid article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.spec-grid span {
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 950;
}

.spec-grid i {
  font-size: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--yellow);
  color: var(--black);
  font-weight: 950;
}

tr:last-child td {
  border-bottom: 0;
}

.business-card ul,
.service-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.site-footer {
  padding: 26px 0 18px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 204, 0, 0.18), transparent 28%),
    linear-gradient(180deg, #101010, var(--black));
  border-top: 4px solid var(--yellow);
  color: var(--white);
}

.site-footer .footer__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-footer::before {
  content: "";
  display: block;
  width: min(100% - 32px, var(--container));
  height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, var(--yellow), transparent 78%);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 204, 0, 0.14), rgba(255, 255, 255, 0.04));
}

.footer-top .eyebrow {
  color: var(--yellow);
}

.footer-top h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(22px, 2.7vw, 34px);
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(4, minmax(145px, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
  align-items: start;
  padding: 6px 0 4px;
}

.site-footer h3 {
  margin-bottom: 13px;
  color: var(--yellow);
  font-size: 17px;
}

.site-footer a {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  color: #eeeeee;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover {
  color: var(--yellow);
  transform: translateX(2px);
}

.site-footer p {
  color: #d8d8d8;
  line-height: 1.45;
}

.footer-logo {
  width: 132px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
  mix-blend-mode: normal;
}

.footer-brand-block {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.footer-col,
.footer-contact-col {
  padding: 14px 0 0;
}

.footer-contact-list {
  display: grid;
  gap: 9px;
  margin: 18px 0;
}

.footer-contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 850;
}

.footer-contact-list i {
  width: 18px;
  color: var(--yellow);
}

.footer-contact-col span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #eeeeee;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.footer-contact-col i {
  width: 17px;
  color: var(--yellow);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 950;
  margin-bottom: 0;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.socials i {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #d7d7d7;
  font-size: 13px;
}

.copyright a {
  display: inline;
  margin: 0;
  color: #d7d7d7;
}

/* ─── Très petits téléphones (< 480 px — iPhone SE, Galaxy A, etc.) ─── */
@media (max-width: 480px) {

  /* Conteneur — marges resserrées */
  .container,
  .site-header__inner,
  .top-strip__inner,
  .footer__inner,
  .site-footer .footer__inner {
    width: calc(100% - 24px);
  }

  /* Quick cards — 1 seule colonne */
  .quick-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Menu mobile — audience en colonne unique */
  .mobile-audience {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mobile-audience .top-link {
    min-height: 44px;
    justify-content: flex-start;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
  }

  /* Titres — plus compacts */
  h1 {
    font-size: clamp(24px, 7.5vw, 32px);
  }

  h2 {
    font-size: clamp(20px, 6vw, 28px);
  }

  /* Sections — respiration réduite */
  .section {
    padding: 26px 0;
  }

  .home-page .section {
    padding: 16px 0;
  }

  /* Hero homepage */
  .home-page .slide-copy {
    padding: 14px 12px 18px;
  }

  .home-page .slide-media {
    min-height: 200px;
  }

  /* Hero pages internes */
  .page-hero {
    padding: 22px 0;
  }

  .offer-detail-hero {
    padding: 22px 0;
  }

  /* Hero service strip — items plus compacts */
  .hero-service-strip a {
    min-width: 116px;
    font-size: 11px;
    padding: 10px 10px;
  }

  /* Momo tile */
  .momo-tile {
    min-width: min(220px, calc(82vw - 24px));
  }

  /* Internet card */
  .internet-card {
    min-width: min(250px, calc(88vw - 24px));
  }

  /* Action band */
  .home-action-band {
    padding: 14px;
    border-radius: var(--radius-sm);
  }

  /* Formulaires */
  .areeba-form {
    padding: 14px;
    gap: 10px;
  }

  /* Footer brand */
  .footer-brand-block {
    padding: 14px;
  }

  /* Socials — espacement réduit */
  .socials {
    gap: 8px;
  }

  /* Boutons — pleine largeur dans hero */
  .home-page .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateX(18px) scale(1.01);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 980px) {
  .hamburger {
    display: inline-grid;
  }

  .top-strip {
    display: none;
  }

  .nav {
    position: fixed;
    z-index: 50;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--white);
    max-height: calc(100vh - 74px);
    overflow: auto;
    box-shadow: var(--shadow);
  }

  body.nav-open .nav {
    display: flex;
  }

  .mobile-audience {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-bottom: 8px;
  }

  .mobile-audience .top-link {
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--black);
    color: var(--yellow);
  }

  .nav .menu-trigger,
  .nav .menu-direct {
    width: 100%;
    justify-content: space-between;
    padding: 14px;
    border-radius: var(--radius-sm);
    background: var(--soft);
  }

  .menu-group:hover .mega-menu {
    display: none;
  }

  .menu-group.open .mega-menu {
    position: static;
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 12px;
    box-shadow: none;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
  }

  .slide,
  .home-page .slide,
  .page-hero__inner,
  .offer-detail-hero__grid,
  .momo-hero__grid,
  .business-hero__grid,
  .offers-hero__grid,
  .devices-hero__grid,
  .device-product-grid,
  .offer-identity,
  .offer-identity.reverse,
  .offer-identity.compact,
  .promo-identity,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .slide-media {
    min-height: 320px;
    order: -1;
  }

  .home-page .slide {
    min-height: auto;
  }

  .home-page .slide-copy {
    padding: 22px 18px 28px;
  }

  .home-page .slide-media {
    min-height: 300px;
  }

  .hero-service-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(var(--container), calc(100% - 32px));
    margin: -14px auto 18px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-radius: var(--radius);
  }

  .hero-service-strip a {
    min-height: 42px;
    font-size: 12px;
  }

  .home-quick-section {
    margin-top: -12px;
    background: linear-gradient(180deg, transparent 0 12px, var(--white) 12px 100%);
  }

  .quick-grid,
  .cards-4,
  .cards-3,
  .market-products,
  .momo-quick,
  .momo-pay-grid,
  .momo-tariff,
  .business-solution-grid,
  .connectivity-grid,
  .timeline,
  .offers-card-grid,
  .internet-offer-grid,
  .sms-pricing,
  .payg-grid,
  .device-grid,
  .spec-grid,
  .footer-grid,
  .offer-detail-grid,
  .code-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-action-band {
    grid-template-columns: 1fr;
  }

  .home-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-universe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .business-contact {
    grid-template-columns: 1fr;
  }

  .market-layout {
    grid-template-columns: 1fr;
  }

  .market-summary {
    position: static;
  }

  .momo-footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head,
  .cta-band,
  .footer-top,
  .copyright {
    align-items: flex-start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .site-header__inner {
    gap: 12px;
  }

  .brand img {
    width: 128px;
    height: 62px;
  }

  .nav .menu-trigger {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }

  .header-actions .btn {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-header__inner {
    width: min(100% - 22px, var(--container));
    min-height: 68px;
  }

  .brand img {
    width: 112px;
    height: 54px;
  }

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

  .slide {
    min-height: auto;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .slide-copy {
    padding: 28px 16px 56px;
    min-width: 0;
    width: 100%;
    max-width: 100vw;
  }

  .home-page .slide-copy {
    padding: 16px 16px 20px;
    min-width: 0;
    width: 100%;
    max-width: 100vw;
  }

  .slide-media {
    min-height: 220px;
  }

  .home-page .slide-media {
    min-height: 220px;
    max-height: 56svh;
    height: auto;
  }

  .hero-service-strip {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 8px;
    scroll-snap-type: x mandatory;
  }

  .hero-service-strip a {
    min-width: 132px;
    min-height: 44px;
    padding: 10px 12px;
    scroll-snap-align: start;
  }

  .section {
    padding: 34px 0;
  }

  .home-page .section {
    padding: 20px 0;
  }

  .cards-4,
  .cards-3,
  .market-products,
  .momo-pay-grid,
  .momo-tariff,
  .business-solution-grid,
  .connectivity-grid,
  .timeline,
  .offers-card-grid,
  .internet-offer-grid,
  .internet-pack-grid,
  .sms-pricing,
  .payg-grid,
  .gift-cards,
  .device-grid,
  .compare-grid,
  .spec-grid,
  .footer-grid,
  .code-band {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-action-section {
    padding-top: 10px !important;
    padding-bottom: 20px !important;
  }

  .home-action-band {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: var(--radius-sm);
  }

  .home-action-band h2 {
    font-size: clamp(22px, 6.4vw, 28px);
  }

  .home-action-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-action-grid a {
    min-height: 68px;
    padding: 12px 14px;
  }

  .home-action-grid strong {
    font-size: 22px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    border-radius: var(--radius-sm);
  }

  .trust-strip article {
    min-height: 86px;
    padding: 16px;
  }

  .home-universe-grid {
    grid-template-columns: 1fr;
  }

  .home-quick-section .quick-card {
    min-height: 64px;
    padding: 10px 12px;
  }

  .home-quick-section .quick-card span {
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
  }

  .home-quick-section .quick-card strong {
    font-size: 16px;
  }

  .footer-top {
    margin-bottom: 18px;
  }

  .footer-contact-actions,
  .footer-contact-actions .btn {
    width: 100%;
  }

  .offer-bubble {
    position: static;
    margin-top: 12px;
  }

  .device-deal {
    position: static;
    margin-top: 12px;
  }

  .internet-offer-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .internet-card {
    min-width: min(280px, calc(88vw - 24px));
    scroll-snap-align: start;
  }

  .business-stat {
    position: static;
    margin-top: 12px;
  }

  .momo-quick {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .momo-tile {
    min-width: 230px;
    scroll-snap-align: start;
  }

  .momo-floating-card {
    position: static;
    margin-top: 12px;
  }

  .market-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero {
    padding: 34px 0;
  }

  .offer-detail-hero {
    padding: 28px 0;
  }

  .page-hero img,
  .offer-detail-media img,
  .split-image img,
  .offer-identity img,
  .promo-identity img,
  .card-media,
  .product-media,
  .feature-media {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  h1 {
    overflow-wrap: break-word;
    font-size: clamp(32px, 10vw, 44px);
  }

  .home-page .slide-copy h1 {
    max-width: min(100%, 340px);
    display: block;
    overflow: visible;
    font-size: clamp(25px, 6.6vw, 28px);
    line-height: 1.02;
    overflow-wrap: break-word;
    -webkit-line-clamp: unset;
  }

  .home-page .slide-copy p:not(.eyebrow) {
    max-width: min(100%, 330px);
    font-size: 13px;
    line-height: 1.28;
  }

  .home-page .hero-actions {
    gap: 8px;
  }

  .home-page .hero-actions .btn {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .site-footer {
    padding-top: 20px;
  }

  .footer-brand-block {
    padding: 14px;
  }

  .offer-detail-hero__grid,
  .offer-detail-grid {
    grid-template-columns: 1fr;
  }

  .offer-detail-copy h1 {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .socials a {
    width: 44px;
    height: 44px;
  }

  .areeba-form {
    padding: 16px;
    gap: 12px;
  }

  .footer-top {
    padding: 16px;
    gap: 14px;
  }

  .footer-top h2 {
    font-size: clamp(18px, 5vw, 24px);
  }

  .copyright {
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
  }
}
