﻿/* ========================================
   KimCard - Homepage Styles
   ======================================== */

/* === Background Slider === */
.bg-slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.bg-slide.active {
  opacity: 1;
}

.bg-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(27, 77, 62, 0.7) 0%,
    rgba(27, 77, 62, 0.5) 50%,
    rgba(245, 243, 237, 0.95) 100%
  );
}

.bg-slider-indicators {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 100;
}

.bg-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-base);
}

.bg-slider-dot.active {
  background: var(--color-white);
  width: 24px;
  border-radius: 4px;
}

.bg-slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* === Hero Section === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: transparent;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero.with-bg-slider {
  background: transparent;
}

.hero.with-bg-slider .hero-content {
  color: var(--color-white);
}

.hero.with-bg-slider .hero-title {
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero.with-bg-slider .hero-title-highlight {
  background: linear-gradient(135deg, #fff, var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero.with-bg-slider .hero-desc {
  color: rgba(255, 255, 255, 0.9);
}

.hero.with-bg-slider .hero-stat-value {
  color: var(--color-white);
}

.hero.with-bg-slider .hero-stat-label {
  color: rgba(255, 255, 255, 0.7);
}

.hero.with-bg-slider .hero-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  backdrop-filter: blur(10px);
}

.hero.with-bg-slider .hero-badge-dot {
  background: var(--color-gold);
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(10, 110, 92, 0.1);
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s ease;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 50%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
}

.hero-title-main {
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
}

.hero.with-bg-slider .hero-title-main {
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #e8e8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}

.hero-desc-dynamic {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-desc {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  max-width: 520px;
  animation: fadeInUp 0.6s ease 0.2s backwards;
  line-height: 1.7;
}

.hero.with-bg-slider .hero-desc {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Hero Authorized Systems */
.hero-auth-systems {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.auth-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.auth-platforms {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.auth-platform {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.auth-platform svg {
  opacity: 0.9;
}

/* Hero Stats - Premium Horizontal Layout */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 32px;
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
}

.hero-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-stat-value {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
  font-family: var(--font-display), 'Playfair Display', Georgia, serif;
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s ease;
}

.hero-stat-item:hover .hero-stat-value {
  transform: scale(1.05);
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: var(--font-body), 'Inter', sans-serif;
}

/* Animated counter effect */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stat-value {
  animation: countUp 0.8s ease-out 0.6s backwards;
}

.hero-stat-item:nth-child(2) .hero-stat-value {
  animation-delay: 0.75s;
}

.hero-stat-item:nth-child(3) .hero-stat-value {
  animation-delay: 0.9s;
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 24px;
    margin-top: 24px;
    justify-content: center;
  }
  .hero-stat-item {
    align-items: center;
    flex: 1;
    min-width: 80px;
  }
  .hero-stat-item:not(:last-child)::after {
    right: -12px;
    height: 28px;
  }
  .hero-stat-value {
    font-size: 26px;
    letter-spacing: -0.5px;
  }
  .hero-stat-label {
    font-size: 11px;
    white-space: nowrap;
  }
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease 0.5s backwards;
}

/* === Payment Module Section === */
.payment-module-section {
  background: #FFFFFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.payment-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Phone Wrapper */
.pm-phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

/* CSS iPhone - Realistic Frame */
.pm-iphone {
  position: relative;
  z-index: 2;
}

.pm-iphone-frame {
  width: 260px;
  height: 540px;
  background: linear-gradient(145deg, #3A3A3C 0%, #1C1C1E 30%, #1C1C1E 70%, #3A3A3C 100%);
  border-radius: 50px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 25px 50px rgba(0, 0, 0, 0.4);
  position: relative;
}

.pm-iphone-frame::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 48px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.05) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0,0,0,0.1) 100%);
  pointer-events: none;
  z-index: 10;
}

.pm-iphone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #1C1C1E;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

.pm-iphone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0F1A15 0%, #0A1210 100%);
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pm-screen-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.pm-screen-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Charging bolt blink animation */
.pm-battery-charging path {
  animation: chargingBolt 2s ease-in-out infinite;
}

@keyframes chargingBolt {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.pm-screen-content {
  flex: 1;
  padding: 8px 20px 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pm-screen-greeting {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.pm-screen-balance-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.pm-screen-balance {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pm-screen-earnings {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.pm-screen-earn-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pm-screen-earn-item span:first-child {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.pm-green {
  color: #4ADE80 !important;
}

.pm-red {
  color: #F87171 !important;
}

.pm-screen-chart {
  margin-bottom: 10px;
}

.pm-chart-canvas {
  width: 100%;
  height: 50px;
  display: block;
}

.pm-screen-topup {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #1B4D3E, #2D6B56);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.pm-screen-transactions {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.pm-tx-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.pm-tx-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}

.pm-tx-in {
  background: rgba(74, 222, 128, 0.15);
}

.pm-tx-out {
  background: rgba(248, 113, 113, 0.15);
}

.pm-tx-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.pm-tx-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.pm-tx-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}

.pm-tx-amount {
  font-family: var(--font-number);
  font-size: 12px;
  font-weight: 600;
}

/* Display Card Beside Phone */
.pm-display-card {
  position: absolute;
  left: -40px;
  bottom: 60px;
  z-index: 3;
  width: 280px;
  height: 175px;
  transform: rotate(-8deg);
  animation: pm-card-float 4s ease-in-out infinite;
}

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

/* PM Content */
.pm-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pm-content-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pm-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pm-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: #0A0A0A;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pm-desc {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
  max-width: 400px;
}

/* === Premium Investment Widget (replaces pm-calculator) === */
.pm-invest-widget {
  margin-top: var(--space-6);
}

/* --- Tabs --- */
.piw-tabs {
  display: flex;
  gap: 2px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 3px;
  margin-bottom: var(--space-6);
}

.piw-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 8px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-body);
}

.piw-tab:hover {
  background: rgba(255, 255, 255, 0.6);
}

.piw-tab-active {
  background: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.piw-tab-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.piw-tab-active .piw-tab-name {
  color: var(--color-text);
}

.piw-tab-apy {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-text-secondary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.piw-tab-apy small {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-secondary);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

.piw-tab-active .piw-tab-apy {
  color: var(--color-primary);
}

/* --- Amount Section --- */
.piw-amount {
  margin-bottom: var(--space-6);
}

.piw-amount-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-4);
}

.piw-amount-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.piw-amount-display {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.piw-amount-currency {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text-secondary);
  font-family: var(--font-display);
}

.piw-amount-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* --- Slider --- */
.piw-slider-wrap {
  position: relative;
  height: 32px;
  display: flex;
  align-items: center;
  margin-bottom: var(--space-3);
}

.piw-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) var(--fill, 10%), #E5E7EB var(--fill, 10%), #E5E7EB 100%);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  transition: height 0.15s ease;
}

.piw-slider:hover {
  height: 6px;
}

.piw-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 0 0 0 rgba(10, 110, 92, 0);
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.piw-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(10, 110, 92, 0.1);
  transform: scale(1.1);
}

.piw-slider::-webkit-slider-thumb:active {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 0 0 6px rgba(10, 110, 92, 0.15);
  transform: scale(1.05);
}

.piw-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.piw-slider::-moz-range-track {
  height: 4px;
  background: transparent;
  border-radius: 2px;
}

.piw-slider::-moz-range-progress {
  background: var(--color-primary);
  border-radius: 2px;
  height: 4px;
}

/* --- Presets --- */
.piw-amount-presets {
  display: flex;
  gap: 6px;
}

.piw-preset {
  flex: 1;
  padding: 6px 0;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.piw-preset:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(10, 110, 92, 0.03);
}

.piw-preset-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.piw-preset-active:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

/* --- Earnings --- */
.piw-earnings {
  display: flex;
  align-items: stretch;
  background: rgba(10, 110, 92, 0.03);
  border: 1px solid rgba(10, 110, 92, 0.08);
  border-radius: 8px;
  padding: var(--space-4) 0;
  margin-bottom: var(--space-5);
  overflow: hidden;
}

.piw-earn-row {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-4);
}

.piw-earn-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.piw-earn-val {
  display: block;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-text);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.piw-earn-row-annual .piw-earn-val {
  font-size: 20px;
  color: var(--color-primary);
}

.piw-earn-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.06);
  align-self: stretch;
}

