/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0d0804;
  --color-bg-warm: #120a04;
  --color-surface: #1a1008;
  --color-surface-elevated: #221810;
  --color-border: #3a2a1a;
  --color-border-orange: rgba(252, 128, 25, 0.25);
  --color-text: #ffffff;
  --color-text-secondary: #b0a090;
  --color-text-muted: #7a6a5a;
  --color-orange: #fc8019;
  --color-orange-light: #ff9f45;
  --color-orange-dark: #e56a08;
  --color-orange-glow: rgba(252, 128, 25, 0.2);
  --color-orange-subtle: rgba(252, 128, 25, 0.08);
  --color-gold: #d4a853;
  --color-ornge-gradient: linear-gradient(135deg, #ff6b35, #ff3d7f, #6366f1);
  --color-blck-gradient: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 60px rgba(252, 128, 25, 0.2);
  --shadow-orange: 0 0 40px rgba(252, 128, 25, 0.08);
  --max-width: 1200px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg);
  background-image:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(252, 128, 25, 0.1) 0%,
      transparent 35%
    ),
    radial-gradient(
      ellipse at 20% 50%,
      rgba(252, 128, 25, 0.06) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(252, 128, 25, 0.05) 0%,
      transparent 35%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(252, 128, 25, 0.12) 0%,
      transparent 40%
    ),
    linear-gradient(180deg, #0d0804 0%, #1a0e04 30%, #120a03 60%, #0a0500 100%);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 8, 4, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-orange),
    transparent
  );
  opacity: 0.4;
}

.header__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo--swiggy {
  height: 32px;
  width: auto;
}

.header__logo--hdfc {
  height: 28px;
  width: auto;
}

.header__divider {
  color: var(--color-text-muted);
  font-size: 18px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

.header__link:hover {
  color: var(--color-text);
}

.header__cta-btn {
  background: linear-gradient(
    135deg,
    var(--color-orange),
    var(--color-orange-dark)
  );
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(252, 128, 25, 0.3);
}

.header__cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(252, 128, 25, 0.5);
}

/* === HERO === */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 60px) 24px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero__title--intro {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--color-text-secondary);
  display: block;
  margin-bottom: 0;
}

.hero__title--highlight {
  background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.82em;
}

.hero__title--line1 {
  display: block;
  margin-top: 8px;
}

.hero__title--line2 {
  display: block;
  margin-top: 4px;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--color-text-secondary);
  font-weight: 400;
  line-height: 1.5;
}

.hero__callouts {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 14px 24px;
  background: rgba(252, 128, 25, 0.04);
  border: 1px solid rgba(252, 128, 25, 0.1);
  border-radius: var(--radius-full);
  width: fit-content;
}

.hero__callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero__callout-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-orange);
}

.hero__callout-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: 400;
}

.hero__callout--featured {
  background: rgba(252, 128, 25, 0.1);
  border: 1px solid rgba(252, 128, 25, 0.3);
  border-radius: 8px;
  padding: 4px 10px;
}

.hero__callout--featured .hero__callout-value {
  color: var(--color-orange);
  text-shadow: 0 0 12px rgba(252, 128, 25, 0.5);
}

.hero__callout-divider {
  width: 1px;
  height: 20px;
  background: rgba(252, 128, 25, 0.2);
}

.hero__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__qr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 10px 16px;
  background: rgba(252, 128, 25, 0.04);
  border: 1px solid rgba(252, 128, 25, 0.12);
  border-radius: var(--radius-lg);
}

.hero__qr-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
}

