/* Pranabhoomi — Landing page (attractive public marketing) */

.landing-page {
  --primary: #C0392B;
  --primary-dark: #962d22;
  --secondary: #1B4332;
  --secondary-dark: #0d2818;
  --secondary-himali: #2d6a4f;
  --dark: #1e293b;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --bg-pure-white: #ffffff;
  --bg-warm-rose: #fff5f5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  min-height: 100vh;
  font-family: var(--font-body, 'DM Sans', sans-serif);
}

/* Hero — nav via theme.css .site-nav */
.landing-page .landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.landing-page .landing-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Nav container — horizontal layout */
.landing-page .landing-nav .nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Nav logo */
.landing-page .landing-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-display, 'Sora', sans-serif);
  font-weight: 800;
  font-size: 1.35rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.landing-page .landing-nav .nav-logo:hover {
  transform: scale(1.03);
}

.landing-page .landing-nav .nav-logo-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-page .admin-header .nav-logo-text {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}


/* Nav menu — horizontal on desktop */
.landing-page .landing-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-page .landing-nav .nav-menu a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  transition: all 0.25s ease;
  position: relative;
}

.landing-page .landing-nav .nav-menu a:hover,
.landing-page .landing-nav .nav-menu a.active {
  color: var(--primary);
  background: rgba(192, 57, 43, 0.08);
}

/* Register button in nav */
.landing-page .landing-nav .nav-register {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: white !important;
  padding: 0.6rem 1.35rem !important;
  border-radius: 2rem !important;
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.35);
}

.landing-page .landing-nav .nav-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(150, 45, 34, 0.4);
  background: linear-gradient(135deg, var(--primary-dark) 0%, #7a2218 100%) !important;
}

/* Hide hamburger on desktop */
.landing-page .landing-nav .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--secondary);
  padding: 0.35rem;
  line-height: 1;
}

.landing-page .hero {
  padding: 7rem 2rem 5rem;
  background: linear-gradient(
    145deg,
    #d63031 0%,
    var(--primary) 18%,
    var(--primary-dark) 38%,
    #1a4d3e 68%,
    var(--secondary-himali) 100%
  );
  margin-top: var(--nav-h, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-page .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.6;
  z-index: 0;
  animation: landingBackgroundShift 15s ease-in-out infinite;
}

.landing-page .hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.18) 0%, transparent 70%);
  animation: landingRotate 30s linear infinite;
  z-index: 0;
}

.landing-page .hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.landing-page .particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: landingFloat 20s infinite ease-in-out;
}

.landing-page .particle-1 { width: 80px; height: 80px; top: 20%; left: 10%; animation-duration: 25s; }
.landing-page .particle-2 { width: 60px; height: 60px; top: 60%; left: 20%; animation-delay: 2s; animation-duration: 20s; }
.landing-page .particle-3 { width: 100px; height: 100px; top: 40%; right: 15%; animation-delay: 4s; animation-duration: 30s; }
.landing-page .particle-4 { width: 50px; height: 50px; top: 80%; right: 25%; animation-delay: 1s; animation-duration: 22s; }
.landing-page .particle-5 { width: 70px; height: 70px; top: 10%; right: 10%; animation-delay: 3s; animation-duration: 28s; }
.landing-page .particle-6 { width: 90px; height: 90px; bottom: 20%; left: 15%; animation-delay: 5s; animation-duration: 24s; }
.landing-page .particle-7 { width: 55px; height: 55px; top: 30%; left: 50%; animation-delay: 2.5s; animation-duration: 26s; }
.landing-page .particle-8 { width: 65px; height: 65px; bottom: 30%; right: 40%; animation-delay: 1.5s; animation-duration: 23s; }

.landing-page .floating-drops {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.landing-page .drop {
  position: absolute;
  width: 22px;
  height: 30px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 120, 100, 0.5) 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  animation: landingFloatDrop 15s infinite ease-in-out;
}

.landing-page .drop::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 28%;
  width: 30%;
  height: 25%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.landing-page .drop-1 { top: 15%; left: 5%; animation-duration: 18s; }
