/* ============================================
   ENHANCED LANDING PAGE STYLES
   Mountain Lodge Modernism Design System
   ============================================ */

:root {
  /* Enhanced Color Palette */
  --forest-deep: #1a3a2a;
  --forest-light: #1a3a2a;
  --forest-bright: #1a3a2a;
  --sunset-orange: #e8724a;
  --sunset-amber: #c8a44e;
  --earth-clay: #e8724a;
  --cream: #faf8f4;
  --cream-dark: #f0f0ea;
  --charcoal: #1a3a2a;
  --charcoal-light: #24503a;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);

  /* Typography */
  --font-display: 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
}

/* ============================================
   HERO VIDEO SECTION
   ============================================ */

.hero-video-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  margin-left: calc(-1 * env(safe-area-inset-left, 0px));
  margin-right: calc(-1 * env(safe-area-inset-right, 0px));
  box-sizing: border-box;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrapper {
  width: 100%;
  max-height: calc(100vh - 6rem);
  overflow: hidden;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 6rem);
  object-fit: contain;
  cursor: pointer;
  display: block;
}

.hero-video-mute-btn {
  position: absolute;
  bottom: 4rem;
  right: 3rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
  padding: 0;
}

.hero-video-mute-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-video-scroll-hint {
  text-align: center;
  padding: 1rem 0;
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.7;
}

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

/* --- Hero Video Responsive --- */
@media (max-width: 767px) {
  .hero-visual,
  .notification-importance {
    display: none;
  }

  .hero-video-section {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    padding: 3rem 0 0;
    margin: 0;
    overflow: hidden;
  }

  .hero-video-wrapper {
    width: 100%;
    max-height: none;
  }

  .hero-video {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: fill;
  }

  .hero-video-mute-btn {
    bottom: 3rem;
    right: 1rem;
    width: 32px;
    height: 32px;
  }

  .hero-video-scroll-hint {
    padding: 0.75rem 0;
  }
}

/* ============================================
   HERO SECTION - ENHANCED
   ============================================ */

.hero-enhanced {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a3a2a;
  padding: 10rem 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.02) 35px, rgba(255,255,255,.02) 70px);
  opacity: 0.5;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(232, 114, 74, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(26, 58, 42, 0.15) 0%, transparent 50%);
}

.hero-enhanced .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content-enhanced {
  color: white;
  animation: heroFadeIn 1s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.hero-title-enhanced {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}

.hero-title-accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--sunset-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-description-enhanced {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 600px;
  letter-spacing: 0.5px;
}

.hero-description-enhanced strong {
  color: var(--sunset-amber);
  font-weight: 600;
}

.hero-buttons-enhanced {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-button-enhanced {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.cta-button-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button-enhanced:hover::before {
  left: 100%;
}

.cta-button-enhanced.primary {
  background: #e8724a;
  color: white;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(232, 114, 74, 0.4);
}

.cta-button-enhanced.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 114, 74, 0.5);
}

.cta-button-enhanced.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button-enhanced.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-features-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  opacity: 0.9;
}