.hero__qr-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.hero__apply-btn {
  display: none;
  margin-top: 16px;
  padding: 14px 40px;
  background: linear-gradient(
    135deg,
    var(--color-orange),
    var(--color-orange-dark)
  );
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(252, 128, 25, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.hero__apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(252, 128, 25, 0.4);
}

.apply__mobile-btn {
  display: none;
  margin-top: 24px;
  padding: 14px 40px;
  background: linear-gradient(
    135deg,
    var(--color-orange),
    var(--color-orange-dark)
  );
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(252, 128, 25, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.apply__mobile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(252, 128, 25, 0.4);
}

.hero__bg-glow {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(252, 128, 25, 0.18) 0%,
    rgba(252, 128, 25, 0.08) 40%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 30% 80%,
    rgba(252, 128, 25, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* === CARD CAROUSEL === */
.card-carousel {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.card-carousel__track {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.card-carousel__slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.card-carousel__slide--active {
  display: block;
}

.card-carousel__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.card-carousel__image:hover {
  transform: scale(1.02);
}

.card-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.card-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  transition: all 0.3s;
}

.card-carousel__dot--active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-orange);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Prevent decorative card images from being tappable/openable */
.hero__stack-card,
.footer-hero__card-img,
.cashback__card-img,
.cashback__platform-img,
.card-carousel__image {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

/* === HERO STACKED CARDS === */
.hero__card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 320px;
  cursor: pointer;
  margin: 0 auto;
}

.hero__stack-card {
  position: absolute;
  width: 82%;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.55);
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s ease;
}

.hero__stack-card--back {
  top: 12%;
  left: 0;
  transform: rotate(-6deg) translate(-4%, 6%);
  z-index: 1;
}

.hero__stack-card--front {
  top: 0;
  right: 0;
  transform: rotate(5deg) translate(4%, -3%);
  z-index: 2;
}

.hero__card-stack:hover .hero__stack-card--back {
  transform: rotate(-12deg) translate(-18%, 14%) scale(0.93);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero__card-stack:hover .hero__stack-card--front {
  transform: rotate(10deg) translate(16%, -10%) scale(0.93);
  box-shadow: 0 20px 60px rgba(252, 128, 25, 0.25);
}

.hero__stack-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero__card-stack:hover .hero__stack-overlay {
  opacity: 1;
}

.hero__stack-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 32px;
  background: rgba(13, 8, 4, 0.88);
  backdrop-filter: blur(12px);
  border: 2px solid var(--color-orange);
  border-radius: var(--radius-xl);
  box-shadow: 0 0 40px rgba(252, 128, 25, 0.3);
}

.hero__stack-overlay-label {
  font-size: 12px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero__stack-overlay-amount {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero__stack-overlay-text {
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* === PARTNERS === */
.partners {
  padding: 40px 24px;
  background: var(--color-surface);
  background-image: linear-gradient(
    180deg,
    rgba(252, 128, 25, 0.03) 0%,
    transparent 100%
  );
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-orange),
    transparent
  );
  opacity: 0.5;
}

.partners__card-icon-wrap {
  flex-shrink: 0;
}

.partners__logo-img--paytm {
  background: #ffffff;
  border-radius: 6px;
  padding: 4px 8px;
}

.partners__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.partners__line {
  width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border-orange),
    var(--color-orange),
    var(--color-border-orange),
    transparent
  );
}

.partners__section-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-secondary);
}

.partners__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.partners__scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.partners__card {
  max-width: 400px;
  width: 100%;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.partners__card:hover {
  border-color: var(--color-orange);
  transform: translateY(-2px);
}

.partners__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.partners__list li {
  font-size: 14px;
  color: var(--color-text-secondary);
  padding-left: 12px;
  position: relative;
}

.partners__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-orange);
}

.partners__card-logo {
  display: flex;
  align-items: center;
  height: 32px;
}

.partners__card-logo img,
.partners__logo-img {
  height: 32px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.partners__brand--nykaa {
  font-size: 20px;
  font-weight: 800;
  color: #fc2779;
  font-style: italic;
}

.partners__brand--cleartrip {
  font-size: 16px;
  font-weight: 700;
  color: #e84c3d;
  letter-spacing: -0.5px;
}

/* === CASHBACK BENEFITS === */
.cashback {
  padding: 40px 24px;
  background-image: radial-gradient(
    ellipse at 50% 30%,
    rgba(252, 128, 25, 0.04) 0%,
    transparent 60%
  );
}

.cashback__container {
  max-width: 900px;
  margin: 0 auto;
}

.cashback__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cashback__line {
  width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border-orange),
    var(--color-orange),
    var(--color-border-orange),
    transparent
  );
}

.cashback__section-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-secondary);
}

.cashback__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cashback__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card), var(--shadow-orange);
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.cashback__card:hover {
  transform: translateY(-4px);
}

.cashback__card--blck {
  border-color: rgba(212, 168, 83, 0.2);
}

.cashback__card--blck:hover {
  border-color: rgba(212, 168, 83, 0.5);
}