.landing-page .drop-2 { top: 50%; left: 8%; animation-delay: 3s; animation-duration: 20s; }
.landing-page .drop-3 { top: 25%; right: 8%; animation-delay: 6s; animation-duration: 16s; }
.landing-page .drop-4 { bottom: 20%; right: 12%; animation-delay: 2s; animation-duration: 22s; }
.landing-page .drop-5 { top: 70%; left: 50%; animation-delay: 4s; animation-duration: 19s; }

.landing-page .hero .container,
.landing-page .hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.landing-page .hero-logo {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.landing-page .hero-blood-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  animation: landingPulse 2s infinite, landingFloatIcon 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.landing-page .hero-blood-icon svg {
  width: clamp(80px, 12vw, 120px);
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 30px rgba(192, 57, 43, 0.85));
  animation: landingGlow 3s ease-in-out infinite;
}

.landing-page .glow-effect {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  animation: landingPulseGlow 2s ease-in-out infinite;
  z-index: 1;
}

.landing-page .hero-motto {
  font-size: 2rem;
  font-weight: 800;
  color: #fcd34d;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin: 0;
  font-family: var(--font-display, 'Sora', sans-serif);
}

.landing-page .hero-motto.nepali-motto {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 2px;
  text-transform: none;
  color: #fcd34d;
  margin-bottom: 0.5rem;
  font-weight: 900;
}

.landing-page .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.2;
  font-family: var(--font-display, 'Sora', sans-serif);
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(192, 57, 43, 0.55);
}

.landing-page .hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.7;
}

.landing-page .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem auto;
  max-width: 800px;
}

.landing-page .hero-stats .stat-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.landing-page .hero-stats .stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.landing-page .hero-stats .stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.landing-page .hero-stats .stat-item h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
  font-family: var(--font-mono, monospace);
}

.landing-page .hero-stats .stat-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.landing-page .logged-in-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0 auto 1.25rem;
  max-width: 520px;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--secondary);
}

.landing-page .logged-in-banner .btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
}

.landing-page .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.landing-page .hero .btn {
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.landing-page .hero .btn-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.landing-page .hero .btn-primary:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.landing-page .hero .btn-secondary {
  background: #fcd34d;
  color: var(--secondary-dark);
  border-color: #fcd34d;
}

.landing-page .hero .btn-secondary:hover {
  background: #fbbf24;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.landing-page .hero .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.landing-page .hero .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Marquee on landing */
.landing-page .marquee-wrap {
  position: relative;
  z-index: 10;
}

/* Animations */
.landing-page .animate-slide-up { animation: landingSlideUpFade 1s ease-out both; }
.landing-page .animate-slide-up-delay { animation: landingSlideUpFade 1s ease-out 0.3s both; }
.landing-page .animate-fade-in { animation: landingFadeIn 1s ease-out both; }
.landing-page .animate-fade-in-delay { animation: landingFadeIn 1s ease-out 0.5s both; }
.landing-page .animate-stat-1 { animation: landingSlideUpFade 0.8s ease-out 0.6s both; }
.landing-page .animate-stat-2 { animation: landingSlideUpFade 0.8s ease-out 0.8s both; }
.landing-page .animate-stat-3 { animation: landingSlideUpFade 0.8s ease-out 1s both; }
.landing-page .animate-button-1 { animation: landingSlideUpFade 0.8s ease-out 1.2s both; }
.landing-page .animate-button-2 { animation: landingSlideUpFade 0.8s ease-out 1.4s both; }

@keyframes landingFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
  25% { transform: translate(30px, -50px) rotate(90deg); opacity: 0.6; }
  50% { transform: translate(-20px, -100px) rotate(180deg); opacity: 0.4; }
  75% { transform: translate(40px, -50px) rotate(270deg); opacity: 0.5; }
}

@keyframes landingFloatDrop {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.4; }
  25% { transform: translateY(-100px) translateX(50px) rotate(90deg); opacity: 0.6; }
  50% { transform: translateY(-200px) translateX(-30px) rotate(180deg); opacity: 0.3; }
  75% { transform: translateY(-100px) translateX(40px) rotate(270deg); opacity: 0.5; }
}

@keyframes landingBackgroundShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

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

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