/* --- CTA Button --- */
.piw-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: 14px var(--space-6);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  margin-bottom: var(--space-4);
}

.piw-cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 110, 92, 0.25);
}

.piw-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

/* --- Trust Indicators --- */
.piw-trust {
  display: flex;
  justify-content: center;
  gap: var(--space-5);
}

.piw-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-secondary);
  opacity: 0.7;
}

.piw-trust-item svg {
  color: var(--color-primary);
  opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .piw-amount-value {
    font-size: 30px;
  }
  .piw-tab-apy {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .pm-invest-widget {
    margin-top: var(--space-5);
  }
  .piw-amount-value {
    font-size: 28px;
  }
  .piw-amount-presets {
    gap: 4px;
  }
  .piw-preset {
    padding: 5px 0;
    font-size: 11px;
  }
  .piw-earn-val {
    font-size: 14px;
  }
  .piw-earn-row-annual .piw-earn-val {
    font-size: 17px;
  }
  .piw-trust {
    gap: var(--space-3);
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .piw-tabs {
    gap: 1px;
    padding: 2px;
  }
  .piw-tab {
    padding: 8px 4px;
  }
  .piw-tab-name {
    font-size: 10px;
  }
  .piw-tab-apy {
    font-size: 15px;
  }
  .piw-amount-value {
    font-size: 24px;
  }
  .piw-amount-currency {
    font-size: 16px;
  }
  .piw-earn-row {
    padding: 0 var(--space-2);
  }
}

/* PM Capsules */
.pm-capsules {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pm-capsule {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(27, 77, 62, 0.06);
  border: 1px solid rgba(27, 77, 62, 0.12);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
}

/* === Lifestyle Showcase Section === */
.lifestyle-showcase-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lifestyle-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lifestyle-bg-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.lifestyle-bg-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.lifestyle-bg-item.active {
  opacity: 1;
}

.lifestyle-bg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.lifestyle-showcase-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lifestyle-showcase-header {
  text-align: center;
  margin-bottom: 40px;
}

.lifestyle-showcase-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
}

.lifestyle-showcase-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.lifestyle-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.lifestyle-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lifestyle-tab:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lifestyle-tab.active {
  background: rgba(255, 255, 255, 0.9);
  color: #1A1A1A;
  border-color: rgba(255, 255, 255, 0.9);
}

.lifestyle-tab svg {
  width: 18px;
  height: 18px;
}

.lifestyle-scenes {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 280px;
  margin-bottom: 40px;
}

.lifestyle-scene-card {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.lifestyle-scene-card.active {
  opacity: 1;
  transform: translateY(0);
}

.scene-card-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scene-card-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}

/* Scene App Icons - 2 rows x 3 columns layout */
.scene-app-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}

.scene-app-row {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.scene-app-icons img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: rgba(255, 255, 255, 0.15);
  padding: 7px;
  filter: brightness(1.1);
}

.scene-app-icons img:hover {
  opacity: 1;
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.25);
}

