/* ==========================================================================
   WtspCRM - Ultra Modern Glassmorphism Landing Page Stylesheet
   ========================================================================== */

:root {
  --landing-max-w: 1240px;
  --nav-height: 76px;
  --glow-emerald: rgba(0, 168, 132, 0.45);
  --glow-blue: rgba(56, 189, 248, 0.35);
  --glow-purple: rgba(168, 85, 247, 0.3);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.landing-body {
  margin: 0;
  padding: 0;
  background-color: #0b141a;
  background-image: 
    radial-gradient(circle at 10% 12%, rgba(0, 168, 132, 0.18) 0%, transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.14) 0%, transparent 48%),
    radial-gradient(circle at 50% 55%, rgba(168, 85, 247, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 20% 85%, rgba(0, 168, 132, 0.12) 0%, transparent 45%);
  background-attachment: fixed;
  color: #e9edef;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.landing-container {
  max-width: var(--landing-max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   1. Floating Glass Navbar
   ========================================================================== */
.landing-nav-wrapper {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
}

.landing-nav {
  max-width: var(--landing-max-w);
  margin: 0 auto;
  height: 64px;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navbar-glass-bg, rgba(8, 12, 22, 0.1));
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.landing-brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  filter: none !important;
  transition: opacity 0.2s ease;
}

.landing-brand:hover .landing-brand-logo {
  opacity: 0.88;
  transform: none;
}

.landing-brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 60%, #00a884 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-nav-link {
  color: #aebac1;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.landing-nav-link:hover {
  color: #00a884;
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Desktop & Mobile Display Utilities */
.desktop-only {
  display: inline-flex;
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4.5px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: #fff;
  outline: none;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Active state: morph 3 bars to an X */
.mobile-menu-btn.active .hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Dropdown Menu Container (Base) */
.mobile-nav-dropdown {
  display: none;
}

/* Glass Buttons */
.btn-glass-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e9edef;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-glass-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.btn-glass-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.35rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #00a884 0%, #008f6f 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px var(--glow-emerald);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-glass-primary:hover {
  background: linear-gradient(135deg, #02b68f 0%, #009c7a 100%);
  box-shadow: 0 6px 28px rgba(0, 168, 132, 0.6);
  transform: translateY(-2px);
  color: #fff;
}

.btn-glass-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  border-radius: 9999px;
}

/* ==========================================================================
   2. Hero Section
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 6rem;
  position: relative;
}

.hero-badge-container {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.95rem;
  background: rgba(0, 168, 132, 0.12);
  border: 1px solid rgba(0, 168, 132, 0.32);
  backdrop-filter: blur(12px);
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 600;
  color: #25d366;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 168, 132, 0.2);
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 10px #25d366;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 14px #25d366; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1.25rem 0;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-title-gradient {
  background: linear-gradient(135deg, #00a884 0%, #38bdf8 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #8696a0;
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-proof-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
}

.hero-proof-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.hero-proof-label {
  font-size: 0.78rem;
  color: #8696a0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Hero Visual Showcase */
.hero-visual-card {
  position: relative;
  background: rgba(17, 27, 33, 0.75);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 168, 132, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-svg-anim {
  width: 280px;
  height: 280px;
  max-width: 100%;
  filter: drop-shadow(0 15px 35px rgba(0, 168, 132, 0.45));
  transition: transform 0.4s ease;
}

.hero-visual-card:hover .hero-svg-anim {
  transform: scale(1.05);
}

.hero-floating-pill {
  position: absolute;
  background: rgba(31, 44, 52, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  animation: float 4s ease-in-out infinite;
}

.pill-top-left {
  top: 1.75rem;
  left: 1.25rem;
  animation-delay: 0s;
}

.pill-bottom-right {
  bottom: 1.75rem;
  right: 1.25rem;
  animation-delay: 2s;
}

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

.pill-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 168, 132, 0.2);
  color: #00a884;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.pill-text-strong {
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  display: block;
}

.pill-text-sub {
  font-size: 0.75rem;
  color: #8696a0;
}

/* ==========================================================================
   3. Interactive WhatsApp AI Demo Simulator
   ========================================================================== */
.demo-section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00a884;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: #8696a0;
  line-height: 1.6;
}

.chat-simulator-card {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(17, 27, 33, 0.85);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.simulator-header {
  padding: 1.15rem 1.5rem;
  background: rgba(32, 44, 51, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.simulator-contact {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.simulator-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a884, #008069);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 12px var(--glow-emerald);
}

.simulator-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

.simulator-status {
  font-size: 0.75rem;
  color: #25d366;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.simulator-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Chat Bubbles */
.sim-msg {
  max-width: 78%;
  padding: 0.85rem 1.15rem;
  border-radius: 16px;
  font-size: 0.92rem;
  position: relative;
  line-height: 1.5;
}

.sim-msg-inbound {
  align-self: flex-start;
  background: rgba(32, 44, 51, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e9edef;
  border-bottom-left-radius: 4px;
}

.sim-msg-outbound {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(0, 92, 75, 0.92) 0%, rgba(0, 130, 107, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 92, 75, 0.35);
}

.sim-msg-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 0.35rem;
}

.sim-photo-card {
  margin-top: 0.65rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
}

.sim-photo-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  display: block;
}

.sim-photo-desc {
  padding: 0.65rem 0.85rem;
  font-size: 0.825rem;
  background: rgba(17, 27, 33, 0.9);
}

/* ==========================================================================
   4. Feature Cards Grid with Animated SVGs
   ========================================================================== */
.features-section {
  padding: 6rem 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: rgba(17, 27, 33, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.25rem 1.75rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 132, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 168, 132, 0.15);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.feature-svg-wrapper {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-svg-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.feature-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.65rem 0;
  letter-spacing: -0.01em;
}

.feature-card-desc {
  font-size: 0.92rem;
  color: #8696a0;
  line-height: 1.6;
  margin: 0;
}

.feature-tag {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #00a884;
}

/* ==========================================================================
   5. Pricing Section
   ========================================================================== */
.pricing-section {
  padding: 6rem 0;
  position: relative;
}

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

.pricing-card {
  background: rgba(17, 27, 33, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
  background: rgba(20, 35, 42, 0.85);
  border: 1px solid rgba(0, 168, 132, 0.45);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.65), 0 0 35px rgba(0, 168, 132, 0.2);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00a884, #008f6f);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.95rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px var(--glow-emerald);
}

.pricing-tier-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.pricing-tier-desc {
  font-size: 0.875rem;
  color: #8696a0;
  margin-bottom: 1.75rem;
}

.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #8696a0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #d1d7db;
}

.pricing-check {
  color: #00a884;
  flex-shrink: 0;
}

/* ==========================================================================
   6. FAQ & Final CTA
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: rgba(17, 27, 33, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-question {
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
}

.faq-answer {
  padding: 0 1.5rem 1.35rem 1.5rem;
  color: #8696a0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Final Banner */
.cta-banner {
  margin: 4rem 0 6rem 0;
  background: linear-gradient(135deg, rgba(0, 92, 75, 0.45) 0%, rgba(17, 27, 33, 0.85) 100%);
  border: 1px solid rgba(0, 168, 132, 0.35);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 32px;
  padding: 4rem 2.5rem;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 168, 132, 0.15);
}

.cta-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem 0;
}

.cta-banner p {
  color: #aebac1;
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 2.25rem auto;
}

/* ==========================================================================
   7. Glass Footer
   ========================================================================== */
.landing-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 20, 26, 0.8);
  backdrop-filter: blur(20px);
  padding: 3rem 0 2rem 0;
  color: #8696a0;
  font-size: 0.875rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}