@keyframes landingGlow {
  0%, 100% { filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 30px rgba(192, 57, 43, 0.85)); }
  50% { filter: drop-shadow(0 4px 30px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 50px rgba(231, 76, 60, 1)); }
}

@keyframes landingPulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

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

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

@keyframes landingShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes landingHeartbeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.1); }
  20%, 40% { transform: scale(1); }
}

/* Features */
.landing-page .features,
.landing-page .steps {
  padding: 5rem 2rem;
}

.landing-page .features {
  background: white;
}

.landing-page .features .container,
.landing-page .quick-links .container,
.landing-page .steps .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.landing-page .features .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  font-family: var(--font-display, 'Sora', sans-serif);
  position: relative;
  padding-bottom: 1rem;
}

.landing-page .features .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.landing-page .section-lead {
  text-align: center;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.landing-page .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.landing-page .feature-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 2rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.landing-page .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.landing-page .feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.3s ease;
}

.landing-page .feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.landing-page .feature-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
  font-family: var(--font-display, 'Sora', sans-serif);
}

.landing-page .feature-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Showcase */
.landing-page .showcase {
  padding: 5rem 2rem;
  background: var(--bg-warm-rose);
}

.landing-page .showcase .container {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-page .showcase .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  font-family: var(--font-display, 'Sora', sans-serif);
  position: relative;
  padding-bottom: 1rem;
}

.landing-page .showcase .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.landing-page .showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.landing-page .showcase-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.landing-page .showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.landing-page .showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(192, 57, 43, 0.15);
  border-color: rgba(192, 57, 43, 0.15);
}

.landing-page .showcase-card:hover::before {
  opacity: 1;
}

.landing-page .showcase-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.08), rgba(27, 67, 50, 0.08));
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.landing-page .showcase-card:hover .showcase-icon {
  transform: scale(1.1) rotate(5deg);
}

.landing-page .showcase-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-display, 'Sora', sans-serif);
}

.landing-page .showcase-body p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.landing-page .showcase-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.landing-page .showcase-link:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* Quick links */
.landing-page .quick-links {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.landing-page .quick-links::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(192, 57, 43, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(27, 67, 50, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.landing-page .quick-links .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-page .quick-links .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  font-family: var(--font-display, 'Sora', sans-serif);
  position: relative;
  padding-bottom: 1rem;
}

.landing-page .quick-links .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.landing-page .quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.landing-page .quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--dark);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.landing-page .quick-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(192, 57, 43, 0.12), transparent);
  transition: left 0.5s ease;
}

.landing-page .quick-link-card:hover::before {
  left: 100%;
}

.landing-page .quick-link-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(192, 57, 43, 0.25);
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--bg-pure-white) 0%, var(--bg-warm-rose) 100%);
}

.landing-page .quick-link-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.landing-page .quick-link-card:hover .quick-link-icon {
  transform: scale(1.15) rotate(5deg);
}

.landing-page .quick-link-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  text-align: center;
}

.landing-page .quick-link-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

.landing-page .quick-link-card:hover h3 {
  color: var(--primary-dark);
}

/* Impact / tokens flow */
.landing-page .impact {
  padding: 5rem 2rem;
  background: white;
}

.landing-page .impact .container {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-page .impact .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  font-family: var(--font-display, 'Sora', sans-serif);
  position: relative;
  padding-bottom: 1rem;
}

.landing-page .impact .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.landing-page .impact-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.landing-page .impact-step {
  text-align: center;
  max-width: 280px;
  flex: 1;
  min-width: 220px;
}

.landing-page .impact-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.landing-page .impact-circle.earn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.35);
}

.landing-page .impact-circle.spend {
  background: linear-gradient(135deg, #fcd34d, #fbbf24);
  box-shadow: 0 8px 24px rgba(252, 211, 77, 0.4);
}

.landing-page .impact-circle.tier {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-himali));
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.35);
}

.landing-page .impact-num {
  color: white;
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-mono, monospace);
}

.landing-page .impact-step:hover .impact-circle {
  transform: scale(1.1) translateY(-4px);
}

.landing-page .impact-step h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.landing-page .impact-step p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

