* {
  box-sizing: border-box;
}
body.landing-body {
  margin: 0;
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  background: #111;
}

.landing-header {
  background: #0b0b0b;
  color: #fff;
  padding: 18px 20px;
  text-align: center;
}
.landing-header .logo-box {
  display: inline-block;
}
.landing-header .logo-box img {
  display: block;
  height: 110px;
  width: auto;
  max-width: 80vw;
  margin: 0 auto;
}
.landing-header .brand-name {
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.landing-header .brand-name span {
  color: #ffe600;
}
.landing-header .brand-tag {
  font-size: 0.82rem;
  color: #bbb;
  margin-top: 4px;
  font-weight: 400;
  font-family: Arial, sans-serif;
}

.landing-hero {
  text-align: center;
  color: #fff;
  padding: 26px 20px 30px;
  background: #111;
}
.landing-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin: 0 0 8px;
  text-transform: uppercase;
  font-weight: 900;
}
.landing-hero p {
  font-family: Arial, sans-serif;
  color: #ccc;
  margin: 0;
  font-size: 0.95rem;
}

.promo-band {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 6vw;
  min-height: 190px;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}
.promo-band:hover {
  filter: brightness(1.05);
}
.promo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 300' preserveAspectRatio='none'%3E%3Cpath d='M0,120 C200,20 300,220 500,120 C650,40 750,200 800,140 L800,300 L0,300 Z' fill='white' fill-opacity='0.16'/%3E%3Cpath d='M0,180 C200,90 320,280 520,190 C680,120 760,260 800,210 L800,300 L0,300 Z' fill='white' fill-opacity='0.10'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.promo-band--yellow::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 300' preserveAspectRatio='none'%3E%3Cpath d='M0,120 C200,20 300,220 500,120 C650,40 750,200 800,140 L800,300 L0,300 Z' fill='%231a1a1a' fill-opacity='0.06'/%3E%3Cpath d='M0,180 C200,90 320,280 520,190 C680,120 760,260 800,210 L800,300 L0,300 Z' fill='%231a1a1a' fill-opacity='0.04'/%3E%3C/svg%3E");
}

.promo-photo {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.promo-photo img {
  display: block;
  width: 130px;
  height: 110px;
  object-fit: cover;
  border-radius: 4px;
}

.promo-text {
  flex: 1 1 220px;
  position: relative;
  z-index: 1;
  min-width: 200px;
}
.promo-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.05;
  margin: 0 0 6px;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.promo-text .promo-sub {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  opacity: 0.95;
}

.promo-price {
  position: relative;
  z-index: 1;
  text-align: right;
  flex: 0 0 auto;
  margin-left: auto;
}
.promo-price .price-label {
  display: block;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.promo-price .price-value {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900;
  color: #ffe600;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.promo-price .price-value sup {
  font-size: 0.5em;
}

.promo-band--green {
  background: linear-gradient(120deg, #1f9d3a, #34c759 55%, #2bb34d);
}
.promo-band--pink {
  background: linear-gradient(120deg, #d6006e, #ff2e9a 60%, #e0007a);
}
.promo-band--blue {
  background: linear-gradient(120deg, #0f7bb3, #12a3d6 55%, #0e8cc4);
  background-image: linear-gradient(120deg, #0f7bb3, #12a3d6 55%, #0e8cc4),
    repeating-linear-gradient(60deg, rgba(255, 255, 255, 0.06) 0 18px, transparent 18px 36px);
}
.promo-band--purple {
  background: linear-gradient(120deg, #5b21a8, #7b2fd6 55%, #6423b8);
  background-image: linear-gradient(120deg, #5b21a8, #7b2fd6 55%, #6423b8),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 0 10px, transparent 10px 20px);
}
.promo-band--dark {
  background: linear-gradient(120deg, #1a1a1a, #2b2b2b 60%, #1a1a1a);
  background-image: linear-gradient(120deg, #1a1a1a, #2b2b2b 60%, #1a1a1a),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 14px, transparent 14px 28px);
}
.promo-band--yellow {
  background: linear-gradient(120deg, #ffcf00, #ffe066 55%, #ffcf00);
  color: #1a1a1a;
  padding: 0;
  min-height: 0;
  gap: 0;
}
.promo-band--yellow .promo-text h2,
.promo-band--yellow .promo-price .price-value {
  text-shadow: none;
  color: #1a1a1a;
}
.promo-band--yellow .promo-price .price-value {
  color: #6423b8;
}

.promo-split {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
}
.promo-split-half {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 4vw;
  flex: 1 1 260px;
  text-decoration: none;
  color: inherit;
}
.promo-split-half + .promo-split-half {
  border-left: 2px dashed rgba(0, 0, 0, 0.15);
}

.landing-footer {
  background: #0b0b0b;
  color: #999;
  text-align: center;
  padding: 18px 20px;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
}
.landing-footer a {
  color: #ffe600;
  text-decoration: none;
}

@media (max-width: 560px) {
  .promo-band {
    padding: 22px 5vw;
  }
  .promo-price {
    text-align: left;
    margin-left: 0;
  }
  .promo-split-half + .promo-split-half {
    border-left: none;
    border-top: 2px dashed rgba(0, 0, 0, 0.15);
  }
}