/* ==========================================================================
   8. Comprehensive Responsive Media Queries
   Ultra-modern mobile styling, fluid typography, touch optimization & zero overflow
   ========================================================================== */

/* --- Tablet / Medium Devices (<= 1024px) --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-proof-bar {
    justify-content: center;
  }

  .hero-visual-card {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

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

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

  .pricing-card.featured {
    transform: none;
  }
}

/* --- Mobile Navigation Breakpoint (<= 880px) --- */
@media (max-width: 880px) {
  .landing-desktop-nav,
  .desktop-only {
    display: none !important;
  }

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

  .cta-extra-text {
    display: none !important;
  }

  .landing-nav-actions #nav-cta-btn {
    padding: 0.45rem 0.95rem;
    font-size: 0.8rem;
    font-weight: 600;
  }

  /* Mobile Glass Dropdown Menu Overlay */
  .mobile-nav-dropdown {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: 1.5rem;
    right: 1.5rem;
    max-width: calc(var(--landing-max-w) - 3rem);
    margin: 0 auto;
    background: rgba(8, 12, 22, 0.94);
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 20px 60px rgba(0, 0, 0, 0.7);
    padding: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1002;
  }

  .mobile-nav-dropdown.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link:active {
    background: rgba(0, 168, 132, 0.12);
    border-color: rgba(0, 168, 132, 0.3);
    color: #25d366;
  }

  .mobile-link-icon {
    font-size: 1.15rem;
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* --- Small Tablets & Phones (<= 768px) --- */
@media (max-width: 768px) {
  /* Tighter, balanced rhythm */
  .landing-container {
    padding: 0 1.25rem;
  }

  .landing-nav-wrapper {
    padding: 0 1.25rem;
    top: 0.75rem;
  }

  .landing-nav {
    height: 58px;
    padding: 0 1.1rem;
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 3.5rem;
  }

  .features-section,
  .pricing-section,
  .faq-section {
    padding: 3.5rem 0;
  }

  /* Fluid Hero Typography */
  .hero-title {
    font-size: clamp(2.1rem, 6.8vw, 2.8rem);
    line-height: 1.14;
    letter-spacing: -0.025em;
  }

  .hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }

  /* Full-width Touch Buttons on Mobile */
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
    margin-bottom: 2rem;
  }

  .hero-cta-group .btn-glass-lg {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding: 0.85rem 1.5rem;
    font-size: 0.98rem;
  }

  /* Clean 2x2 Grid for Metric Proofs */
  .hero-proof-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
    padding-top: 1.5rem;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-proof-item {
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 0.75rem 0.5rem;
  }

  .hero-proof-number {
    font-size: 1.45rem;
  }

  .hero-proof-label {
    font-size: 0.72rem;
  }

  /* Visual Card Touch Adaptation */
  .hero-visual-card {
    padding: 2.25rem 1.25rem;
    border-radius: 26px;
    max-width: 440px;
  }

  .hero-svg-anim {
    width: min(240px, 62vw);
    height: auto;
  }

  .hero-floating-pill {
    padding: 0.45rem 0.75rem;
    border-radius: 12px;
    gap: 0.5rem;
  }

  .pill-top-left {
    top: 1rem;
    left: 0.85rem;
  }

  .pill-bottom-right {
    bottom: 1rem;
    right: 0.85rem;
  }

  .pill-icon-box {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .pill-text-strong {
    font-size: 0.8rem;
  }

  .pill-text-sub {
    font-size: 0.68rem;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 5.8vw, 2.25rem);
    line-height: 1.2;
  }

  .section-desc {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* Features Single Column */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feature-card {
    padding: 1.75rem 1.35rem;
    border-radius: 20px;
  }

  .feature-svg-wrapper {
    height: 130px;
    margin-bottom: 1.25rem;
  }

  .feature-card-title {
    font-size: 1.22rem;
  }

  .feature-card-desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  /* Pricing Single Column */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
    gap: 1.75rem;
  }

  .pricing-card {
    padding: 2.25rem 1.5rem;
    border-radius: 24px;
  }

  .pricing-card .btn-glass-ghost,
  .pricing-card .btn-glass-primary {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    min-height: 46px;
  }

  .pricing-price {
    font-size: 2.45rem;
  }

  /* FAQ Touch Items */
  .faq-question {
    padding: 1.15rem 1.25rem;
    font-size: 0.98rem;
    gap: 0.75rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  /* Final CTA Banner */
  .cta-banner {
    padding: 3rem 1.5rem;
    border-radius: 26px;
    margin: 2.5rem 0 4rem 0;
  }

  .cta-banner h2 {
    font-size: clamp(1.75rem, 5.8vw, 2.3rem);
    line-height: 1.2;
  }

  .cta-banner p {
    font-size: 0.98rem;
    margin-bottom: 1.75rem;
  }

  .cta-banner .btn-glass-lg {
    width: 100%;
    max-width: 380px;
    box-sizing: border-box;
    justify-content: center;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-content div:nth-child(2) {
    justify-content: center;
    gap: 1.25rem;
  }
}

/* --- Ultra Compact Mobile Devices (<= 480px) --- */
@media (max-width: 480px) {
  .landing-container {
    padding: 0 1rem;
  }

  .landing-nav-wrapper {
    padding: 0 0.75rem;
    top: 0.5rem;
  }

  .landing-nav {
    height: 54px;
    padding: 0 0.85rem;
  }

  .landing-brand {
    gap: 0.55rem;
  }

  .landing-brand-logo {
    width: 28px;
    height: 28px;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .landing-brand-name {
    font-size: 1.08rem;
  }

  .landing-nav-actions #nav-cta-btn {
    padding: 0.38rem 0.75rem;
    font-size: 0.75rem;
  }

  .mobile-menu-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .mobile-nav-dropdown {
    left: 0.75rem;
    right: 0.75rem;
    max-width: calc(100% - 1.5rem);
    padding: 1rem;
    border-radius: 20px;
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 1.25rem);
    padding-bottom: 2.5rem;
  }

  .hero-badge-container {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
    gap: 0.45rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .hero-proof-bar {
    gap: 0.75rem;
  }

  .hero-proof-number {
    font-size: 1.3rem;
  }

  .hero-proof-label {
    font-size: 0.68rem;
  }

  .hero-visual-card {
    padding: 1.75rem 0.85rem;
    border-radius: 20px;
  }

  .hero-svg-anim {
    width: min(200px, 58vw);
  }

  .hero-floating-pill {
    padding: 0.35rem 0.6rem;
    border-radius: 10px;
    gap: 0.4rem;
  }

  .pill-top-left {
    top: 0.65rem;
    left: 0.65rem;
  }

  .pill-bottom-right {
    bottom: 0.65rem;
    right: 0.65rem;
  }

  .pill-icon-box {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .pill-text-strong {
    font-size: 0.72rem;
  }

  .pill-text-sub {
    font-size: 0.62rem;
  }

  .feature-card {
    padding: 1.35rem 1.15rem;
    border-radius: 18px;
  }

  .feature-svg-wrapper {
    height: 110px;
    margin-bottom: 1rem;
  }

  .pricing-card {
    padding: 1.75rem 1.15rem;
    border-radius: 20px;
  }

  .pricing-price {
    font-size: 2.15rem;
  }

  .cta-banner {
    padding: 2.25rem 1.15rem;
    border-radius: 20px;
    margin: 2rem 0 3rem 0;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    padding: 1rem 1.1rem;
    font-size: 0.92rem;
  }
}
