:root {
  --primary: #FF8FA3;
  --primary-dark: #FF6B85;
  --primary-soft: #FFE4EA;
  --primary-soft-2: #FFF2F5;
  --ink: #2D2D3A;
  --ink-2: #56566B;
  --muted: #8A8AA0;
  --line: #F0EEF2;
  --bg: #FFFFFF;
  --bg-soft: #FFF8FA;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-sm: 0 6px 18px rgba(255, 143, 163, 0.12);
  --shadow-md: 0 18px 40px rgba(255, 143, 163, 0.18);
  --shadow-lg: 0 30px 70px rgba(255, 143, 163, 0.24);
  --container: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 16s ease-in-out infinite;
}

.orb--1 {
  width: 480px;
  height: 480px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, #FFC2CE 0%, rgba(255, 194, 206, 0) 70%);
}

.orb--2 {
  width: 420px;
  height: 420px;
  top: 40%;
  left: -180px;
  background: radial-gradient(circle, #FFD9E0 0%, rgba(255, 217, 224, 0) 70%);
  animation-delay: -5s;
}

.orb--3 {
  width: 520px;
  height: 520px;
  bottom: -220px;
  right: 10%;
  background: radial-gradient(circle, #FFE0E7 0%, rgba(255, 224, 231, 0) 70%);
  animation-delay: -9s;
}

.grid-mask {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 143, 163, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 143, 163, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 72%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.08); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s;
  white-space: nowrap;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 14px;
}

.btn--primary {
  background: linear-gradient(135deg, #FF9FB0, var(--primary) 55%, var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 4px 14px rgba(45, 45, 58, 0.05);
}

.btn--ghost:hover {
  transform: translateY(-3px);
  color: var(--primary-dark);
  border-color: var(--primary);
}

.btn--block {
  width: 100%;
  padding: 12px 20px;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 8px 30px rgba(255, 143, 163, 0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #FFB3C1, var(--primary));
  color: #fff;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}

.logo__img {
  width: 40px;
  height: 40px;
  flex: none;
  object-fit: contain;
  border-radius: 12px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  line-height: 1.1;
  font-size: 18px;
}

.logo__name {
  font-weight: 800;
  text-align: justify;
  text-align-last: justify;
}

.logo__text small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--muted);
}

.nav__links {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
}

.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover {
  color: var(--primary-dark);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s, opacity 0.3s;
}

.nav__cta:hover {
  color: var(--primary-dark);
  opacity: 0.85;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav__toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  padding: 150px 0 90px;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  min-width: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 143, 163, 0.12);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 143, 163, 0.22);
}

.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(255, 143, 163, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 143, 163, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 143, 163, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 143, 163, 0); }
}

.hero__title {
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.15;
  font-weight: 800;
  margin: 22px 0 20px;
  letter-spacing: -1px;
  white-space: nowrap;
}

.grad {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark) 60%, #FFB3C1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Phone mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: 300px;
  border-radius: 43px;
  background: #fff;
  box-shadow:
    0 30px 70px rgba(255, 143, 163, 0.32),
    0 14px 30px rgba(255, 107, 133, 0.2);
  animation: bob 6s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}

.phone__island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 20px;
  border-radius: 12px;
  background: #0c0c10;
  z-index: 4;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.phone__screen {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 460px;
  background: #fff;
  border-radius: 43px;
  padding: 9px 14px 12px;
  overflow: hidden;
  z-index: 1;
}

.phone__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 6px 8px;
  color: var(--ink);
}

.phone__time {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.phone__status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
}

.phone__status-icons svg {
  height: 11px;
  width: auto;
}

.phone__notice {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFF0F3, #FFE4EA);
  border: 1px solid rgba(255, 143, 163, 0.35);
  box-shadow: 0 6px 16px rgba(255, 143, 163, 0.18);
  animation: noticeIn 0.8s var(--ease) both, noticeFloat 3.6s ease-in-out 0.9s infinite;
}

@keyframes noticeIn {
  from { opacity: 0; transform: translateY(-22px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes noticeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.phone__notice-icon {
  width: 32px;
  height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  color: var(--primary-dark);
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(255, 143, 163, 0.2);
  animation: wiggle 2.6s ease-in-out infinite;
}

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

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-10deg); }
  40% { transform: rotate(8deg); }
  60% { transform: rotate(-5deg); }
  80% { transform: rotate(3deg); }
}

.phone__notice-body {
  min-width: 0;
  flex: 1;
}

.phone__notice-body strong {
  display: block;
  font-size: 12px;
  line-height: 1.3;
}

.phone__notice-body small {
  font-size: 10.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.phone__notice-new {
  flex: none;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--primary);
  padding: 3px 7px;
  border-radius: 7px;
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.94); }
}

.phone__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone__brand {
  font-weight: 800;
  font-size: 15px;
}

.phone__save {
  font-size: 11px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 4px 9px;
  border-radius: 999px;
  font-weight: 600;
}

.phone__card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #F6EEF2;
  box-shadow: 0 6px 16px rgba(255, 143, 163, 0.1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.phone__card:hover {
  transform: translateX(4px) scale(1.02);
  box-shadow: 0 10px 22px rgba(255, 143, 163, 0.2);
}

.phone__card-icon {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary-soft);
  font-size: 21px;
  box-shadow: 0 4px 10px rgba(255, 143, 163, 0.16);
  transition: transform 0.35s var(--ease);
}

