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

    @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Outfit:wght@100..900&display=swap');

    body {
      box-sizing: border-box;
      font-family: -apple-system, BlinkMacSystemFont, 'DM Sans', 'Inter', 'SF Pro Display', system-ui, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      transition: all 0.3s ease;
    }

    /* Light Theme (Default) - 2030 Calm Intelligence */
    :root {
      --primary-color: #dc267f;
      --primary-gradient: linear-gradient(135deg, #ef4444 0%, #f472b6 100%);
      --dynamic-gradient: linear-gradient(135deg, #ef4444 0%, #f472b6 100%);
      --breathing-gradient: linear-gradient(135deg, #fef7f0 0%, #fdf2f8 20%, #f8fafc 40%, #ffffff 60%, #fef7f0 80%, #fdf2f8 100%);
      --bg-primary: var(--breathing-gradient);
      --bg-secondary: rgba(255, 255, 255, 0.7);
      --bg-card: rgba(255, 255, 255, 0.85);
      --text-primary: #2d1b4b;
      --text-secondary: #64748b;
      --text-muted: #94a3b8;
      --border-color: rgba(220, 38, 127, 0.12);
      --shadow-ambient: 0 12px 48px rgba(220, 38, 127, 0.08), 0 4px 16px rgba(148, 163, 184, 0.06);
      --shadow-float: 0 24px 80px rgba(220, 38, 127, 0.15), 0 8px 32px rgba(148, 163, 184, 0.1);
      --shadow-glow: 0 0 40px rgba(220, 38, 127, 0.2);
      --glass-bg: rgba(255, 255, 255, 0.6);
      --glass-border: rgba(255, 255, 255, 0.8);
      --glass-glow: rgba(255, 255, 255, 0.9);
      --oxygen-silver: #e2e8f0;
      --oxygen-alabaster: #f8fafc;
      --oxygen-blush: #fef7f0;
      --oxygen-ice: #f0f9ff;
      --ambient-glow: rgba(220, 38, 127, 0.2);
      --heartbeat-glow: rgba(220, 38, 127, 0.3);
      --trust-blue: #0ea5e9;
      --serenity-violet: #8b5cf6;
    }

    /* Dark Theme - 2030 Deep Violet + Pink Neon Intelligence */
    [data-theme="dark"] {
      --breathing-gradient: linear-gradient(135deg, #1a001f 0%, #2d0a3d 20%, #330033 40%, #1a001f 60%, #2d0a3d 80%, #330033 100%);
      --bg-primary: var(--breathing-gradient);
      --bg-secondary: rgba(26, 0, 31, 0.9);
      --bg-card: rgba(45, 10, 61, 0.8);
      --text-primary: #f8fafc;
      --text-secondary: #cbd5e1;
      --text-muted: #94a3b8;
      --border-color: rgba(255, 140, 207, 0.2);
      --shadow-ambient: 0 12px 48px rgba(255, 140, 207, 0.15), 0 4px 16px rgba(26, 0, 31, 0.6);
      --shadow-float: 0 24px 80px rgba(255, 140, 207, 0.25), 0 8px 32px rgba(26, 0, 31, 0.8);
      --shadow-glow: 0 0 40px rgba(255, 140, 207, 0.4);
      --glass-bg: rgba(45, 10, 61, 0.7);
      --glass-border: rgba(255, 140, 207, 0.3);
      --glass-glow: rgba(255, 140, 207, 0.4);
      --ambient-glow: rgba(255, 140, 207, 0.3);
      --heartbeat-glow: rgba(255, 140, 207, 0.5);
      --trust-blue: #38bdf8;
      --serenity-violet: #a78bfa;
      --neon-pink: #ff8ccf;
    }

    [data-theme="dark"] body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 140, 207, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(167, 139, 250, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(56, 189, 248, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 140, 207, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(167, 139, 250, 0.3), transparent);
      background-repeat: repeat;
      background-size: 200px 100px;
      animation: float-particles 20s linear infinite;
      pointer-events: none;
      z-index: 1;
    }

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

    body {
      background: var(--bg-primary);
      background-size: 400% 400%;
      animation: breathe-background 20s ease-in-out infinite;
      color: var(--text-primary);
      min-height: 100vh;
    }

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

    /* Smooth Scrolling */
    html {
      scroll-behavior: smooth;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: var(--glass-bg);
      backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid var(--glass-border);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
      padding: 1rem 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, var(--glass-glow) 0%, transparent 100%);
      opacity: 0.6;
      pointer-events: none;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.5px;
      position: relative;
      z-index: 2;
    }

    .logo::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 140%;
      height: 140%;
      background: radial-gradient(circle, var(--heartbeat-glow) 0%, transparent 60%);
      border-radius: 50%;
      z-index: -1;
      animation: heartbeat-pulse 5s ease-in-out infinite;
    }

    @keyframes heartbeat-pulse {
      0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.9);
      }
      15% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
      }
      30% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
      }
      45% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.15);
      }
      60% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
      }
    }

    .nav-menu {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-link {
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 0.5rem 1rem;
      border-radius: 12px;
    }

    .nav-link:hover {
      color: var(--primary-color);
      background: var(--glass-bg);
    }

    .theme-toggle {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 50%;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.2rem;
    }

    .theme-toggle:hover {
      background: var(--primary-color);
      color: white;
      transform: scale(1.1);
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--text-primary);
      cursor: pointer;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 2rem 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 20%, rgba(220, 38, 127, 0.1) 0%, transparent 50%),
                  radial-gradient(circle at 70% 80%, rgba(244, 114, 182, 0.08) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero-content {
      max-width: 800px;
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-block;
      background: var(--glass-bg);
      backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-size: 0.9rem;
      color: var(--primary-color);
      font-weight: 600;
      margin-bottom: 2rem;
      animation: fadeInUp 0.8s ease 0.2s both;
      position: relative;
    }

    .language-indicator {
      margin-left: 0.75rem;
      font-size: 0.8rem;
      opacity: 0.7;
      border-left: 1px solid var(--border-color);
      padding-left: 0.75rem;
    }

    .hero-title {
      font-size: clamp(3rem, 8vw, 6rem);
      font-weight: 800;
      background: var(--dynamic-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
      letter-spacing: 1px;
      animation: fadeInUp 0.8s ease 0.4s both;
      position: relative;
    }

    .hero-title::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 110%;
      height: 110%;
      background: radial-gradient(circle, var(--ambient-glow) 0%, transparent 60%);
      border-radius: 50%;
      z-index: -1;
      animation: heartbeat-glow 6s ease-in-out infinite;
    }

    .hero-fullname {
      font-size: 0.9rem;
      color: var(--text-secondary);
      font-weight: 400;
      font-family: 'SF Mono', 'Monaco', 'Cascadia Code', monospace;
      text-transform: lowercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.25rem;
      animation: fadeInUp 0.8s ease 0.5s both;
    }

    .hero-pronunciation {
      font-size: 1rem;
      color: var(--text-muted);
      font-style: italic;
      font-weight: 300;
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.8s ease 0.6s both;
      position: relative;
    }

    .hero-pronunciation::after {
      content: '';
      position: absolute;
      right: -25px;
      top: 0;
      font-size: 0.8rem;
      color: var(--primary-color);
      opacity: 0.6;
    }

    .hero-subtitle {
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      font-weight: 500;
      font-family: 'Outfit', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      color: #3a3a3a;
      margin-bottom: 1rem;
      letter-spacing: 0.25px;
      text-transform: uppercase;
      animation: fadeInUp 0.8s ease 0.8s both;
      text-shadow: 0 0 20px rgba(220, 38, 127, 0.08), 0 2px 4px rgba(220, 38, 127, 0.04);
      position: relative;
    }

    [data-theme="dark"] .hero-subtitle {
      color: #e2e8f0;
      text-shadow: 0 0 20px rgba(255, 140, 207, 0.15), 0 2px 4px rgba(255, 140, 207, 0.08);
    }

    .hero-description {
      font-size: 1.2rem;
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 0.8s ease 1s both;
      line-height: 1.6;
    }

    .hero-tagline {
      font-size: 1rem;
      color: var(--text-muted);
      font-weight: 400;
      margin-bottom: 1.5rem;
      margin-top: 1rem;
      font-family: 'SF Mono', 'Monaco', 'Cascadia Code', monospace;
      letter-spacing: 0.5px;
      animation: fadeInUp 0.8s ease 1.1s both;
      position: relative;
    }

    .microline {
      display: block;
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, var(--primary-color), var(--serenity-violet));
      margin: 1rem auto 0;
      opacity: 0.6;
      animation: microline-glow 3s ease-in-out infinite;
    }

    @keyframes microline-glow {
      0%, 100% {
        opacity: 0.4;
        transform: scaleX(1);
      }
      50% {
        opacity: 0.8;
        transform: scaleX(1.2);
      }
    }

    .privacy-lock {
      display: inline-block;
      animation: lock-pulse 4s ease-in-out infinite;
      margin: 0 0.2rem;
    }

    @keyframes lock-pulse {
      0%, 90%, 100% {
        opacity: 0.7;
        transform: scale(1);
      }
      95% {
        opacity: 1;
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px rgba(220, 38, 127, 0.4));
      }
    }

    .trust-badges {
      margin-top: 0.75rem;
      animation: fadeInUp 0.8s ease 1.6s both;
    }

    .trust-text {
      font-size: 0.68rem;
      color: #a3a3a3;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-family: 'SF Mono', 'Monaco', 'Cascadia Code', monospace;
      opacity: 0.85;
    }

    .hero-cta {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
      animation: fadeInUp 0.8s ease 1.2s both;
    }

    .btn {
      padding: 1rem 2.5rem;
      border-radius: 20px;
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: none;
      min-width: 180px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      position: relative;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      letter-spacing: 0.025em;
    }

    .btn-primary {
      background: var(--glass-bg);
      color: var(--primary-color);
      border: 1px solid var(--border-color);
      backdrop-filter: blur(24px) saturate(180%);
      box-shadow: var(--shadow-ambient);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--primary-gradient);
      transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: -1;
    }

    .btn-primary::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transform: translateX(-100%);
      transition: transform 0.6s ease;
    }

    .btn-primary:hover::before {
      left: 0;
    }

    .btn-primary:hover::after {
      transform: translateX(100%);
    }

    .btn-primary:hover {
      color: white;
      transform: translateY(-4px) scale(1.03);
      box-shadow: var(--shadow-float), var(--shadow-glow);
    }

    .btn-pulse-icon {
      display: inline-block;
      margin-left: 0.5rem;
      animation: pulse-icon 2s ease-in-out infinite;
    }

    .btn-secondary {
      background: var(--glass-bg);
      color: var(--primary-color);
      border: 2px solid var(--border-color);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: var(--primary-color);
      color: white;
      transform: translateY(-3px);
      box-shadow: var(--shadow-medium);
    }

    .hero-microtext {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 3rem;
      animation: fadeInUp 0.8s ease 1.4s both;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
      animation: fadeInUp 0.8s ease 1.6s both;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 16px;
      background: var(--glass-bg);
      color: var(--primary-color);
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(10px);
    }

    .social-link:hover {
      background: var(--primary-color);
      color: white;
      transform: translateY(-3px);
      box-shadow: var(--shadow-light);
    }

    /* Problem Section */
    .problem-section {
      padding: 8rem 2rem;
      background: var(--bg-secondary);
      backdrop-filter: blur(20px);
    }

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

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

    .section-title {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .section-subtitle {
      font-size: 1.3rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
    }

    .problem-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .problem-visual {
      background: var(--glass-bg);
      border-radius: 24px;
      padding: 3rem;
      text-align: center;
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(20px);
    }

    /* MYQER Emergency Card - Realistic Design */
    .myqer-emergency-card {
      width: 400px;
      height: 250px;
      background: white;
      border-radius: 12px;
      margin: 0 auto;
      position: relative;
      box-shadow: 
        0 0 0 1px rgba(220, 38, 127, 0.1),
        0 12px 48px rgba(220, 38, 127, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .myqer-emergency-card::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: radial-gradient(circle at 30% 20%, rgba(220, 38, 127, 0.2) 0%, transparent 50%),
                  radial-gradient(circle at 70% 80%, rgba(244, 114, 182, 0.15) 0%, transparent 50%);
      border-radius: 14px;
      z-index: -1;
      opacity: 0.6;
    }

    .myqer-emergency-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 30%, transparent 70%, rgba(255, 255, 255, 0.05) 100%);
      pointer-events: none;
      border-radius: 12px;
    }

    .myqer-emergency-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 
        0 0 0 1px rgba(220, 38, 127, 0.15),
        0 20px 64px rgba(220, 38, 127, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .myqer-emergency-card:hover::before {
      opacity: 0.8;
    }

    /* Card Header with Gradient */
    .card-header-gradient {
      background: linear-gradient(135deg, #ef4444 0%, #f472b6 100%);
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
      position: relative;
    }

    .card-logo {
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    }

    .card-url {
      font-size: 0.75rem;
      opacity: 0.95;
      font-weight: 500;
      font-family: 'SF Mono', 'Monaco', monospace;
    }

    /* Card Body */
    .card-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      background: white;
    }

    /* Headline Section */
    .card-headline {
      text-align: center;
      margin-bottom: 20px;
    }

    .headline-text {
      font-size: 1.1rem;
      font-weight: 800;
      color: #a5003a;
      margin: 0 0 4px 0;
      letter-spacing: 0.75px;
      text-transform: uppercase;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      line-height: 1.2;
    }

    .headline-subtext {
      font-size: 1.1rem;
      font-weight: 800;
      color: #a5003a;
      margin: 0;
      letter-spacing: 0.75px;
      text-transform: uppercase;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    }

    /* QR Codes Section */
    .qr-section {
      display: flex;
      justify-content: center;
      align-items: center;
      flex: 1;
      margin: 10px 0;
      gap: 60px; /* Increased spacing between QRs by ~30% */
    }

    .qr-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px; /* Increased vertical padding between QR and label */
    }

    .qr-frame {
      width: 80px; /* Reduced by ~20% from 100px */
      height: 80px; /* Reduced by ~20% from 100px */
      border-radius: 8px;
      padding: 5px;
      position: relative;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .online-frame {
      background: #00b34f;
      border: 2px solid #00b34f;
    }

    .offline-frame {
      background: #dc267f;
      border: 2px solid #dc267f;
    }

    .qr-frame:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .online-frame:hover {
      box-shadow: 0 6px 20px rgba(0, 179, 79, 0.2), 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .offline-frame:hover {
      box-shadow: 0 6px 20px rgba(220, 38, 127, 0.2), 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .qr-pattern {
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 4px;
      position: relative;
      overflow: hidden;
    }

    .qr-pattern svg {
      width: 100%;
      height: 100%;
    }

    /* QR Labels */
    .qr-labels {
      text-align: center;
    }

    .qr-label-main {
      font-size: 0.8rem;
      font-weight: 800;
      margin: 0 0 2px 0;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    }

    .online-label {
      color: #00b34f;
    }

    .offline-label {
      color: #dc267f;
    }

    .qr-label-sub {
      font-size: 0.65rem;
      color: var(--text-secondary);
      font-weight: 600;
      margin: 0;
      font-family: 'SF Mono', 'Monaco', monospace;
      letter-spacing: 0.25px;
    }

    /* Card Footer */
    .card-footer {
      background: linear-gradient(135deg, #fef7f0 0%, #fdf2f8 100%);
      border-top: 1px solid rgba(220, 38, 127, 0.08);
      padding: 12px 20px 10px;
      text-align: center;
    }

    .footer-main-text {
      font-size: 0.65rem;
      color: var(--text-secondary);
      margin: 0 0 4px 0;
      line-height: 1.4;
      font-weight: 500;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    }

    .footer-micro-text {
      font-size: 0.6rem;
      color: var(--text-muted);
      margin: 0;
      font-weight: 500;
      font-family: 'SF Mono', 'Monaco', monospace;
      letter-spacing: 0.25px;
      text-transform: uppercase;
    }

    /* Hover Animation for QR Frames */
    @keyframes qr-glow-green {
      0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.1);
      }
      50% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 179, 79, 0.15);
      }
    }

    @keyframes qr-glow-red {
      0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.1);
      }
      50% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 15px rgba(220, 38, 127, 0.15);
      }
    }

    .myqer-emergency-card:hover .online-frame {
      animation: qr-glow-green 3s ease-in-out infinite;
    }

    .myqer-emergency-card:hover .offline-frame {
      animation: qr-glow-red 3s ease-in-out infinite 1.5s;
    }

    /* Dark Theme Adjustments */
    [data-theme="dark"] .myqer-emergency-card {
      background: rgba(45, 10, 61, 0.95);
      border: 1px solid rgba(255, 140, 207, 0.2);
      box-shadow: 
        0 0 0 1px rgba(255, 140, 207, 0.15),
        0 12px 48px rgba(255, 140, 207, 0.25),
        0 4px 16px rgba(26, 0, 31, 0.6),
        inset 0 1px 0 rgba(255, 140, 207, 0.1);
    }

    [data-theme="dark"] .myqer-emergency-card::before {
      background: radial-gradient(circle at 30% 20%, rgba(255, 140, 207, 0.3) 0%, transparent 50%),
                  radial-gradient(circle at 70% 80%, rgba(167, 139, 250, 0.2) 0%, transparent 50%);
    }

    [data-theme="dark"] .card-body {
      background: rgba(45, 10, 61, 0.95);
    }

    [data-theme="dark"] .headline-text,
    [data-theme="dark"] .headline-subtext {
      color: #ff8ccf;
    }

    [data-theme="dark"] .card-footer {
      background: rgba(26, 0, 31, 0.8);
      border-top: 1px solid rgba(255, 140, 207, 0.15);
    }

    [data-theme="dark"] .footer-main-text {
      color: #cbd5e1;
    }

    [data-theme="dark"] .footer-micro-text {
      color: #94a3b8;
    }

    /* How It Works Section */
    .how-it-works {
      padding: 4rem 2rem;
    }

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

    .step-card {
      background: var(--bg-card);
      border-radius: 32px;
      padding: 3rem 2rem;
      text-align: center;
      border: 1px solid var(--border-color);
      backdrop-filter: blur(24px) saturate(180%);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-ambient);
    }

    .step-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--primary-gradient);
      border-radius: 32px 32px 0 0;
    }

    .step-card::after {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(135deg, var(--glass-glow), transparent, var(--glass-glow));
      border-radius: 34px;
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
      z-index: -1;
    }

    .step-card:hover {
      transform: translateY(-12px) scale(1.03);
      box-shadow: var(--shadow-float), var(--shadow-glow);
    }

    .step-card:hover::after {
      opacity: 0.6;
    }

    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background: var(--primary-gradient);
      color: white;
      border-radius: 50%;
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 2rem;
    }

    .step-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }

    .timer-icon {
      font-size: 1.2rem;
      opacity: 0.7;
      margin-left: 0.5rem;
      animation: tick 2s ease-in-out infinite;
    }

    @keyframes tick {
      0%, 50%, 100% {
        transform: rotate(0deg);
      }
      25% {
        transform: rotate(-5deg);
      }
      75% {
        transform: rotate(5deg);
      }
    }

    .step-description {
      color: var(--text-secondary);
      line-height: 1.6;
    }

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

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

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

    @keyframes heartbeat-glow {
      0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
      }
      50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
      }
    }

    @keyframes pulse-icon {
      0%, 100% {
        opacity: 0.7;
        transform: scale(1);
      }
      50% {
        opacity: 1;
        transform: scale(1.1);
      }
    }

    .float-animation {
      animation: float 3s ease-in-out infinite;
    }

    /* Scanning Demo Section */
    .scanning-section {
      padding: 8rem 2rem;
      background: var(--oxygen-alabaster);
    }

    [data-theme="dark"] .scanning-section {
      background: rgba(15, 11, 31, 0.8);
    }

    .scanning-demo {
      display: flex;
      justify-content: center;
      margin-top: 4rem;
    }

    .demo-phone {
      width: 320px;
      height: 640px;
      background: linear-gradient(145deg, #fdf2f8, #f8fafc);
      border: 2px solid rgba(220, 38, 127, 0.1);
      border-radius: 42px;
      padding: 8px;
      position: relative;
      box-shadow: 
        0 0 0 1px rgba(220, 38, 127, 0.15),
        0 24px 80px rgba(220, 38, 127, 0.12),
        0 8px 32px rgba(244, 114, 182, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
      transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .demo-phone:hover {
      transform: perspective(1000px) rotateY(-5deg) rotateX(1deg) scale(1.02);
      box-shadow: 
        0 0 0 1px rgba(220, 38, 127, 0.2),
        0 32px 100px rgba(220, 38, 127, 0.18),
        0 12px 48px rgba(244, 114, 182, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .demo-phone::before {
      content: '';
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 6px;
      background: linear-gradient(90deg, rgba(220, 38, 127, 0.3), rgba(244, 114, 182, 0.2));
      border-radius: 3px;
      z-index: 10;
    }

    .demo-phone::after {
      content: '';
      position: absolute;
      bottom: -50px;
      left: 5%;
      right: 5%;
      height: 30px;
      background: radial-gradient(ellipse, rgba(220, 38, 127, 0.15) 0%, rgba(244, 114, 182, 0.08) 40%, transparent 70%);
      border-radius: 50%;
      filter: blur(12px);
      transform: perspective(1000px) rotateX(60deg);
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, #ffffff 0%, #fef7f0 50%, #fdf2f8 100%);
      border: 1px solid rgba(220, 38, 127, 0.08);
      border-radius: 34px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding: 40px 20px 20px;
    }

    .screen-reflection {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 30%, transparent 70%, rgba(255, 255, 255, 0.05) 100%);
      pointer-events: none;
      border-radius: 34px;
    }

    .qr-section {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin-bottom: 20px;
    }

    .qr-code-display {
      width: 140px;
      height: 140px;
      background: white;
      border-radius: 16px;
      position: relative;
      background-image: 
        linear-gradient(45deg, #000 25%, transparent 25%), 
        linear-gradient(-45deg, #000 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #000 75%), 
        linear-gradient(-45deg, transparent 75%, #000 75%);
      background-size: 8px 8px;
      background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      animation: qr-glow 3s ease-in-out infinite;
    }

    .scan-beam {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
      animation: scan-sweep 2.5s linear infinite;
      opacity: 0;
    }

    .demo-phone:hover .scan-beam {
      opacity: 1;
    }

    .triage-interface {
      flex: 1;
      background: #f8fafc;
      border-radius: 34px;
      padding: 0;
      margin: 0;
      border: none;
      box-shadow: none;
      opacity: 1;
      position: relative;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      overflow-y: auto;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .triage-header {
      background: linear-gradient(135deg, #dc267f, #ef4444);
      color: white;
      padding: 40px 12px 6px 12px;
      border-radius: 34px 34px 0 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.6rem;
      font-weight: 700;
      margin: 0 0 8px 0;
    }

    .triage-code {
      font-family: 'SF Mono', monospace;
      font-size: 0.7rem;
    }

    .triage-title {
      font-size: 0.5rem;
      opacity: 0.9;
    }

    .triage-badge-container {
      text-align: center;
      margin-bottom: 8px;
      padding: 0 12px;
    }

    .triage-badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 0.6rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .triage-badge.amber {
      background: #ffb32c;
      color: white;
    }

    .immediate-action {
      margin-bottom: 8px;
      padding: 0 12px;
    }

    .action-buttons {
      display: flex;
      gap: 4px;
      margin-bottom: 4px;
    }

    .action-btn {
      flex: 1;
      padding: 6px 8px;
      border: none;
      border-radius: 8px;
      font-size: 0.55rem;
      font-weight: 600;
      cursor: pointer;
    }

    .action-btn.green {
      background: #00b34f;
      color: white;
    }

    .alert-banner {
      background: #ffb32c;
      color: white;
      padding: 4px 8px;
      border-radius: 6px;
      font-size: 0.55rem;
      font-weight: 600;
      text-align: center;
    }

    .emergency-calls {
      margin-bottom: 8px;
      text-align: center;
      padding: 0 12px;
    }

    .call-buttons {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-bottom: 4px;
    }

    .call-btn {
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 50%;
      font-size: 0.8rem;
      font-weight: 800;
      cursor: pointer;
    }

    .call-btn.green {
      background: #00b34f;
      color: white;
    }

    .call-btn.pink {
      background: #dc267f;
      color: white;
    }

    .call-caption {
      font-size: 0.5rem;
      color: #64748b;
      margin: 0;
    }

    .profile-card {
      background: white;
      border-radius: 8px;
      padding: 8px;
      margin: 0 12px 8px 12px;
      border: 1px solid #e2e8f0;
    }

    .profile-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.6rem;
      margin-bottom: 4px;
    }

    .profile-row:last-child {
      margin-bottom: 0;
    }

    .profile-label {
      color: #64748b;
      font-weight: 600;
    }

    .profile-value {
      color: #1e293b;
      font-weight: 700;
    }

    .health-grid {
      display: grid;
      gap: 3px;
      margin: 0 12px 8px 12px;
    }

    .health-item {
      padding: 4px 8px;
      border-radius: 6px;
      font-size: 0.55rem;
      font-weight: 600;
      border-left: 3px solid;
    }

    .health-item.blood {
      background: rgba(239, 68, 68, 0.1);
      border-left-color: #ef4444;
      color: #dc2626;
    }

    .health-item.donor {
      background: rgba(34, 197, 94, 0.1);
      border-left-color: #22c55e;
      color: #15803d;
    }

    .health-item.allergy {
      background: rgba(245, 158, 11, 0.1);
      border-left-color: #f59e0b;
      color: #d97706;
    }

    .health-item.condition {
      background: rgba(236, 72, 153, 0.1);
      border-left-color: #ec4899;
      color: #be185d;
    }

    .health-item.medication {
      background: rgba(100, 116, 139, 0.1);
      border-left-color: #64748b;
      color: #475569;
    }

    .emergency-contact {
      background: white;
      border-radius: 8px;
      padding: 8px;
      margin: 0 12px 8px 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1px solid #e2e8f0;
    }

    .contact-name {
      font-size: 0.6rem;
      font-weight: 700;
      color: #1e293b;
    }

    .contact-buttons {
      display: flex;
      gap: 4px;
    }

    .contact-btn {
      width: 24px;
      height: 24px;
      border: none;
      border-radius: 50%;
      font-size: 0.6rem;
      cursor: pointer;
    }

    .contact-btn.green {
      background: #00b34f;
      color: white;
    }

    .contact-btn.pink {
      background: #dc267f;
      color: white;
    }

    .care-preferences {
      background: white;
      border-radius: 8px;
      padding: 8px;
      margin: 0 12px 8px 12px;
      border: 1px solid #e2e8f0;
    }

    .pref-item {
      font-size: 0.55rem;
      color: #64748b;
      margin-bottom: 3px;
      font-weight: 600;
    }

    .pref-item:last-child {
      margin-bottom: 0;
    }

    .triage-footer {
      background: linear-gradient(135deg, #dc267f, #ff8ccf);
      color: white;
      padding: 4px 8px 20px 8px;
      border-radius: 0 0 34px 34px;
      font-size: 0.5rem;
      font-weight: 600;
      text-align: center;
      margin: 8px 0 0 0;
      margin-top: auto;
    }

    @keyframes qr-glow {
      0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        transform: scale(1);
      }
      50% {
        box-shadow: 0 8px 32px rgba(220, 38, 127, 0.4), 0 0 20px rgba(220, 38, 127, 0.3);
        transform: scale(1.02);
      }
    }

    @keyframes scan-sweep {
      0% {
        transform: translateY(-10px);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translateY(150px);
        opacity: 0;
      }
    }

    @keyframes card-appear {
      0%, 45% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
      }
      55%, 85% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
      100% {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
      }
    }

    /* Scroll Reveal */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Security Section */
    .security-section {
      padding: 4rem 2rem;
      background: linear-gradient(135deg, #fef7f0 0%, #fdf2f8 50%, #f8fafc 100%);
    }

    [data-theme="dark"] .security-section {
      background: linear-gradient(135deg, #fef7f0 0%, #fdf2f8 50%, #f8fafc 100%);
    }

    .security-content {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 4rem;
      align-items: center;
      margin-top: 4rem;
    }

    .security-visual {
      text-align: center;
    }

    .shield-icon {
      color: var(--primary-color);
      margin: 0 auto;
      animation: float 3s ease-in-out infinite;
      position: relative;
      filter: drop-shadow(0 0 20px var(--ambient-glow));
    }

    .shield-icon::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 140px;
      height: 140px;
      border: 2px solid var(--primary-color);
      border-radius: 50%;
      opacity: 0.3;
      animation: shield-pulse 4s ease-in-out infinite;
    }

    .shield-icon::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 180px;
      height: 180px;
      border: 1px solid var(--primary-color);
      border-radius: 50%;
      opacity: 0.2;
      animation: shield-pulse 4s ease-in-out infinite 1s;
    }

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

    .security-features {
      display: grid;
      gap: 2rem;
    }

    .security-feature {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
      background: var(--glass-bg);
      padding: 2rem;
      border-radius: 16px;
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .security-feature:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-light);
    }

    .feature-icon {
      font-size: 2rem;
      flex-shrink: 0;
    }

    .feature-content h4 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
    }

    .feature-content p {
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* Audience Section */
    .audience-section {
      padding: 4rem 2rem;
    }

    .audience-chips {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin: 3rem 0;
    }

    .audience-chip {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      color: var(--text-primary);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .audience-chip:hover {
      background: var(--primary-color);
      color: white;
      transform: translateY(-3px);
      box-shadow: var(--shadow-light);
    }

    .testimonial {
      margin-top: 4rem;
      display: flex;
      justify-content: center;
    }

    .testimonial-bubble {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 3rem;
      max-width: 600px;
      backdrop-filter: blur(20px);
      position: relative;
    }

    .testimonial-bubble::before {
      content: '"';
      position: absolute;
      top: -10px;
      left: 30px;
      font-size: 4rem;
      color: var(--primary-color);
      font-family: serif;
    }

    .testimonial-bubble p {
      font-size: 1.1rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author strong {
      color: var(--text-primary);
      font-weight: 700;
    }

    .testimonial-author span {
      color: var(--text-muted);
      font-size: 0.9rem;
      display: block;
      margin-top: 0.25rem;
    }

    /* Final CTA Section */
    .final-cta-section {
      padding: 0;
      background: var(--primary-gradient);
      position: relative;
      overflow: hidden;
      min-height: 800px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .final-cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .cta-card {
      background: transparent;
      border: none;
      border-radius: 0;
      padding: 0;
      text-align: center;
      backdrop-filter: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5rem;
      position: relative;
      z-index: 2;
      max-width: 1200px;
      width: 100%;
    }

    .cta-title {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 900;
      color: white;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .cta-subtitle {
      font-size: 1.8rem;
      color: rgba(255, 255, 255, 0.95);
      margin: 0;
      line-height: 1.4;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .cta-content {
      margin-bottom: 0;
    }

    .cta-button-container {
      margin-bottom: 2rem;
      position: relative;
    }

    .cta-button-container-slim {
      width: 100%;
      margin-bottom: 2rem;
      position: relative;
    }

    .btn-cta {
      background: white;
      color: var(--primary-color);
      font-size: 1.2rem;
      padding: 1.2rem 3rem;
      border-radius: 16px;
      font-weight: 800;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .btn-cta-slim {
      background: white;
      color: var(--primary-color);
      font-size: 1.1rem;
      padding: 1rem 2rem;
      border-radius: 16px;
      font-weight: 800;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    }

    .btn-cta-slim:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    }

    .btn-pulse {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      animation: pulse-sweep 2s infinite;
    }

    @keyframes pulse-sweep {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }

    .cta-microtext {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
    }

    .cta-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Dashboard Preview Styles - Hero Size */
    .dashboard-preview {
      position: relative;
      width: 700px;
      max-width: 90vw;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }

    .dashboard-frame {
      background: linear-gradient(135deg, #ffffff 0%, #fef7f0 50%, #fdf2f8 100%);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow: 
        0 32px 120px rgba(0, 0, 0, 0.2),
        0 16px 64px rgba(220, 38, 127, 0.15),
        0 8px 32px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(24px);
      overflow: hidden;
      position: relative;
      width: 700px;
      height: 520px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .dashboard-frame:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 
        0 48px 160px rgba(0, 0, 0, 0.25),
        0 24px 80px rgba(220, 38, 127, 0.2),
        0 12px 48px rgba(255, 255, 255, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 1);
    }

    .dashboard-frame::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 30%, transparent 70%, rgba(255, 255, 255, 0.05) 100%);
      pointer-events: none;
      border-radius: 12px;
    }

    .dashboard-header {
      background: linear-gradient(135deg, #dc267f, #ef4444);
      color: white;
      padding: 1.5rem 2rem 1rem;
      position: relative;
    }

    .dashboard-title {
      font-size: 1.4rem;
      font-weight: 800;
      margin: 0 0 0.25rem 0;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    }

    .dashboard-subtitle {
      font-size: 0.9rem;
      opacity: 0.9;
      margin: 0;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .risk-badge {
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      padding: 0.4rem 1rem;
      border-radius: 12px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .medium-risk {
      background: #ffb32c;
      color: white;
    }

    .dashboard-content {
      padding: 1.5rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      height: calc(520px - 120px);
      overflow-y: auto;
    }

    .dashboard-section {
      position: relative;
    }

    .section-header {
      display: flex;
      align-items: center;
      margin-bottom: 0.5rem;
      position: relative;
    }

    .section-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-primary);
      margin: 0;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    }

    .section-border-left {
      width: 3px;
      height: 18px;
      background: #00b34f;
      border-radius: 2px;
      margin-right: 0.75rem;
    }

    .section-border-right {
      width: 3px;
      height: 18px;
      background: #dc267f;
      border-radius: 2px;
      margin-right: 0.75rem;
    }

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

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 0.4rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .form-input, .form-select {
      padding: 0.75rem;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 500;
      color: #dc267f;
      background: white;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    }

    .emergency-contacts {
      margin-bottom: 1rem;
    }

    .contact-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem;
      background: white;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      margin-bottom: 0.5rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
    }

    .contact-name {
      font-size: 0.9rem;
      font-weight: 700;
      color: #dc267f;
      margin-bottom: 0.2rem;
    }

    .contact-relation {
      font-size: 0.75rem;
      color: var(--text-secondary);
      font-weight: 500;
    }

    .contact-actions {
      display: flex;
      gap: 0.5rem;
    }

    .contact-btn {
      width: 32px;
      height: 32px;
      border: none;
      border-radius: 50%;
      font-size: 0.9rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .call-btn {
      background: #00b34f;
      color: white;
    }

    .sms-btn {
      background: #dc267f;
      color: white;
    }

    .section-buttons {
      display: flex;
      gap: 0.75rem;
    }

    .btn-save {
      background: #0ea5e9;
      color: white;
      border: none;
      padding: 0.75rem 1.25rem;
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    }

    .btn-add {
      background: white;
      color: var(--text-primary);
      border: 1px solid #e2e8f0;
      padding: 0.75rem 1.25rem;
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    }

    .health-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .health-item {
      display: flex;
      flex-direction: column;
    }

    .health-item.full-width {
      grid-column: 1 / -1;
    }

    .health-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 0.4rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .health-value {
      font-size: 0.9rem;
      font-weight: 700;
      padding: 0.6rem 0.75rem;
      border-radius: 6px;
      border-left: 3px solid;
    }

    .blood-type {
      background: rgba(239, 68, 68, 0.1);
      border-left-color: #ef4444;
      color: #dc2626;
    }

    .donor-status {
      background: rgba(34, 197, 94, 0.1);
      border-left-color: #22c55e;
      color: #15803d;
    }

    .health-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .health-tag {
      padding: 0.4rem 0.75rem;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 600;
      border-left: 3px solid;
    }

    .health-tag.allergy {
      background: rgba(245, 158, 11, 0.1);
      border-left-color: #f59e0b;
      color: #d97706;
    }

    .health-tag.condition {
      background: rgba(236, 72, 153, 0.1);
      border-left-color: #ec4899;
      color: #be185d;
    }

    .health-tag.medication {
      background: rgba(100, 116, 139, 0.1);
      border-left-color: #64748b;
      color: #475569;
    }

    /* Footer */
    .footer {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-color);
      padding: 4rem 2rem 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1fr 3fr;
      gap: 4rem;
      margin-bottom: 3rem;
    }

    .footer-brand .logo {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .footer-tagline {
      color: var(--text-secondary);
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
    }

    .footer-social .social-link {
      width: 40px;
      height: 40px;
      border-radius: 12px;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .footer-column h4 {
      color: var(--text-primary);
      font-weight: 700;
      margin-bottom: 1.5rem;
      font-size: 1rem;
    }

    .footer-column a {
      display: block;
      color: var(--text-secondary);
      text-decoration: none;
      margin-bottom: 0.8rem;
      transition: color 0.3s ease;
    }

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

    .language-select {
      background: var(--glass-bg);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 0.5rem;
      color: var(--text-primary);
      font-size: 0.9rem;
      width: 100%;
    }

    /* Custom Language Dropdown Styles */
    .custom-select {
      position: relative;
      width: 100%;
      font-size: 0.9rem;
    }

    .select-trigger {
      background: var(--glass-bg);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 0.75rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .select-trigger:hover {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 2px rgba(220, 38, 127, 0.1);
    }

    .selected-option {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .flag {
      font-size: 1.2rem;
      line-height: 1;
    }

    .language-name {
      color: var(--text-primary);
      font-weight: 500;
    }

    .dropdown-arrow {
      color: var(--text-secondary);
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }

    .custom-select.open .dropdown-arrow {
      transform: rotate(180deg);
    }

    .select-options {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--glass-bg);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-top: 0.25rem;
      max-height: 300px;
      overflow-y: auto;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      backdrop-filter: blur(20px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .custom-select.open .select-options {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .option {
      padding: 0.75rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.2s ease;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .option:hover {
      background: var(--primary-color);
      color: white;
    }

    .option:hover .language-name {
      color: white;
    }

    .option:hover .flag {
      transform: scale(1.1);
    }

    /* Scrollbar for dropdown */
    .select-options::-webkit-scrollbar {
      width: 6px;
    }

    .select-options::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 3px;
    }

    .select-options::-webkit-scrollbar-thumb {
      background: var(--primary-color);
      border-radius: 3px;
    }

    .select-options::-webkit-scrollbar-thumb:hover {
      background: var(--primary-color);
      opacity: 0.8;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid var(--border-color);
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .footer-bottom p:first-child {
      margin-bottom: 0.5rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .hero {
        padding: 6rem 1rem 2rem;
      }

      .hero-cta {
        flex-direction: column;
        align-items: center;
      }

      .btn {
        width: 100%;
        max-width: 300px;
      }

      .problem-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

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

      .security-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .audience-chips {
        flex-direction: column;
        align-items: center;
      }

      .audience-chip {
        width: 100%;
        max-width: 300px;
        text-align: center;
      }

      .cta-card {
        flex-direction: column;
        gap: 3rem;
        padding: 2rem 1rem;
      }

      .dashboard-preview {
        width: 90vw;
        max-width: 500px;
      }

      .dashboard-frame {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3.2;
      }

      .dashboard-content {
        height: auto;
        overflow-y: visible;
      }

      .cta-subtitle {
        font-size: 1.4rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

      .section-title {
        font-size: 2.5rem;
      }

      .social-links {
        gap: 1rem;
      }

      .social-link {
        width: 44px;
        height: 44px;
      }
    }

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

      .hero {
        padding: 5rem 1rem 2rem;
      }

      .problem-section,
      .how-it-works,
      .security-section,
      .audience-section {
        padding: 3rem 1rem;
      }

      .step-card {
        padding: 2rem 1.5rem;
      }
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background: var(--bg-card);
      backdrop-filter: blur(20px);
      border-left: 1px solid var(--border-color);
      padding: 2rem;
      transition: right 0.3s ease;
      z-index: 1001;
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-close {
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--text-primary);
      cursor: pointer;
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .mobile-nav-links .nav-link {
      padding: 1rem;
      border-radius: 12px;
      background: var(--glass-bg);
      border: 1px solid var(--border-color);
    }
  