.cashback__card--ornge {
  border-color: var(--color-border-orange);
}

.cashback__card--ornge:hover {
  border-color: var(--color-orange);
}

.cashback__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.cashback__card-img {
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cashback__card-name {
  font-size: 16px;
  font-weight: 700;
}

.cashback__card--blck .cashback__card-name {
  color: var(--color-gold);
}

.cashback__card--ornge .cashback__card-name {
  color: var(--color-orange);
}

.cashback__platforms {
  display: flex;
  gap: 12px;
  margin: 12px 0 16px;
}

.cashback__platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cashback__platform span {
  font-size: 11px;
  color: var(--color-text-muted);
}

.cashback__illustrations {
  flex-shrink: 0;
}

.cashback__platform-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
}

.cashback__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.cashback__row--primary {
  padding-top: 0;
}

.cashback__title {
  font-size: 20px;
  font-weight: 700;
}

.cashback__subtitle {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

.cashback__brand-badge {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 8px 16px;
}

.cashback__brand-badge img {
  height: 22px;
  width: auto;
}

.cashback__icons {
  display: flex;
  gap: 4px;
}

.cashback__icon-row {
  display: flex;
  gap: 4px;
}

.cashback__icon {
  width: 36px;
  height: 36px;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: border-color 0.2s;
}

.cashback__icon:hover {
  border-color: var(--color-orange);
}

.cashback__icon--more {
  color: var(--color-orange);
  font-weight: 700;
  font-size: 16px;
}

.cashback__divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border-orange),
    transparent
  );
}

.cashback__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 20px;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.cashback__footer p {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.cashback__footer-icon {
  color: var(--color-orange);
  font-size: 10px;
}

/* === WELCOME BENEFITS === */
.welcome-inline {
  margin-top: 40px;
  padding: 36px 28px;
  background: linear-gradient(
    160deg,
    rgba(252, 128, 25, 0.06) 0%,
    rgba(252, 128, 25, 0.02) 40%,
    transparent 100%
  );
  border: 1.5px solid rgba(252, 128, 25, 0.2);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.welcome-inline__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.welcome__line {
  width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border-orange),
    var(--color-orange),
    var(--color-border-orange),
    transparent
  );
}

.welcome__label {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-secondary);
}

.welcome__banner {
  position: relative;
  padding: 36px 24px;
  background: linear-gradient(
    135deg,
    rgba(252, 128, 25, 0.08),
    rgba(252, 128, 25, 0.03)
  );
  border: 1px solid rgba(252, 128, 25, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.welcome__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 250px;
  background: radial-gradient(
    ellipse,
    rgba(252, 128, 25, 0.14) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.welcome__graffiti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.welcome__confetti {
  position: absolute;
  animation: confetti-float 4s ease-in-out infinite;
}

.welcome__confetti--1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.welcome__confetti--2 {
  top: 20%;
  right: 8%;
  animation-delay: 0.5s;
}
.welcome__confetti--3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 1s;
}
.welcome__confetti--4 {
  top: 30%;
  left: 20%;
  animation-delay: 1.5s;
}
.welcome__confetti--5 {
  bottom: 20%;
  right: 5%;
  animation-delay: 0.8s;
}
.welcome__confetti--6 {
  top: 15%;
  right: 20%;
  animation-delay: 2s;
}
.welcome__confetti--7 {
  bottom: 10%;
  right: 18%;
  animation-delay: 0.3s;
}
.welcome__confetti--8 {
  bottom: 30%;
  left: 3%;
  animation-delay: 1.2s;
}

@keyframes confetti-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(12deg);
  }
}

.welcome__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.welcome__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.welcome__sparkle {
  color: var(--color-orange);
  font-size: 16px;
}

.welcome__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.welcome__divider-v {
  width: 1px;
  height: 90px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--color-border-orange),
    var(--color-orange),
    var(--color-border-orange),
    transparent
  );
}

.welcome__item {
  text-align: center;
}

.welcome__item-content {
  margin-bottom: 10px;
}

.welcome__item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.welcome__one-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-orange), #ff6b35);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 12px rgba(252, 128, 25, 0.3);
}

.welcome__membership-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: inline-block;
}