.landing-page .impact-arrow {
  font-size: 2rem;
  color: var(--gray-300);
  padding-top: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.landing-page .tier-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.landing-page .tier-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.landing-page .tier-bronze {
  background: linear-gradient(135deg, #fef3e2, #fde8c8);
  border-color: #cd7f32;
}

.landing-page .tier-silver {
  background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  border-color: #c0c0c0;
}

.landing-page .tier-gold {
  background: linear-gradient(135deg, #fff9e6, #fff0b3);
  border-color: #fcd34d;
  box-shadow: 0 8px 32px rgba(252, 211, 77, 0.25);
}

.landing-page .tier-card:hover {
  transform: translateY(-6px);
}

.landing-page .tier-medal {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.landing-page .tier-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.landing-page .tier-req {
  font-family: var(--font-mono, monospace);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.landing-page .tier-card p:last-child {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Testimonials */
.landing-page .testimonials {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.landing-page .testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(192, 57, 43, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 60%, rgba(252, 211, 77, 0.08) 0%, transparent 50%);
}

.landing-page .testimonials .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.landing-page .testimonials .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  font-family: var(--font-display, 'Sora', sans-serif);
}

.landing-page .testimonials .section-lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.landing-page .testimonial-carousel {
  position: relative;
  min-height: 240px;
}

.landing-page .testimonial-slide {
  display: none;
  text-align: center;
  padding: 2rem;
  animation: landingFadeIn 0.5s ease;
}

.landing-page .testimonial-slide.active {
  display: block;
}

.landing-page .testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.landing-page .testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  font-family: Georgia, serif;
  opacity: 0.5;
}

.landing-page .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.landing-page .testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.landing-page .testimonial-author strong {
  display: block;
  color: white;
  font-size: 1.05rem;
}

.landing-page .testimonial-author span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.landing-page .carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.landing-page .carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.landing-page .carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.landing-page .carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.landing-page .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.landing-page .carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Dashboard preview */
.landing-page .dashboard-preview {
  padding: 5rem 2rem;
  background: var(--bg-warm-rose);
}

.landing-page .dashboard-preview .container {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-page .dashboard-preview .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  font-family: var(--font-display, 'Sora', sans-serif);
  position: relative;
  padding-bottom: 1rem;
}

.landing-page .dashboard-preview .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.landing-page .preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.landing-page .preview-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.landing-page .preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(192, 57, 43, 0.15);
  border-color: rgba(192, 57, 43, 0.15);
}

.landing-page .preview-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.3s ease;
}

.landing-page .preview-card:hover .preview-icon {
  transform: scale(1.15);
}

.landing-page .preview-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.landing-page .preview-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}

.landing-page .preview-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.landing-page .preview-cta .btn-secondary {
  background: #fcd34d;
  color: var(--secondary-dark);
  border-color: #fcd34d;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid #fcd34d;
}

.landing-page .preview-cta .btn-secondary:hover {
  background: #fbbf24;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(252, 211, 77, 0.4);
}

/* CTA */
.landing-page .cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 25%, #475569 50%, #64748b 75%, #334155 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Steps */
.landing-page .steps {
  padding: 5rem 2rem;
  background: var(--gray-100);
}

.landing-page .steps .container {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-page .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.landing-page .step-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.landing-page .step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.landing-page .step-card .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 8px rgba(192, 57, 43, 0.35);
  transition: all 0.3s ease;
}

.landing-page .step-card:hover .step-number {
  transform: scale(1.1) rotate(360deg);
}

.landing-page .step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-800);
  font-family: var(--font-display, 'Sora', sans-serif);
}

.landing-page .step-card p {
  color: var(--gray-600);
}

/* CTA */
.landing-page .cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 25%, #475569 50%, #64748b 75%, #334155 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.landing-page .cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(192, 57, 43, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(27, 67, 50, 0.15) 0%, transparent 50%);
  opacity: 1;
}

.landing-page .cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.1) 0%, transparent 70%);
  animation: landingRotate 20s linear infinite;
  z-index: 0;
}

.landing-page .cta-section .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.landing-page .cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 50%, #fcd34d 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: landingShimmer 3s ease-in-out infinite;
  font-family: var(--font-display, 'Sora', sans-serif);
}