/* Custom App Icons for Chinese apps not in Simple Icons */
.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  padding: 4px;
}

.app-icon:hover {
  opacity: 1;
  transform: scale(1.2);
}

.app-icon-ctrip {
  background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
}

.app-icon-fliggy {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.app-icon-claude {
  background: linear-gradient(135deg, #d4a574 0%, #c4956a 100%);
  font-size: 9px;
}

@media (max-width: 768px) {
  .app-icon {
    width: 40px;
    height: 40px;
    font-size: 9px;
    border-radius: 10px;
  }
  
  .app-icon-claude {
    font-size: 8px;
  }
  .scene-app-icons {
    gap: 10px;
    margin-top: 16px;
  }
  .scene-app-row {
    gap: 12px;
  }
  .scene-app-icons img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    padding: 6px;
  }
}

.lifestyle-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.lifestyle-nav-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.lifestyle-nav-btn:hover {
  background: white;
  transform: scale(1.1);
}

.lifestyle-nav-btn svg {
  width: 20px;
  height: 20px;
  color: #1A1A1A;
}

.lifestyle-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lifestyle-progress-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.lifestyle-progress-fill {
  height: 100%;
  width: 0%;
  background: white;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.lifestyle-progress-dots {
  display: flex;
  gap: 8px;
}

.lifestyle-progress-dots .dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lifestyle-progress-dots .dot.active {
  background: white;
  transform: scale(1.2);
}

/* === Statistics Section === */
/* === Early Member Benefits Section - 早期会员专属权益 (图1/图2布局) === */
.early-member-section {
  background: #F5F3EE;
  padding: var(--space-12) 0;
}

.early-member-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.early-member-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #1B4D3E;
  margin-bottom: var(--space-2);
}

.early-member-subtitle {
  font-size: var(--text-sm);
  color: #666;
  margin-bottom: var(--space-4);
}

.invite-btn {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  background: #F5F3EE;
  border: 1px solid #D4CFC4;
  border-radius: var(--radius-lg);
  color: #1B4D3E;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.invite-btn:hover {
  background: #E8E5DC;
  border-color: #C4BFB4;
}

.member-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 600px;
  margin: 0 auto;
}