.welcome__item-subtitle {
  font-size: 13px;
  color: var(--color-text-secondary);
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* === BONUS BENEFITS === */
.bonus {
  padding: 40px 24px;
  background-image: radial-gradient(
    ellipse at 80% 50%,
    rgba(252, 128, 25, 0.04) 0%,
    transparent 50%
  );
}

.bonus__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.bonus__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.bonus__line {
  width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border-orange),
    var(--color-orange),
    var(--color-border-orange),
    transparent
  );
}

.bonus__title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-secondary);
}

.bonus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.bonus__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.bonus__card:hover {
  border-color: var(--color-orange);
  transform: translateY(-4px);
}

.bonus__card--link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.bonus__card--golf::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://media-assets.swiggy.com/co-web-assets/external_landing_pages/images/cbcc_new/golf-bg.webp")
    center / cover no-repeat;
  filter: brightness(0.55) saturate(0.8);
  z-index: 0;
}

.bonus__card--golf::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 8, 4, 0.85) 0%,
    rgba(13, 8, 4, 0.4) 50%,
    rgba(13, 8, 4, 0.15) 100%
  );
  z-index: 1;
}

.bonus__card--golf > * {
  position: relative;
  z-index: 2;
}

.bonus__card--hotel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://media-assets.swiggy.com/co-web-assets/external_landing_pages/images/cbcc_new/hotel-bg.webp")
    center / cover no-repeat;
  filter: brightness(0.5) saturate(0.8);
  z-index: 0;
}

.bonus__card--hotel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 8, 4, 0.85) 0%,
    rgba(13, 8, 4, 0.4) 50%,
    rgba(13, 8, 4, 0.15) 100%
  );
  z-index: 1;
}

.bonus__card--hotel > * {
  position: relative;
  z-index: 2;
}

.bonus__card--mastercard {
  border: 1px solid rgba(235, 0, 27, 0.2);
  background: linear-gradient(
    135deg,
    var(--color-surface) 0%,
    rgba(235, 0, 27, 0.03) 100%
  );
}

.bonus__card--mastercard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://media-assets.swiggy.com/co-web-assets/external_landing_pages/images/cbcc_new/mastercard-logo.png")
    center / 70% auto no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.bonus__card--mastercard > * {
  position: relative;
  z-index: 2;
}

.bonus__card--mastercard:hover {
  border-color: rgba(235, 0, 27, 0.5);
  box-shadow: 0 4px 20px rgba(235, 0, 27, 0.1);
}

.bonus__mastercard-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.bonus__card-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-orange);
  border-bottom: 1px solid var(--color-orange);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.bonus__card--mastercard:hover .bonus__card-cta {
  color: var(--color-orange-light);
  border-color: var(--color-orange-light);
}

.bonus__card-visual {
  margin-bottom: 16px;
}

.bonus__card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-orange-light);
}

.bonus__card-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* === KEY DETAILS === */
.details {
  padding: 40px 24px;
  background: var(--color-surface);
  background-image: linear-gradient(
    0deg,
    rgba(252, 128, 25, 0.03) 0%,
    transparent 50%
  );
}

.details__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.details__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.details__line {
  width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border-orange),
    var(--color-orange),
    var(--color-border-orange),
    transparent
  );
}

.details__title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-secondary);
}