.landing-page .cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
}

.landing-page .cta-section .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  font-size: 1.1rem;
  padding: 1.25rem 3rem;
  border-radius: 2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.4);
  transition: all 0.3s ease;
}

.landing-page .cta-section .btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(192, 57, 43, 0.6);
}

.landing-page .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.landing-page .btn-outline-cta {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  padding: 1.25rem 3rem;
  border-radius: 2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.landing-page .btn-outline-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-5px) scale(1.05);
}

/* Footer */
.landing-page .landing-footer {
  background-color: var(--dark);
  color: var(--gray-300);
  padding: 4rem 2rem 2rem;
}

.landing-page .landing-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-page .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.landing-page .footer-section h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.landing-page .footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 2px;
}

.landing-page .footer-section p {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.landing-page .footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landing-page .footer-section ul li {
  margin-bottom: 0.75rem;
}

.landing-page .footer-section ul li a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.landing-page .footer-section ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.landing-page .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.landing-page .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.landing-page .social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.landing-page .emergency-contacts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-300);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.landing-page .emergency-contacts .ec-icon {
  color: var(--primary);
}

.landing-page .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--gray-400);
}

.landing-page .footer-bottom .heart {
  color: var(--primary);
  animation: landingHeartbeat 1.5s ease-in-out infinite;
  display: inline-block;
}

.landing-page .section-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.landing-page .section-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .landing-page .showcase-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-page .tier-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 1100px) {
  .landing-page .landing-nav .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    z-index: 1002;
    flex-shrink: 0;
  }

  .landing-page .landing-nav .nav-menu {
    display: flex;
    position: fixed;
    top: var(--nav-h, 72px);
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s;
    max-height: calc(100vh - var(--nav-h, 72px));
    overflow-y: auto;
    z-index: 1001;
    pointer-events: none;
  }

  .landing-page .landing-nav .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.landing-nav-open {
    overflow: hidden;
  }

  .landing-page .nav-menu li {
    width: 100%;
  }

  .landing-page .nav-menu a {
    padding: 1rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .landing-page .nav-menu a::after {
    display: none;
  }

  .landing-page .nav-register {
    margin: 0.5rem 2rem;
    text-align: center;
  }

  .landing-page .hero {
    margin-top: 70px;
    padding: 6rem 1rem 4rem;
  }

  .landing-page .particle {
    display: none;
  }

  .landing-page .drop {
    font-size: 1.5rem;
  }

  .landing-page .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .landing-page .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .landing-page .features .section-title,
  .landing-page .showcase .section-title,
  .landing-page .quick-links .section-title,
  .landing-page .impact .section-title,
  .landing-page .testimonials .section-title,
  .landing-page .dashboard-preview .section-title {
    font-size: 2rem;
  }

  .landing-page .showcase-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .landing-page .impact-flow {
    flex-direction: column;
    align-items: center;
  }

  .landing-page .impact-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .landing-page .tier-showcase {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .landing-page .preview-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .landing-page .testimonial-quote::before {
    left: 0;
  }
}

@media (max-width: 480px) {
  .landing-page .nav-container {
    padding: 1rem 1.25rem;
  }

  .landing-page .nav-logo-text {
    font-size: 1.1rem;
  }

  .landing-page .particle,
  .landing-page .drop {
    display: none;
  }

  .landing-page .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page .particle,
  .landing-page .drop,
  .landing-page .hero::after,
  .landing-page .hero-blood-icon {
    animation: none !important;
  }
}

/* ===== SUB-PAGES (Features, How it Works, Community, Emergency, Legal) ===== */

/* Sub-page hero banner */
.landing-page .subpage-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(145deg, #d63031 0%, var(--primary) 25%, var(--primary-dark) 50%, #1a4d3e 80%, var(--secondary-himali) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.landing-page .subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.landing-page .subpage-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.landing-page .subpage-hero .subpage-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
  animation: landingPulse 2s infinite;
}

.landing-page .subpage-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  font-family: var(--font-display, 'Sora', sans-serif);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.landing-page .subpage-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Breadcrumb */
.landing-page .breadcrumb {
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--gray-100);
}