.metric-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.metric-card--highlight {
  background: linear-gradient(135deg, #0A6E5C, #0D8B74);
  border: none;
}

.metric-card--highlight .metric-value.highlight {
  color: white;
}

.metric-card--highlight .metric-label {
  color: rgba(255, 255, 255, 0.8);
}

.metric-card--highlight .metric-desc {
  color: rgba(255, 255, 255, 0.6);
}

.metric-icon-wrap {
  width: 36px;
  height: 36px;
  margin: 0 auto var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 110, 92, 0.08);
  border-radius: 50%;
}

.metric-card--highlight .metric-icon-wrap {
  background: rgba(255, 255, 255, 0.15);
}

.metric-icon-wrap svg {
  width: 18px;
  height: 18px;
  color: #0A6E5C;
}

.metric-card--highlight .metric-icon-wrap svg {
  color: white;
}

.metric-icon {
  font-size: 24px;
  margin-bottom: var(--space-2);
}

.metric-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #1B4D3E;
  margin-bottom: var(--space-1);
}

.metric-value.highlight {
  color: #0A6E5C;
}

.metric-label {
  font-size: var(--text-xs);
  color: #888;
  margin-bottom: var(--space-1);
}

.metric-desc {
  font-size: 10px;
  color: #999;
}

.metric-level {
  margin-bottom: var(--space-2);
}

.level-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: linear-gradient(135deg, #0A6E5C, #0D8B74);
  color: white;
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius-full);
}

.metric-progress {
  margin-bottom: var(--space-1);
}

.progress-bar {
  height: 6px;
  background: #E8E5DC;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0A6E5C, #0D8B74);
  border-radius: var(--radius-full);
}

.progress-hint {
  font-size: 10px;
  color: #888;
}

/* Desktop styles for early member */
@media (min-width: 768px) {
  .early-member-section {
    padding: var(--space-16) 0;
  }
  
  .early-member-title {
    font-size: var(--text-3xl);
  }
  
  .early-member-subtitle {
    font-size: var(--text-base);
  }
  
  .member-metrics {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    max-width: 900px;
  }
  
  .metric-card {
    padding: var(--space-6);
  }
  
  .metric-value {
    font-size: var(--text-3xl);
  }
  
  .metric-label {
    font-size: var(--text-sm);
  }
}

/* === Asset Flywheel Section - 资产飞轮 (图3垂直时间线布局) === */
.asset-flywheel-section {
  background: #F5F3EE;
  padding: var(--space-12) 0;
}

.flywheel-hero {
  text-align: center;
  margin-bottom: var(--space-8);
}

.flywheel-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #1B4D3E;
  margin-bottom: var(--space-2);
  letter-spacing: 0.05em;
}

.flywheel-subtitle {
  font-size: var(--text-sm);
  color: #999;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.flywheel-timeline {
  max-width: 400px;
  margin: 0 auto var(--space-8);
  padding: 0 var(--space-5);
}