.hero-feature-item svg {
  color: var(--sunset-amber);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  animation: heroVisualFadeIn 1s ease-out 0.3s both;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

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

.hero-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.hero-card-1 {
  top: 0;
  left: 0;
  right: 20%;
  animation: cardFloat1 3s ease-in-out infinite;
}

.hero-card-2 {
  top: 35%;
  right: 0;
  left: 20%;
  animation: cardFloat2 3s ease-in-out infinite 0.5s;
}

.hero-card-3 {
  bottom: 0;
  left: 10%;
  right: 10%;
  animation: cardFloat3 3s ease-in-out infinite 1s;
}

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

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

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

.hero-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.hero-card .card-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.hero-card .card-date,
.hero-card .card-status {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

/* Phone Mockup */
.hero-phone-mockup {
  position: relative;
  width: 100%;
  max-width: 380px;
  animation: phoneFadeIn 1s ease-out 0.5s both;
}

@keyframes phoneFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.phone-frame {
  background: linear-gradient(135deg, #1a3a2a 0%, #0f2a1e 100%);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-screen {
  background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
  min-height: 640px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-screen-img {
  min-height: auto;
  background: none;
}

.phone-screen-img img {
  width: 100%;
  height: auto;
  display: block;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}

.status-left {
  display: flex;
  align-items: center;
}

.status-time {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.3px;
}

.status-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-icon-cellular,
.status-icon-wifi,
.status-icon-battery {
  width: 18px;
  height: 12px;
  background: #000;
  border-radius: 2px;
  opacity: 0.8;
}

.status-icon-wifi {
  width: 16px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.status-icon-battery {
  width: 24px;
  border: 2px solid #000;
  background: transparent;
  position: relative;
}

.status-icon-battery::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 60%;
  background: #000;
  border-radius: 1px;
}

.status-icon-battery::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 6px;
  background: #000;
  border-radius: 0 1px 1px 0;
}

.notification-demo {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 16px;
  margin: 12px 16px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
              0 2px 8px rgba(0, 0, 0, 0.1);
  animation: notificationSlideIn 0.8s ease-out 1s both;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes notificationSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notification-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.notification-app-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(26, 58, 42, 0.3);
}

.notification-app-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-app-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.2px;
}

.notification-time {
  font-size: 13px;
  color: var(--charcoal-light);
  font-weight: 400;
}

.notification-content {
  padding-left: 42px;
}

.notification-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.notification-message {
  font-size: 14px;
  color: var(--charcoal-light);
  line-height: 1.45;
  letter-spacing: -0.1px;
}

.phone-app-content {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  animation: appContentFadeIn 0.6s ease-out 1.3s both;
}

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

/* --- Greeting --- */
.app-greeting {
  margin-bottom: 12px;
}

.app-greeting-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.3px;
}

.app-greeting-date {
  font-size: 12px;
  color: var(--charcoal-light);
  margin-top: 2px;
}

/* --- Motivation --- */
.app-motivation {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #faf8f4;
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--charcoal);
  font-weight: 500;
  animation: cardSlideUp 0.6s ease-out 1.5s both;
}

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

/* --- Stats Grid --- */
.app-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
  animation: cardsGridFadeIn 0.6s ease-out 1.6s both;
}

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

.app-stat-item {
  background: white;
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.app-stat-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  background: rgba(26, 58, 42, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-stat-icon-warn {
  background: rgba(255, 152, 0, 0.1);
}

.app-stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.app-stat-unit {
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal-light);
}

.app-stat-label {
  font-size: 10px;
  color: var(--charcoal-light);
  font-weight: 500;
  letter-spacing: -0.1px;
}

/* --- Season Bar --- */
.app-season-bar {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 12px 8px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  animation: cardsGridFadeIn 0.6s ease-out 1.8s both;
}

.app-season-item {
  flex: 1;
  text-align: center;
}

.app-season-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.app-season-label {
  font-size: 9px;
  color: var(--charcoal-light);
  margin-top: 4px;
  font-weight: 500;
}

.app-season-divider {
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

/* --- Renewal Bar --- */
.app-renewal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-light) 100%);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 4px 16px rgba(26, 58, 42, 0.2);
  animation: cardsGridFadeIn 0.6s ease-out 2s both;
}

.app-renewal-info {
  flex: 1;
}

.app-renewal-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 3px;
}

.app-renewal-dates {
  font-size: 13px;
  color: white;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.app-renewal-badge {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 11px;
  color: white;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

/* Notification Importance Section */
.notification-importance {
  background: linear-gradient(135deg, #fdf0e8 0%, #fce4d6 100%);
  border: 2px solid var(--sunset-orange);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  grid-column: 1 / -1;
  animation: importancePulse 2s ease-in-out infinite;
}

@keyframes importancePulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(232, 114, 74, 0.2);
  }
  50% {
    box-shadow: 0 8px 24px rgba(232, 114, 74, 0.4);
  }
}

.importance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sunset-orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(232, 114, 74, 0.3);
}