.landing-page .breadcrumb .container {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-page .breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.landing-page .breadcrumb a:hover {
  text-decoration: underline;
}

.landing-page .breadcrumb span {
  color: var(--gray-400);
  margin: 0 0.5rem;
  font-size: 0.9rem;
}

.landing-page .breadcrumb .current {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Sub-page content sections */
.landing-page .subpage-content {
  padding: 4rem 2rem;
  background: white;
}

.landing-page .subpage-content .container {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-page .subpage-content.alt-bg {
  background: var(--bg-warm-rose);
}

.landing-page .subpage-content.dark-bg {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
  color: white;
}

.landing-page .subpage-content.dark-bg .section-block h3,
.landing-page .subpage-content.dark-bg .section-block h2 {
  color: white;
}

.landing-page .subpage-content.dark-bg .section-block p {
  color: rgba(255,255,255,0.85);
}

/* Section blocks */
.landing-page .section-block {
  margin-bottom: 3rem;
}

.landing-page .section-block:last-child {
  margin-bottom: 0;
}

.landing-page .section-block h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-family: var(--font-display, 'Sora', sans-serif);
}

.landing-page .section-block h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-display, 'Sora', sans-serif);
}

.landing-page .section-block p {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.landing-page .section-block ul,
.landing-page .section-block ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.landing-page .section-block ul li,
.landing-page .section-block ol li {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  list-style: disc;
}

.landing-page .section-block ol li {
  list-style: decimal;
}

/* Info grid for sub-pages */
.landing-page .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.landing-page .info-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.landing-page .info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(192,57,43,0.12);
  border-color: rgba(192,57,43,0.15);
}

.landing-page .info-card .info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.landing-page .info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-display, 'Sora', sans-serif);
}

.landing-page .info-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Emergency contact cards */
.landing-page .emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.landing-page .emergency-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-left: 5px solid var(--primary);
  transition: all 0.3s ease;
}

.landing-page .emergency-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(192,57,43,0.15);
}

.landing-page .emergency-card .ec-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.landing-page .emergency-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.landing-page .emergency-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.landing-page .emergency-card .ec-number {
  font-family: var(--font-mono, monospace);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-top: 0.5rem;
}

/* Disclaimer banner */
.landing-page .disclaimer-banner {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid #f59e0b;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.landing-page .disclaimer-banner .disclaimer-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.landing-page .disclaimer-banner p {
  color: #92400e;
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
}

/* Legal content */
.landing-page .legal-content h2 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-100);
}

.landing-page .legal-content h2:first-child {
  margin-top: 0;
}

.landing-page .legal-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* Contact form */
.landing-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.landing-page .contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.landing-page .contact-form .form-group {
  margin-bottom: 1.5rem;
}

.landing-page .contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.landing-page .contact-form input,
.landing-page .contact-form textarea,
.landing-page .contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gray-100);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--gray-100);
}

.landing-page .contact-form input:focus,
.landing-page .contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

.landing-page .contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.landing-page .contact-form .btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}

.landing-page .contact-form .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.45);
}

.landing-page .contact-info-block {
  padding-top: 1rem;
}

.landing-page .contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.landing-page .contact-info-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(192,57,43,0.08), rgba(27,67,50,0.08));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-page .contact-info-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.landing-page .contact-info-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0;
}

/* Back to top / CTA link on sub-pages */
.landing-page .subpage-cta {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1e293b, #334155);
  text-align: center;
  color: white;
}

.landing-page .subpage-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: var(--font-display, 'Sora', sans-serif);
  color: white;
}

.landing-page .subpage-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

.landing-page .subpage-cta .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}

.landing-page .subpage-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.5);
}

.landing-page .subpage-cta .btn-outline-cta {
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.landing-page .subpage-cta .btn-outline-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* Sub-page responsive */
@media (max-width: 768px) {
  .landing-page .subpage-hero {
    padding: 7rem 1.5rem 3rem;
  }

  .landing-page .subpage-hero h1 {
    font-size: 1.75rem;
  }

  .landing-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .info-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .emergency-grid {
    grid-template-columns: 1fr;
  }
}