.details__scroll {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.details__card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.details__card-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.details__card-header--blck {
  background: linear-gradient(135deg, #1a1a2e, #1f1f3a);
}

.details__card-header--ornge {
  background: linear-gradient(135deg, #ff6b35, #e85d2f);
}

.details__card-header h3 {
  font-size: 15px;
  font-weight: 600;
}

.details__mini-card {
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.details__card-body {
  padding: 20px;
}

.details__card-body ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.details__card-body li {
  font-size: 14px;
  color: var(--color-text-secondary);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.details__card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-orange);
}

.details__card-body del {
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.details__card-body strong {
  color: var(--color-text);
  font-weight: 700;
}

/* === FOOTER HERO === */
.footer-hero {
  position: relative;
  padding: 40px 24px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    #1a0e04 50%,
    #0a0500 100%
  );
}

.footer-hero__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.footer-hero__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.footer-hero__title--sub {
  color: var(--color-text-secondary);
  font-weight: 600;
}

.footer-hero__desc {
  font-size: 16px;
  color: var(--color-text-muted);
}

.footer-hero__card-visual {
  display: flex;
  justify-content: center;
}

.footer-hero__stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1.6;
  cursor: pointer;
}

.footer-hero__card-img {
  position: absolute;
  width: 85%;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}

.footer-hero__card-img--back {
  top: 0;
  left: 0;
  transform: rotate(-4deg) translate(-5%, 5%);
}

.footer-hero__card-img--front {
  top: 0;
  right: 0;
  transform: rotate(3deg) translate(5%, -2%);
  z-index: 2;
}

.footer-hero__stack:hover .footer-hero__card-img--back {
  transform: rotate(-8deg) translate(-12%, 10%) scale(0.92);
  opacity: 0.7;
}

.footer-hero__stack:hover .footer-hero__card-img--front {
  transform: rotate(6deg) translate(10%, -5%) scale(0.92);
  opacity: 0.7;
}

.footer-hero__cashback-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.footer-hero__stack:hover .footer-hero__cashback-overlay {
  opacity: 1;
}

.footer-hero__cashback-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 24px 36px;
  background: rgba(13, 8, 4, 0.88);
  backdrop-filter: blur(12px);
  border: 2px solid var(--color-orange);
  border-radius: var(--radius-xl);
  box-shadow: 0 0 40px rgba(252, 128, 25, 0.3);
}

.footer-hero__cashback-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-hero__cashback-amount {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.footer-hero__cashback-text {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.footer-hero__glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(252, 128, 25, 0.22) 0%,
    rgba(252, 128, 25, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* === APPLY QR === */
.apply {
  padding: 40px 24px;
  text-align: center;
  background-image: radial-gradient(
    ellipse at 50% 50%,
    rgba(252, 128, 25, 0.06) 0%,
    transparent 60%
  );
}

.apply__container {
  max-width: 500px;
  margin: 0 auto;
}

.apply__title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(
    135deg,
    var(--color-orange),
    var(--color-orange-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.apply__subtitle {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.apply__qr {
  display: inline-block;
  padding: 24px;
  background: var(--color-surface);
  border: 2px solid var(--color-border-orange);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 60px rgba(252, 128, 25, 0.15),
    var(--shadow-orange);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.apply__qr:hover {
  transform: scale(1.03);
}

.apply__qr-img {
  border-radius: var(--radius-sm);
}

.apply__disclaimer {
  margin-top: 24px;
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* === SAVINGS CALCULATOR === */
.calculator {
  margin-top: 24px;
  background: linear-gradient(160deg, #1c1410 0%, #14100a 50%, #0f0b06 100%);
  border: 1.5px solid var(--color-border-orange);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow:
    0 8px 40px rgba(252, 128, 25, 0.08),
    0 2px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.calculator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-orange),
    var(--color-orange-light),
    var(--color-orange),
    transparent
  );
  opacity: 0.7;
}

.calculator__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.calculator__subtitle {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.calculator__inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
}

.calculator__field {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(252, 128, 25, 0.08);
}

.calculator__field:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.calculator__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1px;
}

.calculator__field-note {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.calculator__input-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calculator__currency {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange);
}

.calculator__slider {
  flex: 1;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--color-border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-orange);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(252, 128, 25, 0.4);
}

.calculator__slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-orange);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(252, 128, 25, 0.4);
}

.calculator__number {
  width: 95px;
  padding: 10px 12px;
  background: #0a0704;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-orange-light);
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  font-family: var(--font-primary);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.calculator__number:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.3),
    0 0 8px rgba(252, 128, 25, 0.15);
}

.calculator__result {
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(252, 128, 25, 0.12);
  border-radius: var(--radius-lg);
}

.calculator__result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(252, 128, 25, 0.15);
}

.calculator__result-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.calculator__result-row span:last-child {
  font-weight: 600;
  color: var(--color-text);
  font-family: var(--font-primary);
}

.calculator__result-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px;
  background: linear-gradient(
    135deg,
    rgba(252, 128, 25, 0.12),
    rgba(252, 128, 25, 0.04)
  );
  border: 1.5px solid var(--color-border-orange);
  border-radius: var(--radius-md);
  box-shadow: 0 0 30px rgba(252, 128, 25, 0.06) inset;
}

.calculator__result-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calculator__result-amount {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === FAQ === */
.faq {
  padding: 40px 24px;
  background-image: radial-gradient(
    ellipse at 50% 50%,
    rgba(252, 128, 25, 0.04) 0%,
    transparent 60%
  );
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.faq__line {
  width: 80px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border-orange),
    var(--color-orange),
    var(--color-border-orange),
    transparent
  );
}

.faq__section-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-secondary);
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
}