.importance-voices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.voice-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.voice-text {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.importance-text {
  color: #6a6a6a;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* ============================================
   CURRENT STATUS - ENHANCED
   ============================================ */

.current-status-enhanced {
  padding: 4rem 0;
  background: var(--cream);
  position: relative;
}

.status-card-enhanced {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  animation: statusFadeIn 0.8s ease-out;
}

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

.status-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 114, 74, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.status-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  align-items: center;
}

.status-icon-enhanced {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.icon-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.icon-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--forest-light);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

.status-info-enhanced {
  text-align: center;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-label {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.status-date-enhanced {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.date-separator {
  color: var(--sunset-orange);
  margin: 0 0.5rem;
}

.status-badge-enhanced {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}

.status-badge-enhanced.status-pending {
  background: linear-gradient(135deg, rgba(26, 58, 42, 0.06) 0%, rgba(26, 58, 42, 0.12) 100%);
  color: #1a3a2a;
}

.status-badge-enhanced.status-active {
  background: linear-gradient(135deg, rgba(26, 58, 42, 0.1) 0%, rgba(26, 58, 42, 0.15) 100%);
  color: #1a3a2a;
}

.status-badge-enhanced.status-submitted {
  background: linear-gradient(135deg, rgba(232, 114, 74, 0.06) 0%, rgba(232, 114, 74, 0.12) 100%);
  color: #e8724a;
}

.status-badge-enhanced.status-completed {
  background: linear-gradient(135deg, rgba(200, 164, 78, 0.06) 0%, rgba(200, 164, 78, 0.12) 100%);
  color: #1a3a2a;
}

.countdown-enhanced {
  display: flex;
  justify-content: center;
}

.countdown-circle {
  position: relative;
  width: 140px;
  height: 140px;
}

.countdown-ring {
  transform: rotate(-90deg);
}

.countdown-ring-background {
  fill: none;
  stroke: var(--cream-dark);
  stroke-width: 8;
}

.countdown-ring-progress {
  fill: none;
  stroke: url(#countdownGradient);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dasharray 0.5s ease;
}

.countdown-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.countdown-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sunset-orange);
  line-height: 1;
}

.countdown-label-text {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--charcoal-light);
  letter-spacing: 0.02em;
  margin-bottom: 0.1rem;
}

.countdown-unit {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin-top: 0.1rem;
}

/* Drag hint text */
.timeline-drag-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--charcoal-light);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.status-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 2rem 1.5rem 2.5rem;
  background: var(--cream);
  border-radius: 16px;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.status-timeline.timeline-dragging {
  cursor: grabbing;
}

.status-timeline::before {
  content: '';
  position: absolute;
  top: calc(2rem + 10px);
  left: calc(12.5%);
  right: calc(12.5%);
  height: 3px;
  background: #e0e0e0;
  border-radius: 2px;
}

/* Progress overlay on the timeline line */
.status-timeline::after {
  content: '';
  position: absolute;
  top: calc(2rem + 10px);
  left: calc(12.5%);
  width: calc(var(--progress-percent, 0%) * 0.75);
  height: 3px;
  background: linear-gradient(to right, var(--forest-light), var(--sunset-orange));
  border-radius: 2px;
  transition: width 0.05s linear;
}

.status-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.status-marker-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #c0c0c0;
  border: 3px solid white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.status-marker.past .status-marker-dot {
  background: var(--forest-light);
  box-shadow: 0 0 0 4px rgba(26, 58, 42, 0.2);
}

.status-marker.current .status-marker-dot {
  background: var(--sunset-orange);
  box-shadow: 0 0 0 4px rgba(232, 114, 74, 0.2);
  animation: statusMarkerPulse 2s ease-in-out infinite;
}

@keyframes statusMarkerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.status-marker.future .status-marker-dot {
  background: #c0c0c0;
}

.status-marker-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  white-space: nowrap;
}

.status-marker-date {
  font-size: 0.7rem;
  color: var(--charcoal-light);
  white-space: nowrap;
  font-weight: 500;
}

/* ---- Draggable current-position marker ---- */
.draggable-marker {
  position: absolute;
  top: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  cursor: grab;
  touch-action: none;
}

.draggable-marker.dragging {
  cursor: grabbing;
}

