/* ========== Base ========== */
* {
    box-sizing: border-box;
  }
  
  body.page {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "SF Pro Display", 
      system-ui, sans-serif;
    background: #050816;
    color: #f7f7ff;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
  }
  
  /* Background gradient / neo-futurist */
  .bg-gradient {
    position: fixed;
    inset: 0;
    background:
      radial-gradient(circle at 0% 0%, rgba(14, 165, 233, 0.25), transparent 50%),
      radial-gradient(circle at 100% 100%, rgba(30, 58, 138, 0.25), transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08), transparent 70%),
      linear-gradient(135deg, #050816 0%, #0a1229 40%, #02010f 100%);
    z-index: -2;
  }
  
  /* Subtle animated gradient overlay */
  .bg-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1), transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.1), transparent 40%);
    animation: gradientShift 20s ease infinite;
    z-index: -1;
  }
  
  @keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
  }
  
  /* Slight noise/overlay (optional, subtle) */
  /* Uncomment if you want texture:
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg ... %3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
  }
  */
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px;
  }
  
  /* Generic text elements */
  .subtitle {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.75;
    line-height: 1.6;
  }
  
  /* Links */
  a {
    color: #60a5fa;
    transition: color 0.2s ease;
  }
  
  a:hover {
    color: #93c5fd;
  }
  
  /* Headings */
  h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  
  h1 {
    line-height: 1.1;
  }
  
  h2 {
    line-height: 1.2;
  }
  
  h3 {
    line-height: 1.3;
  }
  
  /* ========== Top Nav ========== */
  .top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 12px 0;
    position: relative;
  }

  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #93c5fd;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
  }
  
  .brand:hover {
    transform: translateY(-1px);
  }
  
  .brand-name {
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c4ceff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 
      0 0 20px rgba(59, 130, 246, 0.3),
      0 2px 8px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }
  
  .brand-name::before {
    content: "ReclaimTime";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(14, 165, 233, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(8px);
    z-index: -1;
    opacity: 0.6;
  }
  
  .brand:hover .brand-name {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.9rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #93c5fd;
    opacity: 0.85;
    transition: all 0.2s ease;
    position: relative;
    padding: 4px 0;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #0ea5e9);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover {
    opacity: 1;
    color: #ffffff;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* Nav CTA - separate from nav-links to avoid inheritance issues */
  .nav-cta,
  .nav-links .nav-cta {
    padding: 12px 28px;
    border-radius: 6px;
    background: linear-gradient(135deg, #3b82f6, #0ea5e9) !important;
    color: #ffffff !important;
    border: none !important;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    position: relative;
    box-shadow:
      0 4px 20px rgba(59, 130, 246, 0.5),
      0 0 0 1px rgba(5, 8, 22, 0.8),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  
  .nav-cta::after,
  .nav-links .nav-cta::after {
    display: none !important;
    content: none !important;
  }
  
  .nav-cta:hover,
  .nav-links .nav-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    text-decoration: none !important;
    color: #ffffff !important;
    opacity: 1 !important;
    box-shadow:
      0 6px 28px rgba(59, 130, 246, 0.6),
      0 0 0 1px rgba(5, 8, 22, 0.8),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  
  .nav-cta:active,
  .nav-links .nav-cta:active {
    transform: translateY(0);
  }
  
  /* ========== Hero & Layout ========== */
  .hero-wrap {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  /* Glassmorphic card base */
  .hero-glass,
  .glass-section {
    position: relative;
    border-radius: 24px;
    padding: 32px 28px;
    margin-bottom: 0;
    background: rgba(9, 12, 30, 0.75);
    border: 1px solid rgba(200, 220, 255, 0.18);
    box-shadow:
      0 20px 60px rgba(1, 4, 19, 0.95),
      0 0 0 1px rgba(255, 255, 255, 0.03),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px) saturate(150%);
    transition: all 0.3s ease;
  }

  /* Spacing between sections (not hero) */
  .glass-section {
    margin-top: 64px;
  }

  main .glass-section:first-of-type {
    margin-top: 0;
  }
  
  .hero-glass:hover,
  .glass-section:hover {
    border-color: rgba(200, 220, 255, 0.25);
    box-shadow:
      0 24px 70px rgba(1, 4, 19, 1),
      0 0 0 1px rgba(255, 255, 255, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  
  /* Hero layout */
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
  }
  
  .hero-content {
    max-width: 580px;
  }
  
  /* Hero Stat Badge */
  .hero-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 12px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.2);
  }

  .hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fb923c;
    line-height: 1;
    text-shadow: 0 0 12px rgba(249, 115, 22, 0.5);
  }

  .hero-stat-label {
    font-size: 0.9rem;
    color: #fdba74;
    opacity: 0.95;
    font-weight: 500;
  }

  .hero-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.75;
    margin: 0 0 12px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(14, 165, 233, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 0 0 20px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #e8edff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-subtitle {
    margin: 0 0 24px;
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.7;
    color: #d2d7ff;
  }
  
  .hero-subtitle strong {
    color: #ffffff;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
  }
  
  .hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .hero-benefits li {
    font-size: 0.95rem;
    color: #d2d7ff;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
  }
  
  .hero-benefits li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.4;
  }
  
  .chip {
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.35);
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    font-weight: 500;
    color: #e8edff;
  }
  
  .chip:hover {
    background: rgba(59, 130, 246, 0.18);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateY(-1px);
  }
  
  .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
  }

  .hero-cta-link {
    margin: 0 0 20px 0;
  }

  .hero-cta-link a {
    color: #93c5fd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display: inline-block;
  }

  .hero-cta-link a:hover {
    color: #dbeafe;
    text-decoration: underline;
  }

  .cta-secondary {
    background: rgba(10, 20, 60, 0.4);
    color: #cbd6ff;
    border: 1px solid rgba(160, 189, 255, 0.5);
    backdrop-filter: blur(10px);
  }

  .cta-secondary:hover {
    background: rgba(10, 20, 60, 0.6);
    border-color: rgba(160, 189, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(95, 157, 255, 0.2);
  }
  
  .cta-button {
    border-radius: 999px;
    padding: 12px 24px;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
  }
  
  .cta-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .cta-button:hover::before {
    opacity: 1;
  }
  
  .cta-primary {
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    color: #ffffff;
    box-shadow:
      0 4px 20px rgba(59, 130, 246, 0.5),
      0 0 0 1px rgba(5, 8, 22, 0.8),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  
  .cta-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow:
      0 6px 28px rgba(59, 130, 246, 0.6),
      0 0 0 1px rgba(5, 8, 22, 0.8),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  
  .cta-primary:active {
    transform: translateY(0);
  }
  
  .cta-ghost {
    background: rgba(10, 20, 60, 0.3);
    color: #cbd6ff;
    border: 1px solid rgba(160, 189, 255, 0.4);
    backdrop-filter: blur(10px);
  }
  
  .cta-ghost:hover {
    background: rgba(10, 20, 60, 0.5);
    border-color: rgba(160, 189, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(95, 157, 255, 0.2);
  }
  
  .hero-footnote {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
    color: #b8c4ff;
    line-height: 1.6;
  }

  .hero-footnote strong {
    color: #ffffff;
    font-weight: 600;
  }
  
  /* Hero visual / phone */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .phone-glass {
    position: relative;
    width: 280px;
    height: 480px;
    border-radius: 36px;
    padding: 14px;
    background: linear-gradient(145deg, rgba(12, 20, 60, 0.95), rgba(10, 28, 78, 0.95));
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.8),
      0 0 0 1px rgba(255, 255, 255, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 220, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    animation: phoneAppear 0.6s ease forwards;
  }
  
  @keyframes phoneAppear {
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
  
  .hero-glass:hover .phone-glass {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.9),
      0 0 0 1px rgba(255, 255, 255, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
  
  .phone-header {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    position: relative;
  }
  
  .phone-pill {
    width: 100px;
    height: 10px;
    border-radius: 999px;
    background: rgba(210, 220, 255, 0.4);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  .phone-body {
    border-radius: 24px;
    padding: 16px 12px;
    background: 
      radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.03), transparent 60%),
      linear-gradient(180deg, rgba(15, 25, 70, 0.5) 0%, rgba(8, 18, 50, 0.8) 100%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: calc(100% - 30px);
    overflow: hidden;
    position: relative;
  }
  
  .phone-body > .sms-bubble {
    flex-shrink: 0;
  }
  
  .phone-body > .phone-hint {
    margin-top: auto;
  }
  
  .phone-hint {
    margin-top: auto;
    font-size: 0.75rem;
    opacity: 0.75;
    text-align: center;
    padding-top: 12px;
    color: #a9b4ff;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  
  /* Phone animation elements */
  .phone-to-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(8, 18, 50, 0.55);
    border-radius: 14px;
    border: 1px solid rgba(200, 220, 255, 0.16);
    backdrop-filter: blur(10px);
    color: #c7d2fe;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    align-self: flex-start;
  }

  .phone-to-label {
    font-weight: 700;
    opacity: 0.75;
    letter-spacing: 0.12em;
  }

  .phone-to-number {
    color: #e8edff;
  }

  /* Typing cursor animation (reuse phone input cursor) */
  .phone-to-number::after {
    content: "|";
    display: inline-block;
    animation: blinkCursor 1s infinite;
    margin-left: 2px;
    color: #0ea5e9;
  }

  .phone-to-number.no-cursor::after {
    display: none;
  }

  .phone-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 8px 12px;
    background: rgba(8, 18, 50, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(200, 220, 255, 0.2);
    backdrop-filter: blur(10px);
    align-self: flex-start;
  }
  
  .phone-input-text {
    flex: 1;
    font-size: 0.85rem;
    color: #e8edff;
    padding: 8px 12px;
    min-height: 20px;
    border: none;
    background: transparent;
    outline: none;
  }
  
  .phone-send-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }
  
  .phone-send-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
  }
  
  .phone-send-btn:active {
    transform: scale(0.95);
  }
  
  .phone-send-btn svg {
    width: 14px;
    height: 14px;
  }
  
  /* Typing cursor animation */
  .phone-input-text::after {
    content: "|";
    display: inline-block;
    animation: blinkCursor 1s infinite;
    margin-left: 2px;
    color: #0ea5e9;
  }
  
  .phone-input-text.no-cursor::after {
    display: none;
  }
  
  @keyframes blinkCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
  }
  
  /* Bubble animations */
  .phone-bubble-user,
  .phone-bubble-system {
    animation: bubbleSlideIn 0.4s ease forwards;
  }
  
  @keyframes bubbleSlideIn {
    from {
      opacity: 0;
      transform: translateY(10px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  /* Typing indicator */
  .phone-typing-indicator {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(96, 165, 250, 0.45);
    border-radius: 16px;
    margin-bottom: 4px;
  }
  
  .phone-typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e8edff;
    display: inline-block;
    animation: typingDot 1.4s infinite ease-in-out;
  }
  
  .phone-typing-indicator span:nth-child(1) {
    animation-delay: 0s;
  }
  
  .phone-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .phone-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  @keyframes typingDot {
    0%, 60%, 100% {
      transform: translateY(0);
      opacity: 0.7;
    }
    30% {
      transform: translateY(-8px);
      opacity: 1;
    }
  }
  
  .phone-hint-text {
    animation: fadeInUp 0.5s ease forwards;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 0.75;
      transform: translateY(0);
    }
  }
  
  /* ========== Reuse existing SMS bubble styling ========== */
  .sms-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.88rem;
    max-width: 85%;
    line-height: 1.4;
    word-wrap: break-word;
    animation: bubbleAppear 0.4s ease;
  }
  
  @keyframes bubbleAppear {
    from {
      opacity: 0;
      transform: translateY(10px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  /* Hero section bubbles (dark background) */
  .phone-body .sms-bubble-system {
    align-self: flex-end;
    background: rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(96, 165, 250, 0.45);
    color: #e8edff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .phone-body .sms-bubble-user {
    align-self: flex-start;
    background: rgba(14, 165, 233, 0.3);
    border: 1px solid rgba(56, 189, 248, 0.5);
    color: #e0f2fe;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Default bubble styles (for hero section) */
  .sms-bubble-system {
    align-self: flex-start;
    background: rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(96, 165, 250, 0.45);
    color: #e8edff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .sms-bubble-user {
    align-self: flex-end;
    background: rgba(14, 165, 233, 0.3);
    border: 1px solid rgba(56, 189, 248, 0.5);
    color: #e0f2fe;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* ========== Card sections (glass) ========== */
  .card {
    border-radius: 18px;
    padding: 16px 18px 18px;
    margin-bottom: 16px;
    background: #ffffff;
    color: #222;
  }
  
  .card-title {
    margin: 0 0 8px;
    font-size: 1.1rem;
  }
  
  .card-text {
    margin: 0 0 12px;
    font-size: 0.95rem;
  }
  
  /* Glass variant for dark theme sections */
  .glass-section {
    color: #edf0ff;
    margin-top: 8px;
  }
  
  .glass-section .card-title {
    color: #f6f7ff;
  }
  
  .glass-section .card-text {
    color: #d2d7ff;
    opacity: 0.95;
  }
  
  /* Feature list reused */
  .feature-list {
    margin: 16px 0 16px 20px;
    padding-left: 0;
    font-size: 0.95rem;
    list-style: none;
  }
  
  .feature-list li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
  }
  
  .feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 700;
    font-size: 1.1em;
  }
  
  /* Steps grid */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
  }
  
  .step-item {
    transition: transform 0.2s ease;
  }
  
  .step-item:hover {
    transform: translateY(-2px);
  }
  
  .step-item h3 {
    margin: 8px 0 8px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
  }
  
  .step-item p {
    margin: 0;
    font-size: 0.92rem;
    opacity: 0.95;
    line-height: 1.6;
    color: #d2d7ff;
  }
  
  .step-number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 2px solid rgba(96, 165, 250, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 700;
    background: rgba(59, 130, 246, 0.15);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  }
  
  /* Badge grid */
  .badge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 20px;
  }
  
  .badge-pill {
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.16);
    border: 1px solid rgba(96, 165, 250, 0.5);
    transition: all 0.2s ease;
    color: #e8edff;
    font-weight: 500;
  }
  
  .badge-pill:hover {
    background: rgba(59, 130, 246, 0.22);
    border-color: rgba(96, 165, 250, 0.7);
    transform: translateY(-1px);
  }
  
  /* Inline CTA row */
  .inline-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.95rem;
    padding-top: 16px;
    border-top: 1px solid rgba(200, 220, 255, 0.1);
  }
  
  .inline-cta span {
    color: #d2d7ff;
    opacity: 0.9;
  }
  
  .cta-link {
    font-size: 0.95rem;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  
  .cta-link:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateX(2px);
  }
  
  .cta-link::after {
    content: "→";
    transition: transform 0.2s ease;
  }
  
  .cta-link:hover::after {
    transform: translateX(4px);
  }
  
  /* Nav link reused */
  .nav-link {
    font-size: 0.9rem;
    color: #60a5fa;
    text-decoration: none;
  }
  
  .nav-link:hover {
    text-decoration: underline;
  }
  
  /* ========== SMS Demo + Entries Styles (from earlier) ========== */
  
  /* Cards (non-glass usage on other pages) */
  .card:not(.glass-section):not(.hero-glass) {
    background: #ffffff;
    color: #222;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  
  /* Demo Container - Side-by-side layout */
  .demo-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .demo-phone-section {
    min-width: 0;
  }

  .demo-entries-section {
    min-width: 0;
  }

  /* SMS phone on demo page */
  .sms-phone {
    border-radius: 16px;
    border: 1px solid #ddd;
    overflow: hidden;
    background: #fafafa;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  
  .sms-header {
    background: #f1f1f1;
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    color: #333;
  }
  
  .sms-body-demo {
    padding: 10px;
    height: 260px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f5f5f5;
  }
  
  /* existing .sms-body used in JS */
  .sms-body {
    padding: 10px;
    height: 260px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f5f5f5;
  }
  
  /* Override bubble styles for SMS demo page (light background) */
  .sms-phone .sms-bubble {
    color: #333;
  }
  
  .sms-phone .sms-bubble-system {
    background: #e3e8f0;
    border: 1px solid #cbd5e0;
    color: #2d3748;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .sms-phone .sms-bubble-user {
    background: #3b82f6;
    border: 1px solid #2563eb;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(59, 130, 246, 0.3);
  }
  
  .sms-phone .sms-bubble strong {
    color: #1a202c;
    font-weight: 600;
  }

  /* Typing indicator for demo page */
  .sms-typing-indicator {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: #e3e8f0;
    border: 1px solid #cbd5e0;
    border-radius: 16px;
    margin-bottom: 4px;
  }

  .sms-typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #718096;
    display: inline-block;
    animation: typingDot 1.4s infinite ease-in-out;
  }

  .sms-typing-indicator span:nth-child(1) {
    animation-delay: 0s;
  }

  .sms-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
  }

  .sms-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .sms-input-row {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 8px;
    background: #f7f7f7;
  }
  
  .sms-input {
    flex: 1;
    border-radius: 20px;
    border: 1px solid #ccc;
    padding: 8px 12px;
    font-size: 0.95rem;
    margin-right: 8px;
  }
  
  .sms-send-btn {
    border-radius: 20px;
    border: none;
    padding: 8px 14px;
    background: #3b82f6;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
  }
  
  .sms-send-btn:hover {
    background: #2563eb;
  }
  
  /* Table for entries */
  .table-wrapper {
    overflow-x: auto;
  }
  
  .entries-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: white;
    color: #222;
  }
  
  .entries-table th,
  .entries-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
  }
  
  .entries-table th {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    background: #f5f5f5;
    opacity: 0.8;
  }

  .entries-table tbody tr {
    transition: background-color 0.15s ease;
  }

  .entries-table tbody tr:hover {
    background-color: #f9f9f9;
  }
  
  .edit-link {
    color: #3b82f6;
    cursor: pointer;
    font-size: 0.9rem;
  }
  
  .edit-link:hover {
    text-decoration: underline;
  }
  
  /* CSV preview */
  .csv-preview-card {
    cursor: default;
  }

  .csv-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s ease;
  }

  .csv-preview-header:hover {
    opacity: 0.8;
  }

  .csv-preview-header .card-title {
    margin: 0;
  }

  .csv-toggle-icon {
    font-size: 0.9rem;
    color: #666;
    transition: transform 0.2s ease;
    margin-left: 12px;
  }

  .csv-preview-content {
    margin-top: 12px;
    animation: fadeIn 0.3s ease;
  }

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

  .csv-preview {
    background: #f0f0f0;
    padding: 12px;
    border-radius: 8px;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    font-size: 0.8rem;
    white-space: pre;
    margin: 0 0 16px 0;
    color: #222;
  }

  /* CSV Download Button */
  .csv-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #ffffff;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
  }

  .csv-download-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
  }

  .csv-download-btn:hover {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  }

  .csv-download-btn:active {
    transform: translateY(0);
  }

  /* Loading state for entries */
  .entries-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 16px;
    color: #666;
    font-size: 0.9rem;
  }

  .loading-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #e0e0e0;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  /* Demo Header Layout */
  .demo-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }

  .demo-header-row > div {
    flex: 1;
  }

  .demo-header .nav-cta {
    flex-shrink: 0;
    margin-top: 0;
    align-self: flex-start;
    margin-top: 4px;
  }

  @media (max-width: 768px) {
    .demo-header-row {
      flex-direction: column;
      align-items: flex-start;
    }

    .demo-header .nav-cta {
      align-self: flex-start;
      margin-top: 12px;
    }
  }

  /* CTA & Pricing Section */
  .cta-pricing-section {
    margin-top: 40px;
  }

  .cta-pricing-section .card {
    text-align: center;
    padding: 28px 24px;
  }

  .cta-pricing-section .card-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .cta-pricing-section .card-text {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .cta-button-container {
    margin-top: 24px;
    display: flex;
    justify-content: center;
  }
  
  /* Smooth scroll */
  html {
    scroll-behavior: smooth;
  }
  
  /* Responsive */
  @media (max-width: 968px) {
    .hero {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    
    .hero-visual {
      order: -1;
    }
    
    .phone-glass {
      width: 100%;
      max-width: 300px;
      height: 520px;
    }

    /* Demo container stacks on tablet/mobile */
    .demo-container {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
  
  @media (max-width: 768px) {
    .container {
      padding: 16px;
    }
    
    .top-nav {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 0;
      margin-bottom: 32px;
    }

    .brand-name {
      font-size: 1.1rem;
    }

    .menu-toggle {
      display: flex;
      order: 2;
    }

    .nav-links {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(5, 8, 22, 0.98);
      backdrop-filter: blur(20px);
      padding: 80px 24px 24px;
      flex-direction: column;
      gap: 8px;
      z-index: 1000;
      overflow-y: auto;
    }

    .nav-links.active {
      display: flex;
    }

    .nav-links a {
      font-size: 1.1rem;
      padding: 16px 20px;
      border-radius: 12px;
      text-align: left;
      transition: background 0.2s ease;
      border: 1px solid rgba(200, 220, 255, 0.1);
    }

    .nav-links a:hover {
      background: rgba(59, 130, 246, 0.2);
      border-color: rgba(59, 130, 246, 0.3);
    }

    .nav-cta {
      margin-top: 16px;
      text-align: center;
      background: linear-gradient(135deg, #3b82f6, #0ea5e9) !important;
      border: none !important;
    }
  
    .steps-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .hero-glass,
    .glass-section {
      padding: 24px 20px;
    }

    .glass-section {
      margin-top: 48px;
    }

    main .glass-section:first-of-type {
      margin-top: 0;
    }
    
    .hero-title {
      font-size: 2rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
      line-height: 1.6;
    }

    .hero-benefits {
      margin-bottom: 24px;
    }
    
    .phone-glass {
      width: 100%;
      max-width: 260px;
      height: 460px;
      margin: 0 auto;
    }

    /* Demo container stacks on mobile */
    .demo-container {
      grid-template-columns: 1fr;
    }

    .sms-phone {
      max-width: 100%;
    }

    /* ROI Calculator mobile */
    .roi-calculator {
      padding: 20px;
    }

    .roi-input-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .roi-input-label {
      width: 100%;
    }

    .roi-input-wrapper {
      width: 100%;
      justify-content: flex-start;
    }

    .roi-input-wrapper input {
      width: 100%;
      max-width: 200px;
    }

    .roi-results {
      margin-top: 20px;
    }

    .roi-result-item {
      padding: 12px 0;
    }

    /* Menu backdrop overlay */
    body.menu-open::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(4px);
      z-index: 999;
    }

    /* Mobile comparison cards - spacing only, display rules at bottom of file */
    .comparison-mobile {
      margin-top: 24px;
    }

    .comparison-mobile-header {
      text-align: center;
      margin-bottom: 32px;
    }

    .comparison-mobile-header h3 {
      font-size: 1.5rem;
      color: #ffffff;
      margin: 0 0 8px;
      font-weight: 700;
    }

    .comparison-mobile-header p {
      font-size: 1rem;
      color: #d2d7ff;
      margin: 0;
      opacity: 0.9;
    }

    .comparison-mobile-benefit {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.25);
      border-radius: 16px;
      padding: 24px;
      margin-bottom: 16px;
      transition: all 0.3s ease;
    }

    .comparison-mobile-benefit:hover {
      background: rgba(59, 130, 246, 0.15);
      border-color: rgba(59, 130, 246, 0.4);
      transform: translateX(4px);
    }

    .benefit-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(59, 130, 246, 0.2);
      border-radius: 12px;
      border: 1px solid rgba(59, 130, 246, 0.3);
      color: #60a5fa;
    }

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

    .benefit-content {
      flex: 1;
    }

    .benefit-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .benefit-comparison {
      font-size: 0.95rem;
      color: #93c5fd;
      line-height: 1.5;
    }

    /* Pricing grid mobile */
    .pricing-grid {
      grid-template-columns: 1fr !important;
      display: grid !important;
    }

    /* Trust grid mobile */
    .trust-grid {
      grid-template-columns: 1fr !important;
      display: grid !important;
      gap: 20px;
    }

    .trust-item {
      padding: 24px 20px;
    }

    /* Hero stat badge mobile */
    .hero-stat-badge {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      padding: 10px 16px;
    }

    .hero-stat-number {
      font-size: 1.5rem;
    }

    /* Pricing cards mobile */
    .pricing-card {
      padding: 24px 20px;
    }

    /* Steps grid mobile spacing */
    .steps-grid {
      gap: 24px;
    }

    .step-item h3 {
      font-size: 1rem;
      margin: 8px 0 10px;
    }

    .step-item p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-cta-row {
      flex-direction: column;
    }
    
    .cta-button {
      width: 100%;
    }

    .cta-button-container .cta-button {
      width: 100%;
    }
  }

  /* --- Fix glass sections contrast --- */

  .card.glass-section {
    background: rgba(9, 12, 30, 0.88); /* dark glass */
    border: 1px solid rgba(200, 220, 255, 0.22);
    color: #edf0ff;
  }
  
  .card.glass-section .card-title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  
  .card.glass-section .card-text,
  .card.glass-section .feature-list li {
    color: #d2d7ff;
    opacity: 0.98;
    line-height: 1.7;
  }
  
  .card.glass-section code {
    background: rgba(30, 58, 138, 0.4);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    font-weight: 500;
  }
  
  .card.glass-section .feature-list {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  
  .card.glass-section .feature-list li {
    margin-bottom: 10px;
    padding-left: 4px;
  }

  /* ROI Calculator */
  .roi-calculator {
    margin-top: 24px;
    padding: 24px;
    background: rgba(9, 12, 30, 0.5);
    border: 1px solid rgba(200, 220, 255, 0.15);
    border-radius: 16px;
  }

  .roi-input-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(9, 12, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 220, 255, 0.1);
    margin-bottom: 24px;
  }

  .roi-input-label {
    font-size: 0.95rem;
    color: #d2d7ff;
    font-weight: 500;
    flex-shrink: 0;
  }

  .roi-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .roi-input-wrapper input {
    width: 120px;
    padding: 10px 16px;
    background: rgba(9, 12, 30, 0.8);
    border: 1px solid rgba(200, 220, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
  }

  .roi-input-wrapper input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }

  .roi-currency {
    font-size: 0.95rem;
    color: #93c5fd;
    font-weight: 500;
    white-space: nowrap;
  }

  .roi-results {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
  }

  .roi-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(9, 12, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 220, 255, 0.1);
  }

  .roi-result-item.roi-result-highlight {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
  }

  .roi-result-label {
    font-size: 0.95rem;
    color: #d2d7ff;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .roi-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: help;
    background: rgba(59, 130, 246, 0.4);
    border: 1.5px solid #60a5fa;
    border-radius: 50%;
    color: #93c5fd;
    transition: all 0.2s ease;
    user-select: none;
    line-height: 1;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
  }

  .roi-info-icon:hover {
    background: rgba(59, 130, 246, 0.6);
    border-color: #93c5fd;
    color: #dbeafe;
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
  }

  .roi-tooltip {
    margin-top: 16px;
    padding: 16px;
    background: rgba(9, 12, 30, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    animation: fadeIn 0.3s ease;
  }

  .roi-tooltip-content {
    font-size: 0.9rem;
    color: #d2d7ff;
    line-height: 1.6;
  }

  .roi-tooltip-content strong {
    color: #ffffff;
  }

  .roi-result-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
  }

  .roi-result-highlight .roi-result-value {
    color: #60a5fa;
  }

  .roi-note {
    font-size: 0.85rem;
    color: #93c5fd;
    opacity: 0.8;
    margin: 0;
    text-align: center;
  }

  /* Comparison Table */
  .comparison-table {
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(200, 220, 255, 0.2);
  }

  /* Desktop: show table, hide mobile cards (default) */
  .comparison-table.comparison-table-desktop,
  .comparison-table-desktop {
    display: block;
  }

  .comparison-mobile {
    display: none;
  }

  /* Mobile override - must come after desktop rules */
  @media (max-width: 768px) {
    .comparison-table.comparison-table-desktop,
    .comparison-table-desktop {
      display: none !important;
      visibility: hidden !important;
      height: 0 !important;
      margin: 0 !important;
      overflow: hidden !important;
    }

    .comparison-mobile {
      display: block !important;
      visibility: visible !important;
    }
  }

  .comparison-header,
  .comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 0;
    background: transparent;
  }

  .comparison-header {
    background: rgba(9, 12, 30, 0.8);
  }

  .comparison-cell {
    padding: 24px 20px;
    background: rgba(9, 12, 30, 0.6);
    color: #d2d7ff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid rgba(200, 220, 255, 0.1);
    border-bottom: 1px solid rgba(200, 220, 255, 0.1);
  }

  .comparison-cell:last-child {
    border-right: none;
  }

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

  .comparison-header .comparison-cell {
    font-weight: 600;
    color: #ffffff;
    background: rgba(9, 12, 30, 0.9);
    display: block;
  }

  .comparison-cell.comparison-highlight {
    background: rgba(59, 130, 246, 0.25);
    border-right: 2px solid rgba(59, 130, 246, 0.6) !important;
    border-left: 2px solid rgba(59, 130, 246, 0.6) !important;
    color: #ffffff;
    font-weight: 600;
  }

  .comparison-header .comparison-cell.comparison-highlight {
    border-top: 2px solid rgba(59, 130, 246, 0.6);
  }

  .comparison-row:last-child .comparison-cell.comparison-highlight {
    border-bottom: 2px solid rgba(59, 130, 246, 0.6);
  }

  .comparison-cell.comparison-label {
    font-weight: 500;
    color: #e8edff;
  }

  .comparison-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .comparison-icon.check {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
  }

  .comparison-icon.cross {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
  }

  /* Pricing Section */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
  }

  /* Single-plan pricing layout */
  .pricing-grid.pricing-grid-one {
    grid-template-columns: minmax(0, 520px);
    justify-content: center;
  }

  .pricing-card {
    position: relative;
    padding: 32px 24px;
    background: rgba(9, 12, 30, 0.6);
    border: 1px solid rgba(200, 220, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
  }

  .pricing-card:hover {
    border-color: rgba(200, 220, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .pricing-card.pricing-featured {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.1);
  }

  .pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .pricing-tier {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
  }

  .pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
  }

  .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
  }

  .price-period {
    font-size: 1rem;
    color: #93c5fd;
  }

  .pricing-description {
    font-size: 0.9rem;
    color: #b8c4ff;
    margin-bottom: 24px;
  }

  .pricing-fairuse {
    margin: 0 0 18px;
    font-size: 0.9rem;
    color: #d2d7ff;
    opacity: 0.95;
    line-height: 1.6;
  }

  .pricing-footnote {
    margin: 14px 0 0;
    font-size: 0.85rem;
    color: rgba(210, 215, 255, 0.75);
    line-height: 1.5;
  }

  .pricing-footnote a {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 600;
  }

  .pricing-footnote a:hover {
    color: #ffffff;
    text-decoration: underline;
  }

  .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
  }

  .pricing-features li {
    padding: 8px 0;
    color: #d2d7ff;
    font-size: 0.9rem;
    position: relative;
    padding-left: 24px;
  }

  .pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 700;
  }

  .pricing-cta {
    width: 100%;
    justify-content: center;
  }

  /* Trust & Security */
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
  }

  .trust-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(9, 12, 30, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
  }

  .trust-item:hover {
    background: rgba(9, 12, 30, 0.6);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
  }

  .trust-icon {
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
  }

  .trust-icon svg {
    width: 24px;
    height: 24px;
  }

  .trust-item h3 {
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0 0 10px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .trust-item p {
    font-size: 0.95rem;
    color: #d2d7ff;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
  }

  /* Waitlist Modal */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
  }

  .modal-overlay.active {
    display: flex;
    opacity: 1;
  }

  .modal-content {
    background: linear-gradient(135deg, rgba(9, 12, 30, 0.95), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(200, 220, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(200, 220, 255, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }

  .modal-overlay.active .modal-content {
    transform: scale(1);
  }

  .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(200, 220, 255, 0.1);
    border: 1px solid rgba(200, 220, 255, 0.2);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #d2d7ff;
    transition: all 0.2s ease;
  }

  .modal-close:hover {
    background: rgba(200, 220, 255, 0.2);
    border-color: rgba(200, 220, 255, 0.3);
    color: #ffffff;
  }

  .modal-header {
    text-align: center;
    margin-bottom: 32px;
  }

  .modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
  }

  .modal-subtitle {
    font-size: 1rem;
    color: #d2d7ff;
    margin: 0;
    opacity: 0.9;
  }

  .waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

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

  .form-group label {
    font-size: 0.9rem;
    color: #d2d7ff;
    font-weight: 500;
  }

  .form-group input {
    padding: 12px 16px;
    background: rgba(9, 12, 30, 0.8);
    border: 1px solid rgba(200, 220, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.2s ease;
  }

  .form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(9, 12, 30, 0.95);
  }

  .form-group input::placeholder {
    color: rgba(210, 215, 255, 0.5);
  }

  .form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 8px;
  }

  .form-actions .cta-button {
    min-width: 120px;
  }

  .edit-entry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Simple Edit Modal - matches entries table style */
  .edit-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.2s ease;
    padding: 20px;
  }

  .edit-modal-overlay.active {
    display: flex;
    opacity: 1;
  }

  .edit-modal-content {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
    transition: transform 0.2s ease;
  }

  .edit-modal-overlay.active .edit-modal-content {
    transform: scale(1);
  }

  .edit-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
  }

  .edit-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
  }

  .edit-modal-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
  }

  .edit-modal-close:hover {
    background: #f5f5f5;
    color: #222;
  }

  .edit-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
  }

  .edit-form-group:last-of-type {
    margin-bottom: 0;
  }

  .edit-form-group label {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .edit-form-group input {
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #222;
    transition: border-color 0.2s ease;
  }

  .edit-form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }

  .edit-form-group input::placeholder {
    color: #999;
  }

  .edit-form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
  }

  .edit-btn-cancel,
  .edit-btn-save {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid;
  }

  .edit-btn-cancel {
    background: #ffffff;
    color: #666;
    border-color: #ddd;
  }

  .edit-btn-cancel:hover {
    background: #f5f5f5;
    border-color: #bbb;
    color: #222;
  }

  .edit-btn-save {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
  }

  .edit-btn-save:hover {
    background: #2563eb;
    border-color: #2563eb;
  }

  .waitlist-submit {
    width: 100%;
    margin-top: 8px;
  }

  .waitlist-privacy {
    font-size: 0.85rem;
    color: rgba(210, 215, 255, 0.7);
    text-align: center;
    margin: 0;
    line-height: 1.5;
  }

  .waitlist-success {
    text-align: center;
    padding: 20px 0;
  }

  .success-icon {
    color: #10b981;
    margin: 0 auto 24px;
    display: block;
    animation: scaleIn 0.3s ease;
  }

  @keyframes scaleIn {
    from {
      transform: scale(0);
    }
    to {
      transform: scale(1);
    }
  }

  .waitlist-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
  }

  .waitlist-success p {
    font-size: 1rem;
    color: #d2d7ff;
    margin: 0;
    opacity: 0.9;
  }

  @media (max-width: 768px) {
    .modal-content {
      padding: 32px 24px;
      max-width: 100%;
    }

    .modal-title {
      font-size: 1.75rem;
    }

    .modal-close {
      top: 12px;
      right: 12px;
    }
  }

  /* Sticky CTA Bar */
  .sticky-cta-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, rgba(9, 12, 30, 0.98), rgba(15, 23, 42, 0.98));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 220, 255, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 12px 0;
  }

  .sticky-cta-bar.visible {
    transform: translateY(0);
    opacity: 1;
  }

  .sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .sticky-cta-text {
    flex: 1;
  }

  .sticky-cta-label {
    font-size: 0.95rem;
    color: #d2d7ff;
    font-weight: 500;
  }

  .sticky-cta-button {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  @media (max-width: 768px) {
    .sticky-cta-content {
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
    }

    .sticky-cta-text {
      text-align: center;
    }

    .sticky-cta-label {
      font-size: 0.9rem;
    }

    .sticky-cta-button {
      width: 100%;
    }
  }

  /* Footer */
  .site-footer {
    margin-top: 96px;
    padding: 64px 0 32px;
    border-top: 1px solid rgba(200, 220, 255, 0.1);
    background: rgba(5, 8, 22, 0.3);
    backdrop-filter: blur(10px);
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-brand .brand {
    margin-bottom: 0;
  }

  .footer-tagline {
    font-size: 0.95rem;
    color: #d2d7ff;
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

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

  .footer-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-list li {
    margin: 0;
  }

  .footer-list a {
    color: #d2d7ff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    opacity: 0.85;
  }

  .footer-list a:hover {
    color: #ffffff;
    opacity: 1;
  }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(200, 220, 255, 0.1);
  }

  .footer-copyright {
    font-size: 0.85rem;
    color: #d2d7ff;
    opacity: 0.7;
    margin: 0;
    text-align: center;
    line-height: 1.6;
  }

  .footer-copyright strong {
    color: #ffffff;
    opacity: 0.9;
    font-weight: 600;
  }

  @media (max-width: 968px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }

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

  @media (max-width: 768px) {
    .site-footer {
      margin-top: 64px;
      padding: 48px 0 24px;
    }

    .footer-content {
      gap: 32px;
      margin-bottom: 32px;
    }

    .footer-links {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .footer-bottom {
      padding-top: 24px;
    }
  }
  