.timeline-step {
  position: relative;
  padding-left: 60px;
  padding-bottom: var(--space-4);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step:last-child .step-line {
  display: none;
}

/* Icon circle on the left */
.step-icon-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.step-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.step-icon svg {
  width: 20px;
  height: 20px;
  color: #0A6E5C;
  transition: color 0.4s ease;
}

/* Active state: white icon with green glow ring */
.timeline-step.active .step-icon {
  background: #0A6E5C;
  box-shadow: 0 0 0 4px rgba(10, 110, 92, 0.15), 0 4px 12px rgba(10, 110, 92, 0.3);
}

.timeline-step.active .step-icon svg {
  color: white;
}

/* Connecting line */
.step-line {
  position: absolute;
  left: 23px;
  top: 48px;
  width: 2px;
  height: calc(100% - 32px);
  background: #E0E8E5;
  transition: background 0.6s ease;
}

/* Green line for active steps and all previous steps */
.timeline-step.active .step-line {
  background: linear-gradient(180deg, #0A6E5C, #0D8B74);
}

/* Content card */
.step-content {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: white;
  border-radius: 12px;
  padding: var(--space-4) var(--space-4);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  min-height: 64px;
}

/* Active state: dark green card */
.timeline-step.active .step-content {
  background: linear-gradient(135deg, #0A6E5C 0%, #0D8B74 100%);
  box-shadow: 0 4px 20px rgba(10, 110, 92, 0.25);
}

.step-text {
  flex: 1;
}

.step-text h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: #1B4D3E;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}

.step-text p {
  font-size: var(--text-xs);
  color: #888;
  line-height: 1.4;
  margin: 0;
  transition: color 0.4s ease;
}

/* Active state text colors */
.timeline-step.active .step-text h4,
.timeline-step.active .step-text p {
  color: white;
}

/* Step number on the right */
.step-number {
  font-family: var(--font-mono, 'SF Mono', monospace);
  font-size: 13px;
  font-weight: 600;
  color: #BBB;
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}

.timeline-step.active .step-number {
  color: rgba(255, 255, 255, 0.9);
}

.flywheel-tagline {
  text-align: center;
  font-size: var(--text-sm);
  color: #1B4D3E;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: var(--space-8);
  padding: 0 var(--space-5);
}

/* Desktop styles for flywheel */
@media (min-width: 768px) {
  .asset-flywheel-section {
    padding: var(--space-16) 0;
  }
  
  .flywheel-title {
    font-size: var(--text-3xl);
  }
  
  .flywheel-subtitle {
    font-size: var(--text-base);
  }
  
  .flywheel-timeline {
    max-width: 600px;
    padding: 0;
  }
  
  .timeline-step {
    padding-left: var(--space-16);
    padding-bottom: var(--space-8);
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: var(--text-sm);
  }
  
  .step-line {
    left: 19px;
    top: 44px;
  }
  
  .step-content {
    padding: var(--space-5);
    gap: var(--space-5);
  }
  
  .step-icon {
    width: 48px;
    height: 48px;
  }
  
  .step-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .step-text h4 {
    font-size: var(--text-lg);
  }
  
  .step-text p {
    font-size: var(--text-sm);
  }
}

.stats-section {
  background: #D8D8CA;
  padding: 66px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  text-align: center;
}

.stat-item {
  padding: var(--space-5) 0;
}

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: #1B4D3E;
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === CTA Section === */
.cta-section {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 51, 41, 0.75) 0%,
    rgba(15, 51, 41, 0.60) 50%,
    rgba(15, 51, 41, 0.80) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  padding: var(--space-10) var(--space-6);
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-regular);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  line-height: var(--leading-snug);
}

.cta-content p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.cta-actions .btn {
  min-width: 140px;
  padding: var(--space-3) var(--space-6);
}

/* CTA Download Grid - 4 Platform Buttons */
.cta-download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-6);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.download-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-3);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-xs);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.download-btn svg {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

.download-btn:hover svg {
  opacity: 1;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes cardIdleRotate {
  0%   { transform: rotateY(0deg) rotateX(0deg); }
  25%  { transform: rotateY(8deg) rotateX(-3deg); }
  50%  { transform: rotateY(0deg) rotateX(0deg); }
  75%  { transform: rotateY(-8deg) rotateX(3deg); }
  100% { transform: rotateY(0deg) rotateX(0deg); }
}

.holo-card.idle {
  animation: cardIdleRotate 6s ease-in-out infinite;
}

/* === Scroll Animations === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  
  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    margin-bottom: var(--space-4);
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: var(--space-4);
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-5);
    font-size: var(--text-base);
  }
  
  .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
  }

  .payment-module-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  /* Mobile: move phone below the CTA button */
  .pm-visual {
    order: 2;
  }
  
  .pm-content {
    order: 1;
  }
  
  .pm-title {
    font-size: 36px;
  }
  
  .pm-phone-wrapper {
    min-height: 450px;
  }
  
  .stats-section {
    padding: 40px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  
  .stat-item {
    padding: var(--space-3) 0;
  }
  
  .cta-actions {
    flex-direction: row;
    gap: var(--space-3);
  }
  
  .cta-actions .btn {
    width: auto;
    min-width: 120px;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
  }
  
  .cta-download-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: var(--space-4);
    max-width: 280px;
  }
  
  .download-btn {
    padding: var(--space-3) var(--space-2);
    font-size: 11px;
  }
  
  .download-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .platform-icons {
    gap: var(--space-3);
  }
  
  .platform-icon {
    font-size: 12px;
  }
  
  .platform-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 768px) {
  .hero-card {
    width: 200px;
    height: 126px;
    transform: none;
    border-radius: 10px;
  }
  
  .hero-card:hover {
    transform: none;
  }
  
  .hero-card-area {
    height: 150px;
    max-width: 240px;
  }
  
  .holo-card {
    width: 200px;
    height: 126px;
    border-radius: 10px;
  }
  
  .holo-card::before,
  .holo-card::after {
    border-radius: 10px;
  }
  
  .holo-card-shine {
    border-radius: 10px;
  }

  /* Mobile hero title - larger with gradient color */
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem) !important;
    margin-bottom: var(--space-3);
  }

  .hero.with-bg-slider .hero-title-main {
    background: linear-gradient(135deg, #ffffff 0%, #e8d5a3 40%, #ffffff 70%, #c9a962 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
  }

  .hero.with-bg-slider .hero-title-highlight {
    background: linear-gradient(135deg, #e8d5a3 0%, #ffffff 50%, #c9a962 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-desc {
    font-size: var(--text-lg) !important;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  }

  .pm-title {
    font-size: 30px;
  }
  
  .pm-phone-wrapper {
    min-height: 380px;
  }
  
  .pm-iphone-frame {
    width: 220px;
    height: 440px;
    border-radius: 40px;
    padding: 6px;
  }
  
  .pm-iphone-screen {
    border-radius: 32px;
  }
  
  .pm-display-card {
    width: 200px;
    height: 125px;
    left: -10px;
    bottom: 30px;
  }

  .lifestyle-showcase-section {
    min-height: auto;
    padding: 60px 0;
  }
  
  .lifestyle-showcase-content {
    padding: 40px 20px;
  }
  
  .lifestyle-showcase-title {
    font-size: 32px;
  }
  
  .lifestyle-tabs {
    display: none;
  }
  
  .lifestyle-scenes {
    max-width: 320px;
    height: 260px;
    margin-bottom: 30px;
  }
  
  .scene-card-title {
    font-size: 24px;
  }
  
  .stat-value {
    font-size: var(--text-2xl);
  }
  
  .cta-content h2 {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 480px) {
  .hero-card {
    width: 160px;
    height: 100px;
    border-radius: 8px;
  }

  .hero-card-area {
    height: 120px;
    max-width: 200px;
  }

  .holo-card {
    width: 160px;
    height: 100px;
    border-radius: 8px;
  }

  .holo-card::before,
  .holo-card::after {
    border-radius: 8px;
  }

  .holo-card-shine {
    border-radius: 8px;
  }

  .hero-card-number {
    font-size: var(--text-sm);
    letter-spacing: 0.1em;
  }
  
  .stats-section {
    padding: 24px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }
  
  .stat-item {
    padding: var(--space-2) var(--space-1);
  }
  
  .stat-value {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-1);
  }
  
  .stat-label {
    font-size: 10px;
    letter-spacing: 0.05em;
  }
}

/* ========================================
   Hero Holographic Card (3D tilt + shine + flip)
   ======================================== */
.hero-card-area {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 320px;
  perspective: 1200px;
  z-index: 10;
}

/* Flip card container */
.card-flipper {
  width: 420px;
  max-width: 90%;
  height: 260px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.card-flipper.flipped {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
}

.card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #1B4D3E 0%, #0A6E5C 50%, #085A4A 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201, 169, 98, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.card-back-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold-light, #e8d5a3);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.card-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.card-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.card-benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 50%;
  color: var(--color-gold-light, #e8d5a3);
}

.card-benefit-icon svg {
  width: 20px;
  height: 20px;
}

.card-benefit-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.card-flip-hint {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: #999;
  white-space: nowrap;
  opacity: 0.7;
}

.holo-card {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, #1B4D3E 0%, #0A6E5C 50%, #085A4A 100%);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201, 169, 98, 0.1);
  overflow: hidden;
}

.holo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 98, 0.2);
  pointer-events: none;
  z-index: 5;
}