.draggable-marker-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8724a, #e8724a);
  border: 3px solid white;
  box-shadow: 0 0 0 4px rgba(232, 114, 74, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.draggable-marker:hover .draggable-marker-dot {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(232, 114, 74, 0.3), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.draggable-marker.dragging .draggable-marker-dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 8px rgba(232, 114, 74, 0.35), 0 6px 16px rgba(0, 0, 0, 0.3);
}

.draggable-marker-tooltip {
  position: absolute;
  bottom: calc(100% + 4px);
  background: linear-gradient(135deg, #e8724a, #e8724a);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.draggable-marker-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #e8724a;
}

.draggable-marker:hover .draggable-marker-tooltip,
.draggable-marker.dragging .draggable-marker-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.draggable-marker-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #e8724a;
  margin-top: 0.25rem;
  white-space: nowrap;
}

/* ============================================
   FEATURES - ENHANCED
   ============================================ */

.features-enhanced {
  padding: 7rem 0;
  background-color: #faf8f4;
  text-align: center;
  overflow: hidden;
}

.features-enhanced .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.section-header-enhanced {
  text-align: center;
  margin-bottom: 3rem;
  animation: sectionFadeIn 0.8s ease-out;
}

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

.section-label-en {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8a44e;
  margin-bottom: 0.75rem;
}

.section-title-enhanced {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.section-subtitle-enhanced {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--charcoal-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.features-grid-enhanced {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.feature-card-enhanced {
  background: white;
  border: 2px solid var(--cream-dark);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: featureCardFadeIn 0.8s ease-out both;
  animation-delay: var(--animation-delay);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  text-align: left;
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
}

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

.feature-card-enhanced:hover {
  transform: translateY(-8px);
  border-color: var(--feature-color);
  box-shadow: var(--shadow-lg);
}

.feature-card-enhanced:hover .feature-icon-background {
  transform: scale(1.1);
  opacity: 0.15;
}

.feature-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.feature-icon-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--feature-color);
  opacity: 0.1;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.feature-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--feature-color);
}

.feature-content {
  position: relative;
  z-index: 1;
  flex: 1;
}

.feature-title {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.feature-description {
  color: var(--charcoal-light);
  line-height: 1.8;
  font-size: 1.05rem;
  word-break: keep-all;
  overflow-wrap: break-word;
  letter-spacing: 0.5px;
}

.feature-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  overflow: hidden;
}

.decoration-line {
  height: 100%;
  background: var(--feature-color);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.feature-card-enhanced:hover .decoration-line {
  transform: translateX(0);
}

/* ============================================
   HOW TO USE - ENHANCED
   ============================================ */

.how-to-use-enhanced {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.step-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.step-card-enhanced {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  animation: stepCardFadeIn 0.8s ease-out both;
  animation-delay: var(--step-delay);
}

@keyframes stepCardFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.step-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--step-gradient);
}

.step-card-enhanced:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.step-number-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--step-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.step-icon-enhanced {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  position: relative;
}

.step-icon-enhanced::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: var(--step-gradient);
  opacity: 0.1;
  border-radius: 50%;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.1); opacity: 0.15; }
}

.step-label-enhanced {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--step-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.step-title-enhanced {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-description-enhanced {
  color: var(--charcoal-light);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1;
  word-break: keep-all;
}

.step-decoration {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--step-gradient);
  opacity: 0.3;
}

.step-connector {
  color: var(--charcoal-light);
  opacity: 0.4;
  animation: connectorFadeIn 0.8s ease-out 0.4s both;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
}

@keyframes connectorFadeIn {
  from { opacity: 0; }
  to { opacity: 0.4; }
}

.how-to-cta {
  text-align: center;
  margin-top: 3rem;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  font-style: italic;
}

/* ============================================
   PRICING - ENHANCED
   ============================================ */

.pricing-enhanced {
  padding: 7rem 0;
  background-color: #faf8f4;
  text-align: center;
  overflow-x: hidden;
}

.pricing-enhanced .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.pricing-card {
  background: white;
  border: 2px solid var(--cream-dark);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: featureCardFadeIn 0.8s ease-out both;
  animation-delay: var(--animation-delay);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  max-width: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--pricing-color);
  box-shadow: var(--shadow-lg);
}

.pricing-card-highlighted {
  border-color: var(--pricing-color);
  box-shadow: 0 4px 20px rgba(232, 114, 74, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #e8724a;
  color: white;
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-icon-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
}

.pricing-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--pricing-color);
  opacity: 0.1;
  border-radius: 50%;
}