.faq__question-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

.faq__icon {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--color-orange);
  transition: transform 0.3s ease;
  width: 24px;
  text-align: center;
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 0 0 0;
}

.faq__item--open .faq__answer {
  max-height: 300px;
  padding: 0 0 20px 0;
}

.faq__answer p {
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer__logos img {
  height: 24px;
  width: auto;
  opacity: 0.7;
}

.footer__copy {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.footer__disclaimer {
  font-size: 11px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* === FOOTER NAV === */
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
  text-align: left;
}

.footer-nav__col--brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-nav__brand {
  display: flex;
  align-items: center;
}

.footer-nav__wordmark {
  height: 44px;
  width: auto;
  opacity: 0.9;
}

.footer-nav__heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-orange);
  margin-bottom: 14px;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  transition:
    color 0.2s,
    text-decoration-color 0.2s;
}

.footer-nav__link:hover {
  color: #ffffff;
  text-decoration-color: var(--color-orange);
}

/* === STICKY CTA === */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(13, 8, 4, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  z-index: 999;
  display: none;
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none !important;
  }
}

.sticky-cta__button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    var(--color-orange),
    var(--color-orange-dark)
  );
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 -4px 20px rgba(252, 128, 25, 0.3);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header__nav {
    gap: 16px;
  }

  .header__link {
    display: none;
  }

  .header__cta-btn {
    display: none;
  }

  .header__container {
    justify-content: center;
  }

  .hero__qr {
    display: none;
  }

  .hero__apply-btn {
    display: none;
  }

  .apply__qr {
    display: none;
  }

  .apply__mobile-btn {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__callout {
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
  }

  .hero__cards {
    order: -1;
  }

  .card-carousel {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero__card-stack {
    max-width: 320px;
    height: 240px;
  }

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

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

  .cashback__card {
    padding: 24px;
  }

  .welcome__grid {
    flex-direction: column;
    gap: 24px;
  }

  .welcome__divider-v {
    width: 80px;
    height: 1px;
  }

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

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

  .footer-hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-hero__stack {
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }

  .footer-nav__col--brand {
    justify-content: flex-start;
  }

  .sticky-cta {
    display: block;
  }

  .apply {
    padding-bottom: 120px;
  }

  .apply__title,
  .apply__subtitle {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__callouts {
    gap: 8px;
    padding: 8px 10px;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
  }

  .hero__callout-value {
    font-size: 13px;
  }

  .hero__callout-label {
    font-size: 10px;
  }

  .hero__callout-divider {
    flex-shrink: 0;
  }

  .partners__header,
  .cashback__header,
  .welcome__header,
  .bonus__header,
  .details__header,
  .faq__header {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .partners__line,
  .cashback__line,
  .welcome__line,
  .bonus__line,
  .details__line,
  .faq__line {
    flex: 1;
    min-width: 20px;
    width: auto;
  }

  .partners__section-title,
  .cashback__section-title,
  .welcome__label,
  .bonus__title,
  .details__title,
  .faq__section-title {
    font-size: 15px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .cashback__title {
    font-size: 17px;
  }

  .calculator {
    padding: 20px;
  }

  .calculator__number {
    width: 75px;
  }

  .calculator__result-amount {
    font-size: 28px;
  }

  .apply__title {
    font-size: 22px;
  }
}

/* === ANIMATIONS === */
@media (prefers-reduced-motion: no-preference) {
  .hero__content,
  .hero__cards,
  .cashback__card,
  .calculator,
  .bonus__card,
  .details__card,
  .welcome__container,
  .partners__card,
  .apply__container {
    opacity: 0;
    transform: translateY(30px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }

  .hero__content.animate-in,
  .hero__cards.animate-in,
  .cashback__card.animate-in,
  .calculator.animate-in,
  .bonus__card.animate-in,
  .details__card.animate-in,
  .welcome__container.animate-in,
  .partners__card.animate-in,
  .apply__container.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
}