.holo-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 20px;
  background: linear-gradient(
    var(--holo-angle, 135deg),
    transparent 0%,
    rgba(201, 169, 98, 0.06) 15%,
    rgba(232, 213, 163, 0.08) 30%,
    rgba(10, 110, 92, 0.06) 45%,
    rgba(201, 169, 98, 0.08) 60%,
    rgba(13, 138, 115, 0.06) 75%,
    rgba(201, 169, 98, 0.04) 90%,
    transparent 100%
  );
  opacity: 0.6;
  pointer-events: none;
  z-index: 4;
  transition: opacity 0.3s;
}

.holo-card:hover::after {
  opacity: 1;
}

.holo-card-shine {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 20px;
  background: linear-gradient(
    var(--shine-angle, 135deg),
    transparent 30%,
    rgba(255, 255, 255, 0.12) 48%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.12) 52%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 6;
}

/* Rotating corner glow effect */
.holo-card-glow {
  position: absolute;
  top: -60%;
  right: -60%;
  width: 120%;
  height: 120%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(201, 169, 98, 0.12) 30deg,
    transparent 60deg,
    rgba(10, 110, 92, 0.08) 120deg,
    transparent 150deg,
    rgba(232, 213, 163, 0.1) 210deg,
    transparent 240deg,
    rgba(201, 169, 98, 0.06) 300deg,
    transparent 360deg
  );
  animation: cardGlowSpin 4s linear infinite;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
}