.pricing-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--pricing-color);
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.pricing-plan-description {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.pricing-price-area {
  padding: 1.5rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 1.5rem;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing-annual {
  margin-bottom: 0.25rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--charcoal);
}

.pricing-period {
  font-size: 1rem;
  color: var(--charcoal-light);
}

.pricing-monthly {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

.pricing-saving {
  color: #e8724a;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.pricing-discount {
  padding: 1rem 0;
}

.pricing-discount-badge {
  display: inline-block;
  background: #1a3a2a;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-contact {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  padding: 0.5rem 0;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  flex: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.pricing-feature-item svg {
  color: var(--pricing-color);
  flex-shrink: 0;
}

/* ============================================
   CTA SECTION - ENHANCED
   ============================================ */

.cta-section-enhanced {
  padding: 7rem 0;
  background: #1a3a2a;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.cta-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255,255,255,.02) 50px, rgba(255,255,255,.02) 100px);
  opacity: 0.5;
}

.cta-content-enhanced {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: ctaFadeIn 0.8s ease-out;
}

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

.cta-section-enhanced .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(232, 114, 74, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 114, 74, 0.3);
  color: var(--sunset-amber);
  margin-bottom: 1.5rem;
}

.cta-title-enhanced {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.cta-title-highlight {
  background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--sunset-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description-enhanced {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.mobile-break {
  display: none;
}

.cta-features-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.cta-feature svg {
  color: var(--sunset-amber);
}

.cta-buttons-enhanced {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button-large:hover::before {
  left: 100%;
}

.cta-button-large.primary {
  background: #e8724a;
  color: white;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(232, 114, 74, 0.4);
}

.cta-button-large.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 114, 74, 0.5);
}

.cta-button-large.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button-large.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 114, 74, 0.15) 0%, transparent 70%);
}

.decoration-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.decoration-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
  animation: float2 10s ease-in-out infinite;
}

.decoration-circle-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

/* ============================================
   PAIN SECTION
   ============================================ */

.pain-section {
  padding: 7rem 0;
  background-color: #ffffff;
  text-align: center;
}

.pain-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  width: 100%;
}

.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.pain-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: white;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: box-shadow 0.3s ease;
  animation: featureCardFadeIn 0.8s ease-out both;
}

.pain-card:hover {
  box-shadow: var(--shadow-md);
}

.pain-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26, 58, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-card-text {
  font-size: 1.05rem;
  color: #2b2b2b;
  line-height: 1.7;
  margin: 0;
}

.pain-lead-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.pain-lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--forest-deep);
  letter-spacing: 0.05em;
}

.sp-br {
  display: none;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */

.comparison-section {
  padding: 7rem 0;
  background-color: #ffffff;
  text-align: center;
}

.comparison-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  width: 100%;
}

.comparison-table {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: white;
}

.comparison-header-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.2fr;
  background: var(--forest-deep);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
}

.comparison-header-row > * {
  padding: 20px 24px;
  text-align: left;
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.2fr;
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.2s ease;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:hover {
  background: var(--cream);
}

.comparison-item-label {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.comparison-traditional {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--charcoal-light);
  font-size: 0.9rem;
  text-align: left;
}

.comparison-hk {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest-deep);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
  padding: 7rem 0;
  background: white;
  text-align: center;
}

.testimonials-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  background: white;
  border: 2px solid var(--cream-dark);
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
  animation: featureCardFadeIn 0.8s ease-out both;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--forest-light);
  box-shadow: var(--shadow-md);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.testimonial-attribute {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}

.testimonial-comment {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--cream-dark);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
}

.testimonials-note {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin-top: 1rem;
}

/* ============================================
   FUNCTION SHOWCASE
   ============================================ */

.function-showcase {
  padding: 7rem 0;
  background-color: #faf8f4;
  overflow: hidden;
}

.function-showcase-header {
  text-align: center;
  margin-bottom: 4rem;
}

.function-showcase-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest-deep);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.function-showcase-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.function-showcase-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--charcoal-light);
  line-height: 1.6;
}

.function-showcase .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  width: 100%;
}

.function-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset-amber);
  margin-bottom: 0.5rem;
}