.phone__card-icon svg {
  width: 22px;
  height: 22px;
}

.phone__card:hover .phone__card-icon {
  transform: rotate(-8deg) scale(1.08);
}

.phone__card--redpacket .phone__card-icon { background: #FFE9EC; color: #FF5A5A; }
.phone__card--food .phone__card-icon { background: #FFF1DF; color: #FF9F4D; }
.phone__card--video .phone__card-icon { background: #EAEEFF; color: #6B7BFF; }
.phone__card--movie .phone__card-icon { background: #FFF3E0; color: #FF8A3D; }
.phone__card--express .phone__card-icon { background: #E4F6ED; color: #34B27B; }

.phone__card strong {
  display: block;
  font-size: 13px;
}

.phone__card small {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.phone__badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #FFA9B8, var(--primary));
  padding: 4px 9px;
  border-radius: 999px;
  flex: none;
  box-shadow: 0 3px 8px rgba(255, 143, 163, 0.3);
}

/* ===== Sections ===== */
.section {
  padding: 96px 0;
  position: relative;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 242, 245, 0), #FFF7F9 20%, #FFF7F9 80%, rgba(255, 242, 245, 0));
}

.section__head {
  max-width: 640px;
  margin: 0 auto 54px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section__head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section__head p {
  color: var(--ink-2);
  font-size: 16px;
}

/* ===== Business cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 143, 163, 0.14), transparent 42%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 143, 163, 0.4);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 20px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  transition: transform 0.4s var(--ease), background 0.4s, color 0.4s;
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

.card:hover .card__icon {
  transform: scale(1.08) rotate(-6deg);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.card__icon--video { background: #EEF2FF; color: #6B7BFF; }
.card__icon--movie { background: #FFF0E4; color: #FF9F4D; }
.card__icon--express { background: #E9F7F0; color: #34B27B; }
.card__icon--redpacket { background: #FFECEC; color: #FF5A5A; }
.card__icon--news { background: #F4EEFF; color: #9A6BFF; }

.card:hover .card__icon--video,
.card:hover .card__icon--movie,
.card:hover .card__icon--express,
.card:hover .card__icon--redpacket,
.card:hover .card__icon--news {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  font-size: 14.5px;
  color: var(--ink-2);
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 143, 163, 0.2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 90px;
}

.stat {
  text-align: center;
  position: relative;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 46px;
  background: var(--line);
}

.stat__num {
  display: block;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -1px;
}

.stat__label {
  font-size: 14px;
  color: var(--muted);
}

/* ===== Deals ===== */
.deals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.deal {
  position: relative;
  padding: 26px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(45, 45, 58, 0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}

.deal::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 143, 163, 0.16), transparent 70%);
  transition: transform 0.5s var(--ease);
}

.deal:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.deal:hover::after {
  transform: scale(1.5);
}

.deal__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.deal h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.deal p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.deal__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.deal__price b {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
}

.deal__price s {
  font-size: 13px;
  color: var(--muted);
}

/* ===== Promo ===== */
.promo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.promo__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 36px 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

.promo__card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 143, 163, 0.45);
}

.promo__qr {
  width: 148px;
  height: 148px;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(255, 143, 163, 0.14);
  transition: transform 0.4s var(--ease);
}

.promo__card:hover .promo__qr {
  transform: scale(1.05) rotate(-2deg);
}

.promo__qr svg,
.promo__qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.promo__body h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.promo__body p {
  font-size: 14px;
  color: var(--ink-2);
}

/* ===== Features ===== */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  padding: 30px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.feature__no {
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.55;
  margin-bottom: 14px;
}

.feature h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: var(--ink-2);
}

/* ===== Footer ===== */
.footer {
  background: #2D2D3A;
  color: #C9C9D6;
  padding: 64px 0 26px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo--footer .logo__text {
  color: #fff;
}

.footer__brand p {
  margin-top: 18px;
  font-size: 14px;
  max-width: 280px;
  color: #9A9AAE;
}

.footer__col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: #9A9AAE;
  padding: 5px 0;
  transition: color 0.3s, transform 0.3s var(--ease);
}

.footer__col a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
  color: #8A8AA0;
}

.footer__bottom a {
  color: #9A9AAE;
  transition: color 0.3s;
}

.footer__bottom a:hover {
  color: var(--primary);
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.4s; }
[data-delay="6"] { transition-delay: 0.48s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero__sub,
  .hero__actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero__sub {
    margin-inline: auto;
  }

  .cards,
  .promo {
    grid-template-columns: repeat(2, 1fr);
  }

  .deals,
  .features,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat + .stat::before {
    display: none;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
    margin-left: auto;
  }

  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    padding: 20px 24px;
    gap: 16px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
  }

  .hero {
    padding: 120px 0 60px;
  }

  .section {
    padding: 70px 0;
  }

  .cards,
  .promo,
  .deals,
  .features,
  .stats {
    grid-template-columns: 1fr;
  }

  .phone {
    width: 280px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