@keyframes cardGlowSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.card-content {
  position: relative;
  z-index: 3;
  padding: 28px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold-light, #e8d5a3);
}

/* ===================
   Realistic EMV Chip (SVG)
   =================== */
.card-chip {
  width: 44px;
  height: 32px;
  position: relative;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}

.card-chip svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card-number {
  font-family: var(--font-mono, 'SF Mono', monospace);
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-name {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.card-expiry {
  font-family: var(--font-mono, 'SF Mono', monospace);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.card-network {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-gold-light, #e8d5a3);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero-card-area {
    height: 280px;
    margin-top: 40px;
  }
  .holo-card {
    width: 340px;
    height: 220px;
  }
  .card-flipper {
    width: 340px;
    height: 220px;
  }
  .card-back-title {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }
  .card-benefits {
    gap: 10px;
  }
  .card-benefit-icon {
    width: 32px;
    height: 32px;
  }
  .card-benefit-icon svg {
    width: 16px;
    height: 16px;
  }
  .card-benefit-label {
    font-size: 0.6rem;
  }
}

/* Small variant for payment module */
.holo-card-sm {
  width: 280px;
  height: 175px;
  border-radius: 14px;
}

.holo-card-sm .card-content {
  padding: 20px 24px;
}

.holo-card-sm .card-logo {
  font-size: 1rem;
}

.holo-card-sm .card-number {
  font-size: 0.9rem;
}

.holo-card-sm .card-chip {
  width: 36px;
  height: 26px;
}

.holo-card-sm .chip-pad-c {
  width: 8px;
  height: 6px;
}

.holo-card-sm .chip-pad-tl,
.holo-card-sm .chip-pad-tr,
.holo-card-sm .chip-pad-bl,
.holo-card-sm .chip-pad-br {
  width: 6px;
  height: 5px;
}

.holo-card-sm .chip-pad-tl { top: 3px; left: 3px; }
.holo-card-sm .chip-pad-tr { top: 3px; right: 3px; }
.holo-card-sm .chip-pad-bl { bottom: 3px; left: 3px; }
.holo-card-sm .chip-pad-br { bottom: 3px; right: 3px; }

.holo-card-sm .card-name {
  font-size: 0.65rem;
}

.holo-card-sm .card-network {
  font-size: 1.2rem;
}

.holo-card-sm.idle {
  animation: cardIdleRotate 6s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .holo-card-sm {
    width: 200px;
    height: 125px;
    border-radius: 10px;
  }

  .holo-card-sm .card-content {
    padding: 14px 16px;
  }

  .holo-card-sm .card-logo {
    font-size: 0.75rem;
  }

  .holo-card-sm .card-number {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }

  .holo-card-sm .card-chip {
    width: 26px;
    height: 18px;
  }

  .holo-card-sm .card-name {
    font-size: 0.5rem;
  }

  .holo-card-sm .card-network {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .holo-card-sm {
    width: 160px;
    height: 100px;
    border-radius: 8px;
  }

  .holo-card-sm .card-content {
    padding: 10px 12px;
  }

  .holo-card-sm .card-logo {
    font-size: 0.6rem;
  }

  .holo-card-sm .card-number {
    font-size: 0.5rem;
  }

  .holo-card-sm .card-chip {
    width: 20px;
    height: 14px;
  }

  .holo-card-sm .card-network {
    font-size: 0.7rem;
  }
}