.function-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.function-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.function-phone {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.function-phone-frame {
  width: 260px;
  background: linear-gradient(135deg, #1a3a2a 0%, #0f2a1e 100%);
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
              0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.function-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.function-phone-screen {
  background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.function-phone-screen-img {
  min-height: auto;
  background: none;
}

.function-phone-screen-img img {
  width: 100%;
  height: auto;
  display: block;
}

.function-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
}

.function-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.function-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sunset-orange);
  margin-bottom: 0.75rem;
}

.function-description {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.function-bubbles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

.function-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(26, 86, 50, 0.08);
  border: 1px solid rgba(26, 86, 50, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest-deep);
  white-space: nowrap;
}

.function-bubble--accent {
  background: rgba(232, 114, 74, 0.08);
  border-color: var(--sunset-orange);
  color: var(--sunset-orange);
}

/* --- Phone Screen Content Styles --- */

.fn-screen-header {
  background: var(--forest-deep);
  color: white;
  padding: 2.5rem 1rem 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

.fn-permit-card {
  margin: 1rem;
  background: white;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.fn-permit-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.fn-permit-days {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a3a2a;
  margin-bottom: 0.75rem;
}

.fn-permit-dates {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.fn-permit-notification {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--forest-deep);
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Map screen */
.fn-map-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.fn-map-bg {
  flex: 1;
  min-height: 320px;
  background: linear-gradient(145deg, rgba(26, 58, 42, 0.15) 0%, rgba(26, 58, 42, 0.2) 30%, rgba(26, 58, 42, 0.08) 60%, rgba(26, 58, 42, 0.1) 100%);
  position: relative;
}

.fn-map-pin {
  position: absolute;
}

.fn-map-pin-1 {
  top: 30%;
  left: 35%;
}

.fn-map-pin-2 {
  top: 50%;
  left: 60%;
}

.fn-map-pin-3 {
  top: 65%;
  left: 40%;
}

.fn-map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 16px 16px 0 0;
}

.fn-map-overlay-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.fn-map-locations {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--charcoal-light);
}

/* Report screen */
.fn-report-card {
  margin: 1rem;
  background: white;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fn-report-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
}

.fn-report-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a3a2a;
  background: rgba(26, 58, 42, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.fn-report-list {
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fn-report-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--charcoal);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.fn-report-button {
  margin: 1rem;
  background: var(--forest-deep);
  color: white;
  padding: 0.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* --- Small Phone (max-width: 479px) --- */
@media (max-width: 479px) {
  /* Hero */
  .hero-enhanced {
    padding: 3.5rem 0;
    min-height: auto;
    overflow: hidden;
  }

  .hero-enhanced .container {
    gap: 2rem;
    padding: 0 1rem;
    box-sizing: border-box;
    overflow: hidden;
  }

  .hero-content-enhanced {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-title-enhanced {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    letter-spacing: 0.02em;
    word-break: keep-all;
  }

  .hero-phone-mockup {
    max-width: 100%;
  }

  .hero-description-enhanced {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-features-list {
    gap: 0.5rem;
  }

  .hero-buttons-enhanced {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button-enhanced {
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }

  /* CurrentStatus */
  .status-card-enhanced {
    padding: 1.5rem;
  }

  .status-marker-label {
    font-size: 0.65rem;
  }

  .status-marker-date {
    font-size: 0.6rem;
  }

  /* Features */
  .features-enhanced {
    padding: 3.5rem 0;
    overflow: hidden;
  }

  .features-enhanced .container {
    padding: 0 1rem;
  }

  .feature-card-enhanced {
    padding: 1.5rem;
    min-height: auto;
    box-sizing: border-box;
    max-width: 100%;
  }

  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .features-grid-enhanced {
    gap: 1.25rem;
    overflow: hidden;
    width: 100%;
  }

  /* HowToUse */
  .how-to-use-enhanced {
    padding: 3.5rem 0;
    overflow: hidden;
  }

  .step-card-enhanced {
    padding: 1.25rem 1rem;
  }

  .step-icon-enhanced {
    width: 56px;
    height: 56px;
  }

  .steps-container {
    gap: 1rem;
  }

  /* Pricing */
  .pricing-enhanced {
    padding: 3.5rem 0;
    overflow: hidden;
  }

  .pricing-enhanced .container {
    padding: 0 1rem;
  }

  .pricing-card {
    padding: 1.25rem 1rem;
  }

  .pricing-icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .pricing-feature-item {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .pricing-grid {
    gap: 1.25rem;
  }

  /* CTA */
  .cta-section-enhanced {
    padding: 3.5rem 0;
  }

  .cta-buttons-enhanced {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button-large {
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    min-height: 48px;
  }

  .cta-features-list {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  /* Decoration circles */
  .decoration-circle-1 {
    width: 200px;
    height: 200px;
  }

  .decoration-circle-2 {
    width: 150px;
    height: 150px;
  }

  .decoration-circle-3 {
    width: 100px;
    height: 100px;
  }

  /* Pain */
  .pain-section { padding: 3.5rem 0; }
  .pain-section .container { padding: 0 1rem; }
  .pain-card { padding: 1rem; gap: 1rem; }
  .pain-icon-wrapper { width: 44px; height: 44px; }

  /* Comparison */
  .comparison-section { padding: 3.5rem 0; }
  .comparison-section .container { padding: 0 1rem; }
  .comparison-header-row { font-size: 0.8rem; }
  .comparison-header-row > div { padding: 0.75rem 0.5rem; }
  .comparison-row { font-size: 0.8rem; }
  .comparison-item-label,
  .comparison-traditional,
  .comparison-hk { padding: 0.75rem 0.5rem; font-size: 0.8rem; }

  /* Testimonials */
  .testimonials-section { padding: 3.5rem 0; }
  .testimonials-section .container { padding: 0 1rem; }
  .testimonial-card { padding: 1.25rem; }

  /* Function Showcase */
  .function-showcase { padding: 3.5rem 0; }
  .function-showcase .container { padding: 0 1rem; }
  .function-phone-frame { width: 220px; }
  .function-phone-screen { min-height: 380px; }
  .function-phone-screen-img { min-height: auto; }
}

/* --- Mobile (max-width: 767px) --- */
@media (max-width: 767px) {
  .sp-br {
    display: block;
  }

  /* Hero */
  .hero-enhanced {
    padding: 4rem 0;
  }

  .hero-visual {
    display: none !important;
  }

  .phone-screen {
    min-height: 480px;
  }

  .phone-screen-img {
    min-height: auto;
  }

  /* CurrentStatus */
  .status-card-enhanced {
    padding: 2rem;
  }

  .status-marker-label {
    font-size: 0.7rem;
  }

  .status-marker-date {
    font-size: 0.65rem;
  }

  /* Vertical timeline for mobile */
  /* dot is 20px wide, center at 10px. We use padding-left to hold space for the dot+line area.
     Line center = padding-left(1.5rem) + dot-center(10px) = calc(1.5rem + 10px) */
  .status-timeline.timeline-vertical {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    min-height: 280px;
    position: relative;
    gap: 0;
  }

  /* Vertical line — aligned to dot center */
  .status-timeline.timeline-vertical::before {
    top: 0;
    bottom: 0;
    left: calc(1.5rem + 10px);
    right: auto;
    width: 3px;
    height: auto;
    transform: translateX(-50%);
  }

  /* Vertical progress — aligned to dot center */
  .status-timeline.timeline-vertical::after {
    top: 0;
    left: calc(1.5rem + 10px);
    width: 3px;
    height: calc(var(--progress-percent, 0%) * 1);
    right: auto;
    transform: translateX(-50%);
    transition: height 0.05s linear;
  }

  .status-timeline.timeline-vertical .status-marker {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    padding: 0.5rem 0;
  }

  .status-timeline.timeline-vertical .status-marker-dot {
    flex-shrink: 0;
  }

  .status-timeline.timeline-vertical .status-marker-label {
    white-space: normal;
    text-align: left;
  }

  .status-timeline.timeline-vertical .status-marker-date {
    white-space: normal;
    text-align: left;
  }

  /* Draggable marker: vertical mode — dot center aligned to line */
  .status-timeline.timeline-vertical .draggable-marker {
    left: calc(1.5rem + 10px);
    top: 0;
    transform: translate(-50%, -50%);
    flex-direction: row;
    align-items: center;
  }

  .status-timeline.timeline-vertical .draggable-marker-tooltip {
    bottom: auto;
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
  }

  .status-timeline.timeline-vertical .draggable-marker-tooltip::after {
    top: 50%;
    left: -8px;
    right: auto;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-right-color: #e8724a;
    border-top-color: transparent;
  }

  .status-timeline.timeline-vertical .draggable-marker:hover .draggable-marker-tooltip,
  .status-timeline.timeline-vertical .draggable-marker.dragging .draggable-marker-tooltip {
    opacity: 1;
    transform: translateY(-50%);
  }

  .status-timeline.timeline-vertical .draggable-marker-label {
    margin-top: 0;
    margin-left: 0.5rem;
  }

  /* HowToUse - step connector vertical */
  .step-connector {
    transform: rotate(90deg);
  }

  /* CTA */
  .cta-button-large {
    padding: 1rem 2rem;
  }

  /* Sections padding */
  .hero-enhanced {
    padding: 4.5rem 0;
  }

  .function-showcase {
    padding: 4.5rem 0;
  }

  .pain-section {
    padding: 4.5rem 0;
  }

  .features-enhanced {
    padding: 4.5rem 0;
  }

  .comparison-section {
    padding: 4.5rem 0;
  }

  .pricing-enhanced {
    padding: 4.5rem 0;
  }

  .cta-section-enhanced {
    padding: 4.5rem 0;
  }

  .testimonials-section {
    padding: 4.5rem 0;
  }

  .how-to-use-enhanced {
    padding: 4.5rem 0;
  }

  .section-header-enhanced {
    margin-bottom: 2.5rem;
  }

  /* Features & Pricing overflow fix */
  .features-enhanced .container,
  .pricing-enhanced .container {
    padding: 0 1rem;
    box-sizing: border-box;
    overflow: hidden;
  }

  .feature-card-enhanced {
    padding: 1.5rem;
    min-height: auto;
    box-sizing: border-box;
    width: 100%;
  }

  .pricing-card {
    padding: 1.5rem 1.25rem;
    box-sizing: border-box;
  }

  .features-grid-enhanced,
  .pricing-grid {
    gap: 1.5rem;
  }

  /* Pain */
  .pain-section { padding: 4.5rem 0; }

  /* Comparison */
  .comparison-section { padding: 4.5rem 0; }
  .comparison-header-row { grid-template-columns: 1fr 1fr 1fr; font-size: 0.85rem; }

  /* Testimonials */
  .testimonials-section { padding: 4.5rem 0; }

  /* Function Showcase */
  .function-showcase { padding: 4.5rem 0; }
  .function-phone-frame { width: 240px; }
  .function-phone-screen { min-height: 400px; }
  .function-phone-screen-img { min-height: auto; }
}

@media (min-width: 768px) {
  .hero-enhanced .container {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content-enhanced {
    text-align: left;
  }

  .hero-buttons-enhanced {
    justify-content: flex-start;
  }

  .hero-features-list {
    justify-content: flex-start;
  }

  .status-content-grid {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;
  }

  .status-info-enhanced {
    text-align: left;
    min-height: auto;
  }

  .status-marker-label {
    font-size: 0.8rem;
  }

  .status-marker-date {
    font-size: 0.75rem;
  }

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

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }

  .steps-container {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
  }

  .step-wrapper {
    flex: 1;
    max-width: 350px;
    position: relative;
  }

  .step-connector {
    position: absolute;
    right: -2.2rem;
    top: 50%;
    transform: translateX(50%) translateY(-50%);
    z-index: 2;
  }

  .mobile-break {
    display: inline;
  }

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

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

@media (min-width: 1024px) {
  .features-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }

  .hero-enhanced {
    padding: 10rem 0;
  }
}

/* ============================================
   CAMPAIGN SECTION
   ============================================ */

.campaign-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3f 50%, #1a3a2a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.campaign-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232, 114, 74, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(232, 114, 74, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.campaign-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 114, 74, 0.25);
  border: 1px solid rgba(232, 114, 74, 0.4);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.campaign-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
}

.campaign-highlight {
  color: #e8724a;
  font-size: 1.2em;
}

.campaign-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0;
}

.campaign-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.campaign-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.campaign-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 767px) {
  .campaign-section {
    padding: 3.5rem 0;
  }

  .campaign-title {
    font-size: 1.5rem;
  }

  .campaign-description {
    font-size: 0.95rem;
  }

  .campaign-description br {
    display: none;
  }
}

/* ============================================
   UTILITIES & ANIMATIONS
   ============================================ */

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