/* ===== SKALLIX LANDING — REDESIGN v2 ===== */
:root {
  --navy: #0f2341;
  --navy-light: #1a3562;
  --blue: #3b82f6;
  --blue-bright: #2563eb;
  --blue-light: #60a5fa;
  --blue-pale: #eff6ff;
  --blue-glow: rgba(59, 130, 246, 0.15);
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --green: #10b981;
  --green-light: #d1fae5;
  --amber: #f59e0b;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-blue: 0 8px 30px rgba(59, 130, 246, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--white);
  color: var(--gray-600);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
.container-sm {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== NAV ===== */
.ln-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
.ln-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.ln-nav .container {
  display: flex;
  align-items: center;
  height: 72px;
  justify-content: space-between;
}
.ln-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ln-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 35, 65, 0.15);
}
.ln-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ln-logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.ln-nav-links {
  display: flex;
  gap: 32px;
}
.ln-nav-links a {
  color: var(--gray-500);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.ln-nav-links a:hover,
.ln-nav-links a.active {
  color: var(--navy);
}
.ln-nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
}
.ln-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-ghost {
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 10px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover {
  color: var(--navy);
  background: var(--gray-100);
}
.btn-nav-phone {
  color: var(--navy);
  font-weight: 600;
}
.btn-nav-phone i {
  color: var(--blue);
}
.btn-primary {
  background: var(--blue);
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.35);
}
.btn-primary:hover {
  background: var(--blue-bright);
  color: white;
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.btn-outline {
  background: var(--white);
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
  transform: translateY(-1px);
}
.btn-lg {
  padding: 15px 32px;
  font-size: 16px;
  border-radius: 12px;
}
.ln-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 22px;
  cursor: pointer;
}
.mobile-only-link {
  display: none !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 170px 0 110px;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    var(--navy) 0%,
    #1a3a63 40%,
    var(--blue-bright) 100%
  );
}
.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.25) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: white;
}
.hero .subtext {
  color: rgba(255, 255, 255, 0.8);
}
.hero .btn-outline,
.section-navy .btn-outline,
.section-navy-glow .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}
.hero .btn-outline:hover,
.section-navy .btn-outline:hover,
.section-navy-glow .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* Hero animated background */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  animation: float 20s infinite ease-in-out;
}
.hero-particle:nth-child(1) {
  width: 160px;
  height: 160px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.hero-particle:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 55%;
  right: 10%;
  animation-delay: -4s;
}
.hero-particle:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 28%;
  animation-delay: -8s;
  background: rgba(59, 130, 246, 0.06);
}
.hero-particle:nth-child(4) {
  width: 50px;
  height: 50px;
  bottom: 20%;
  left: 18%;
  animation-delay: -12s;
}

/* Animated grid lines */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

/* Glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
  background: rgba(59, 130, 246, 0.25);
  animation: orbPulse 6s infinite ease-in-out;
}
.hero-orb-2 {
  width: 300px;
  height: 300px;
  bottom: -15%;
  left: -10%;
  background: rgba(99, 102, 241, 0.2);
  animation: orbPulse 8s infinite ease-in-out 2s;
}
@keyframes orbPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

/* Typing cursor effect for hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 8px 18px 8px 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  animation: badgeFadeIn 1s ease-out;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: dotPulse 2s infinite;
}
.hero-app-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 auto 56px;
}
.hero-app-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  letter-spacing: 0.3px;
}
.hero-app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero-app-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.hero-app-icon:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
@keyframes badgeFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-25px) scale(1.04);
  }
}

/* Counter animation helper */
.stat-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 110px 0;
}
.section-sm {
  padding: 64px 0;
}
.section-gray {
  background: var(--gray-50);
}
.section-blue {
  background: var(--blue-pale);
}
.section-navy {
  background: linear-gradient(165deg, var(--navy) 0%, #1a3a63 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-navy::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.section-navy .heading-lg,
.section-navy .heading-md {
  color: white;
}
.section-navy .subtext {
  color: rgba(255, 255, 255, 0.75);
}
.section-navy .eyebrow {
  color: var(--blue-light);
}

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.heading-xl {
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2px;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.heading-lg {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--gray-900);
  margin-bottom: 18px;
}
.heading-md {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.subtext {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
}
.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-48 {
  margin-bottom: 48px;
}
.mb-64 {
  margin-bottom: 64px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-64 {
  margin-top: 64px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.flex {
  display: flex;
}
.gap-8 {
  gap: 8px;
}
.gap-12 {
  gap: 12px;
}
.gap-16 {
  gap: 16px;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.flex-wrap {
  flex-wrap: wrap;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.card:hover::before {
  transform: scaleX(1);
}
.card:hover {
  border-color: var(--blue);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.12);
  transform: translateY(-6px);
}
.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  background: var(--blue-pale);
  color: var(--blue);
  transition: all 0.35s ease;
}
.card:hover .card-icon {
  background: var(--blue);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}
.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stats-cell {
  padding: 40px;
  text-align: center;
  position: relative;
}
.stats-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}
.stat-label {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 6px;
  font-weight: 500;
}

.hero .stats-row {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}
.hero .stats-cell:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.1);
}
.hero .stat-num {
  color: white;
}
.hero .stat-label {
  color: rgba(255, 255, 255, 0.65);
}

/* ===== FEATURE LIST ===== */
.feat-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feat-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
  color: var(--gray-500);
  align-items: flex-start;
  line-height: 1.55;
}
.feat-list li:last-child {
  border-bottom: none;
}
.feat-list li i {
  color: var(--green);
  font-size: 11px;
  min-width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-list li strong {
  color: var(--gray-800);
  font-weight: 700;
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}
.feat-list li .feat-text {
  display: flex;
  flex-direction: column;
}

.section-navy .feat-list li {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}
.section-navy .feat-list li strong {
  color: white;
}
.section-navy .feat-list li i {
  background: rgba(16, 185, 129, 0.15);
}
.section-gray .feat-list li {
  border-color: var(--gray-200);
}

/* ===== DEMO BOX ===== */
.demo-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s;
}
.demo-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.demo-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.demo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}
.demo-row:last-of-type {
  margin-bottom: 0;
}
.demo-row span:first-child {
  color: var(--gray-700);
  font-weight: 500;
}
.demo-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  color: #fff;
}
.demo-msg {
  background: var(--green-light);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-weight: 600;
}

.section-navy .demo-box {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.section-navy .demo-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.section-navy .demo-row {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}
.section-navy .demo-row span:first-child {
  color: rgba(255, 255, 255, 0.9);
}
.section-navy .demo-msg {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.15);
}

/* ===== FLOATING PROMO BANNER ===== */
.floating-promo {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 900px;
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.4s;
  pointer-events: none;
}
.floating-promo.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.floating-promo-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #0f2341 0%, #1a3a63 50%, #2563eb 100%);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  box-shadow:
    0 20px 60px rgba(15, 35, 65, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  position: relative;
  overflow: hidden;
}
.floating-promo-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.02) 60px,
    rgba(255, 255, 255, 0.02) 61px
  );
}
.floating-promo-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s;
}
.floating-promo-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.promo-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  animation: promo-badge-pulse 2s ease infinite;
}
@keyframes promo-badge-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.promo-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.promo-title {
  font-size: 17px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.promo-highlight {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.promo-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
.promo-cta {
  flex-shrink: 0;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  background: white !important;
  color: #0f2341 !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  font-size: 15px !important;
  padding: 12px 24px !important;
}
/* Nav demo button */
.btn-nav-demo {
  animation: nav-demo-glow 2s ease infinite;
  font-weight: 700 !important;
  letter-spacing: 0.3px;
}
@keyframes nav-demo-glow {
  0%,
  100% {
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.55);
  }
}

/* ===== DEMO FORM (Multi-step) ===== */
.demo-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}
.demo-form-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}
.form-step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.3s;
}
.form-step-indicator .step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  background: var(--gray-100);
  color: var(--gray-400);
  transition: all 0.3s;
}
.form-step-indicator .step-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  transition: all 0.3s;
}
.form-step-indicator.active .step-num {
  background: var(--blue);
  color: white;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}
.form-step-indicator.active .step-label {
  color: var(--gray-800);
}
.form-step-line {
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  margin: 0 8px;
}
.form-step-panel {
  display: none;
}
.form-step-panel.active {
  display: block;
  animation: fadeSlideUp 0.4s ease;
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.calendar-embed-wrapper {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-200);
}
.calendar-step-card {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}
.calendar-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  animation: calendar-pulse 2s ease infinite;
}
@keyframes calendar-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
  }
}
.calendar-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.calendar-feat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-500);
}
.calendar-feat i {
  color: var(--green);
  font-size: 13px;
}

/* Demo Date/Time Picker */
.demo-picker-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  margin-bottom: 8px;
}
.demo-date-section,
.demo-time-section {
  min-height: 280px;
}
.demo-mini-calendar {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px;
  user-select: none;
}
.mc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mc-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-800);
}
.mc-nav {
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-500);
  transition: all 0.15s;
}
.mc-nav:hover {
  background: white;
  border-color: var(--blue);
  color: var(--blue);
}
.mc-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 4px;
}
.mc-days-header span {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  padding: 4px 0;
}
.mc-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.mc-day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.15s;
}
.mc-day:hover:not(.mc-disabled):not(.mc-selected):not(.mc-empty) {
  background: var(--blue-light);
  color: white;
}
.mc-day.mc-disabled {
  color: var(--gray-300);
  cursor: default;
}
.mc-day.mc-empty {
  cursor: default;
}
.mc-day.mc-selected {
  background: var(--blue);
  color: white;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}
.mc-day.mc-today:not(.mc-selected) {
  border: 2px solid var(--blue);
  color: var(--blue);
}
.demo-time-slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 310px;
  overflow-y: auto;
  padding-right: 4px;
}
.demo-time-slots::-webkit-scrollbar {
  width: 4px;
}
.demo-time-slots::-webkit-scrollbar-track {
  background: transparent;
}
.demo-time-slots::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}
.time-slot-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: white;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.15s;
}
.time-slot-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #eff6ff;
}
.time-slot-btn.selected {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Form wow effects */
.demo-form-card .form-group {
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  animation: form-field-appear 0.4s ease forwards;
}
.demo-form-card .form-row:nth-child(1) .form-group {
  animation-delay: 0.05s;
}
.demo-form-card .form-row:nth-child(2) .form-group {
  animation-delay: 0.15s;
}
.demo-form-card .form-row:nth-child(3) .form-group {
  animation-delay: 0.25s;
}
.demo-form-card .form-row:nth-child(4) .form-group {
  animation-delay: 0.35s;
}
.demo-form-card .form-row:nth-child(1) .form-group:nth-child(2) {
  animation-delay: 0.1s;
}
.demo-form-card .form-row:nth-child(2) .form-group:nth-child(2) {
  animation-delay: 0.2s;
}
.demo-form-card .form-row:nth-child(3) .form-group:nth-child(2) {
  animation-delay: 0.3s;
}
.demo-form-card .form-row:nth-child(4) .form-group:nth-child(2) {
  animation-delay: 0.4s;
}
@keyframes form-field-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.demo-form-card .form-group input:focus,
.demo-form-card .form-group select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow:
    0 0 0 4px var(--blue-glow),
    0 2px 8px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}
.demo-form-card .form-group input,
.demo-form-card .form-group select {
  transition: all 0.25s ease;
}

.demo-form-card .form-group label {
  transition: color 0.2s;
}
.demo-form-card .form-group:focus-within label {
  color: var(--blue);
}

/* Form field check animation */
.form-group.filled::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 38px;
  font-size: 12px;
  color: var(--green);
  animation: field-check 0.3s ease;
}
@keyframes field-check {
  from {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Form progress bar */
.form-progress {
  height: 4px;
  background: var(--gray-100);
  border-radius: 4px;
  margin-bottom: 24px;
  overflow: hidden;
}
.form-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 4px;
  transition: width 0.4s ease;
  width: 0%;
}

/* Completion celebrate */
.form-celebrate {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}
.confetti {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  animation: confetti-fall 1.5s ease forwards;
  opacity: 0;
}
@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(200px) rotate(720deg);
    opacity: 0;
  }
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-800);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--blue);
}
.faq-q i {
  color: var(--gray-400);
  font-size: 14px;
  transition:
    transform 0.3s,
    color 0.3s;
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
  color: var(--blue);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
}
.faq-a-inner {
  padding: 0 0 22px;
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ===== FORM ===== */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--gray-800);
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--blue-glow);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: var(--blue);
  color: white;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}
.btn-submit:hover {
  background: var(--blue-bright);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px;
}
.form-success.show {
  display: block;
}
.form-success i {
  font-size: 56px;
  color: var(--green);
  margin-bottom: 18px;
}

/* ===== PRICING ===== */
.price-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: all 0.35s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}
.price-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  background: linear-gradient(180deg, var(--blue-pale) 0%, var(--white) 40%);
  transform: scale(1.03);
}
.price-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.price-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 18px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}
.price-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.price-desc {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.price-amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -2px;
}
.price-period {
  font-size: 14px;
  color: var(--gray-500);
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.price-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-600);
  display: flex;
  gap: 12px;
  align-items: center;
}
.price-features li i {
  color: var(--green);
  font-size: 13px;
  min-width: 18px;
}
.price-card .btn-primary,
.price-card .btn-outline {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(
    165deg,
    var(--navy) 0%,
    #1a3a63 50%,
    var(--blue-bright) 100%
  );
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: orbPulse 6s infinite ease-in-out;
}
.cta-section .heading-lg {
  color: white;
  font-size: clamp(30px, 4vw, 44px);
}
.cta-section .subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}
.cta-section .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.cta-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}
.cta-section .btn-primary {
  background: white;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}
.cta-section .btn-primary:hover {
  background: var(--gray-100);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.ln-footer {
  border-top: 1px solid var(--gray-200);
  padding: 64px 0 32px;
  background: var(--gray-50);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand p {
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 16px;
  line-height: 1.7;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col a {
  display: block;
  color: var(--gray-500);
  font-size: 15px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--blue);
}
.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gray-600);
}

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

/* --- Tablet (max 991px) --- */
@media (max-width: 991px) {
  /* Nav */
  .ln-nav .container {
    height: 64px;
  }
  .ln-nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  .ln-nav-links.open {
    display: flex;
  }
  .ln-nav-links .mobile-only-link {
    display: flex !important;
  }
  .ln-mobile-toggle {
    display: block;
  }
  .ln-nav-right .btn-ghost {
    display: none;
  }
  .ln-nav-right .btn-nav-demo {
    font-size: 13px;
    padding: 8px 16px;
  }

  /* Grids */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  /* Hero */
  .hero {
    padding: 120px 0 70px;
  }
  .hero-orb {
    display: none;
  }
  .heading-xl {
    font-size: clamp(32px, 5vw, 50px);
    letter-spacing: -1.5px;
  }
  #heroTyping {
    font-size: 16px !important;
  }

  /* Stats */
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-cell {
    padding: 24px 16px;
  }
  .stat-num {
    font-size: 32px;
  }
  .stat-label {
    font-size: 12px;
  }
  .stats-cell:not(:last-child)::after {
    display: none;
  }
  .stats-cell:not(:last-child) {
    border-right: 1px solid var(--gray-200);
  }
  .hero .stats-cell:not(:last-child) {
    border-color: rgba(255, 255, 255, 0.1);
    border-bottom: none;
  }

  /* Sections */
  .section {
    padding: 80px 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Demo form */
  .demo-form-card {
    padding: 28px 24px;
  }
  .demo-form-wrapper {
    max-width: 100%;
  }

  /* Float icons hide on tablet for cleanliness */
  .float-icons {
    opacity: 0.4;
  }
}

/* --- Small Tablet / Large Phone (max 768px) --- */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .container-sm {
    padding: 0 20px;
  }

  /* Nav */
  .ln-nav .container {
    height: 60px;
  }
  .ln-nav-links {
    top: 60px;
  }
  .ln-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .ln-logo-text {
    font-size: 20px;
  }
  .ln-logo {
    gap: 10px;
  }

  /* Hero */
  .hero {
    padding: 100px 0 60px;
  }
  .hero h1 {
    max-width: 100% !important;
  }
  .heading-xl {
    font-size: 30px;
    letter-spacing: -1px;
    margin-bottom: 14px;
  }
  .hero-badge {
    font-size: 12px;
    padding: 6px 14px 6px 8px;
    margin-bottom: 18px;
  }
  #heroTyping {
    font-size: 15px !important;
    max-width: 100% !important;
    min-height: 48px;
  }

  /* Hero buttons */
  .hero .flex {
    flex-direction: column;
    gap: 12px !important;
    align-items: center;
  }
  .hero .btn-lg {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    font-size: 15px !important;
    padding: 14px 24px;
    text-align: center;
  }

  /* All flex button rows — center on mobile */
  .flex.justify-center {
    flex-direction: column;
    align-items: center;
  }
  .flex.justify-center .btn-lg {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
  }

  /* Stats — horizontal 3-col on tablet, stacked on phone */
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100% !important;
  }
  .stats-cell {
    padding: 20px 12px;
  }
  .stat-num {
    font-size: 26px;
  }
  .stat-label {
    font-size: 11px;
  }

  /* Grids */
  .grid-2 {
    gap: 32px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Sections */
  .section {
    padding: 64px 0;
  }
  .heading-lg {
    font-size: clamp(24px, 5vw, 36px);
  }
  .heading-md {
    font-size: 22px;
  }
  .subtext {
    font-size: 16px;
  }
  .eyebrow {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .mb-48 {
    margin-bottom: 32px;
  }
  .mb-64 {
    margin-bottom: 40px;
  }

  /* Cards */
  .card {
    padding: 24px;
  }
  .card h3 {
    font-size: 16px;
  }
  .card p {
    font-size: 14px;
  }
  .card-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
    margin-bottom: 14px;
  }

  /* Demo box */
  .demo-box {
    padding: 24px;
  }
  .demo-row {
    padding: 10px 14px;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .demo-badge {
    font-size: 11px;
    padding: 3px 10px;
  }
  .demo-msg {
    font-size: 13px;
    padding: 12px 14px;
  }
  .demo-label {
    font-size: 11px;
    margin-bottom: 14px;
  }

  /* Demo form */
  .demo-form-card {
    padding: 24px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-steps {
    gap: 0;
  }
  .form-step-line {
    width: 30px;
    margin: 0 4px;
  }
  .form-step-indicator {
    padding: 6px 10px;
  }
  .form-step-indicator .step-num {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .form-step-indicator .step-label {
    font-size: 12px;
  }

  /* Calendar card */
  .calendar-step-card {
    padding: 32px 20px;
  }
  .calendar-step-card h3 {
    font-size: 19px !important;
  }
  .calendar-step-card p {
    font-size: 14px !important;
  }
  .calendar-icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .calendar-features {
    gap: 8px;
    margin-top: 6px;
  }
  .calendar-feat {
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .demo-picker-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .demo-date-section,
  .demo-time-section {
    min-height: auto;
  }
  .mc-day {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .time-slot-btn {
    padding: 10px 12px;
    font-size: 14px;
  }
  .demo-time-slots {
    max-height: 220px;
  }

  /* Feat list */
  .feat-list li {
    font-size: 14px;
    gap: 12px;
    padding: 12px 0;
  }
  .feat-list li strong {
    font-size: 15px;
  }
  .feat-list li i {
    min-width: 20px;
    height: 20px;
    font-size: 10px;
  }

  /* Pricing */
  .price-card {
    padding: 28px;
  }
  .price-amount {
    font-size: 40px;
  }
  .price-name {
    font-size: 20px;
  }
  .price-features li {
    font-size: 14px;
  }
  .price-card.featured {
    transform: none;
  }
  .price-card.featured:hover {
    transform: translateY(-4px);
  }

  /* FAQ */
  .faq-q {
    font-size: 16px;
    padding: 18px 0;
  }
  .faq-a-inner {
    font-size: 14px;
  }

  /* CTA */
  .cta-section {
    padding: 80px 0;
  }
  .cta-section .heading-lg {
    font-size: clamp(24px, 5vw, 36px);
  }
  .cta-section .flex {
    flex-direction: column;
    gap: 12px !important;
    align-items: center;
  }
  .cta-section .btn-lg {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .ln-footer {
    padding: 48px 0 24px;
  }
  .footer-brand p {
    font-size: 14px;
  }

  /* Floating promo */
  .floating-promo {
    bottom: 12px;
    width: calc(100% - 24px);
  }
  .floating-promo-inner {
    flex-direction: column;
    text-align: center;
    padding: 18px 16px 14px;
    gap: 14px;
  }
  .promo-badge {
    display: none;
  }
  .promo-title {
    font-size: 15px !important;
  }
  .promo-sub {
    font-size: 12px !important;
  }
  .promo-cta {
    width: 100%;
    justify-content: center;
    font-size: 14px !important;
    padding: 12px 20px !important;
  }

  /* Morph blobs — smaller on mobile */
  .morph-blob {
    width: 180px;
    height: 180px;
  }

  /* Float icons */
  .float-icons {
    display: none;
  }

  /* Hero particles — smaller */
  .hero-particle:nth-child(1) {
    width: 80px;
    height: 80px;
  }
  .hero-particle:nth-child(2) {
    width: 60px;
    height: 60px;
  }
  .hero-particle:nth-child(3) {
    width: 50px;
    height: 50px;
  }
  .hero-particle:nth-child(4) {
    width: 30px;
    height: 30px;
  }

  /* Hero spotlight — smaller */
  .hero-spotlight {
    width: 200px;
    height: 200px;
  }

  /* Shimmer line */
  .shimmer-line {
    margin-bottom: 16px;
  }

  /* Heading underline hover effect — no hover on mobile */
  .heading-lg::after {
    display: none;
  }
}

/* --- Phone (max 480px) --- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .container-sm {
    padding: 0 16px;
  }

  /* Nav */
  .ln-nav .container {
    height: 56px;
    padding: 0 16px;
  }
  .ln-nav-links {
    top: 56px;
    padding: 16px;
  }
  .ln-logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .ln-logo-text {
    font-size: 18px;
  }
  .ln-logo {
    gap: 8px;
  }
  .ln-nav-right .btn-nav-demo {
    font-size: 12px;
    padding: 7px 12px;
    border-radius: 8px;
  }
  .ln-mobile-toggle {
    font-size: 20px;
  }

  /* Hero */
  .hero {
    padding: 90px 0 48px;
  }
  .heading-xl {
    font-size: 26px;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 5px 12px 5px 7px;
    margin-bottom: 14px;
  }
  .hero-badge-dot {
    width: 6px;
    height: 6px;
  }
  #heroTyping {
    font-size: 14px !important;
    min-height: 44px;
  }
  .hero .btn-lg {
    font-size: 14px !important;
    padding: 12px 20px;
    max-width: 100%;
  }
  .hero .mb-64 {
    margin-bottom: 28px !important;
  }

  /* Stats — stack vertically on small phone */
  .stats-row {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
  .stats-cell {
    padding: 16px 12px;
  }
  .stats-cell:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
  .hero .stats-cell:not(:last-child) {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .stat-num {
    font-size: 28px;
  }
  .stat-label {
    font-size: 12px;
  }

  /* Sections */
  .section {
    padding: 48px 0;
  }
  .heading-lg {
    font-size: 22px;
  }
  .heading-md {
    font-size: 20px;
  }
  .subtext {
    font-size: 15px;
  }
  .mb-48 {
    margin-bottom: 24px;
  }
  .mb-32 {
    margin-bottom: 20px;
  }

  /* Demo form */
  .demo-form-card {
    padding: 20px 14px;
  }
  .form-group {
    margin-bottom: 12px;
  }
  .form-group label {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 8px;
  }
  .btn-primary.btn-lg {
    padding: 13px 20px;
    font-size: 15px;
    border-radius: 10px;
  }

  /* Calendar card */
  .calendar-step-card {
    padding: 28px 16px;
  }
  .calendar-step-card h3 {
    font-size: 18px !important;
  }
  .calendar-step-card p {
    font-size: 13px !important;
    margin-bottom: 20px !important;
  }
  .calendar-icon-wrap {
    width: 52px;
    height: 52px;
    font-size: 20px;
    margin-bottom: 16px;
  }
  .calendar-feat {
    font-size: 12px;
    gap: 6px;
  }
  .mc-day {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .demo-mini-calendar {
    padding: 12px;
  }
  .time-slot-btn {
    padding: 10px;
    font-size: 13px;
  }

  /* Grid cards */
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 20px;
  }

  /* Pricing */
  .price-amount {
    font-size: 36px;
  }
  .price-card {
    padding: 24px 20px;
  }

  /* CTA */
  .cta-section {
    padding: 60px 0;
  }
  .cta-section .subtext {
    font-size: 15px;
  }

  /* Footer */
  .ln-footer {
    padding: 36px 0 20px;
  }
  .footer-grid {
    gap: 24px;
    margin-bottom: 32px;
  }

  /* Promo */
  .floating-promo {
    bottom: 8px;
    width: calc(100% - 16px);
  }
  .floating-promo-inner {
    padding: 14px 14px 12px;
    gap: 12px;
  }
  .promo-title {
    font-size: 14px !important;
    line-height: 1.4;
  }
  .promo-sub {
    font-size: 11px !important;
  }
  .promo-cta {
    font-size: 13px !important;
    padding: 10px 16px !important;
  }
  .floating-promo-close {
    width: 24px;
    height: 24px;
    top: 8px;
    right: 8px;
    font-size: 10px;
  }
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.15s;
}
.reveal-delay-2 {
  transition-delay: 0.3s;
}
.reveal-delay-3 {
  transition-delay: 0.45s;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
  }
  50% {
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.35);
  }
}

/* Tilt card effect */
.card-tilt {
  transition: transform 0.2s ease;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(
    135deg,
    var(--blue) 0%,
    var(--blue-light) 50%,
    #a78bfa 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shimmer line */
.shimmer-line {
  width: 80px;
  height: 3px;
  border-radius: 2px;
  margin: 0 auto 24px;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--blue-light),
    var(--blue)
  );
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* ===== WOW EFFECTS ===== */

/* Hero spotlight follow */
.hero-spotlight {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.12) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  transition:
    left 0.15s ease,
    top 0.15s ease;
}

/* Animated gradient border */
.glow-border {
  position: relative;
  overflow: hidden;
}
.glow-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: -1;
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    var(--blue),
    var(--blue-light),
    var(--green),
    var(--blue-bright),
    var(--blue)
  );
  animation: glow-spin 3s linear infinite;
  opacity: 0;
  transition: opacity 0.4s;
}
.glow-border:hover::before {
  opacity: 1;
}
.glow-border::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: inherit;
  z-index: -1;
}
@property --glow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes glow-spin {
  to {
    --glow-angle: 360deg;
  }
}

/* Floating tech icons */
.float-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.float-icon {
  position: absolute;
  font-size: 20px;
  color: rgba(96, 165, 250, 0.1);
  animation: float-drift 12s ease-in-out infinite;
}
.float-icon:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}
.float-icon:nth-child(2) {
  top: 60%;
  left: 5%;
  animation-delay: -2s;
}
.float-icon:nth-child(3) {
  top: 25%;
  right: 10%;
  animation-delay: -4s;
  font-size: 24px;
}
.float-icon:nth-child(4) {
  top: 70%;
  right: 8%;
  animation-delay: -6s;
}
.float-icon:nth-child(5) {
  top: 40%;
  left: 15%;
  animation-delay: -3s;
  font-size: 16px;
}
.float-icon:nth-child(6) {
  top: 80%;
  right: 15%;
  animation-delay: -5s;
  font-size: 18px;
}
@keyframes float-drift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.15;
  }
  25% {
    transform: translateY(-20px) rotate(10deg);
    opacity: 0.25;
  }
  50% {
    transform: translateY(-8px) rotate(-5deg);
    opacity: 0.2;
  }
  75% {
    transform: translateY(-25px) rotate(8deg);
    opacity: 0.3;
  }
}
.section-navy .float-icon {
  color: rgba(96, 165, 250, 0.15);
}

/* Typing cursor blink */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--blue-light);
  margin-left: 4px;
  vertical-align: text-bottom;
  border-radius: 2px;
  animation: blink-cursor 0.8s step-end infinite;
}
@keyframes blink-cursor {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Stats row animated border */
.stats-row-wow {
  position: relative;
}
.stats-row-wow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    rgba(59, 130, 246, 0.4),
    rgba(96, 165, 250, 0.1),
    rgba(16, 185, 129, 0.3),
    rgba(59, 130, 246, 0.4)
  );
  animation: glow-spin 4s linear infinite;
  z-index: -1;
}
.hero .stats-row-wow::before {
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    rgba(255, 255, 255, 0.3),
    rgba(96, 165, 250, 0.15),
    rgba(255, 255, 255, 0.2),
    rgba(96, 165, 250, 0.3)
  );
}

/* Demo box live-data pulse */
.demo-live {
  position: relative;
}
.demo-live .demo-live-dot {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: live-pulse 2s ease infinite;
}
.demo-live .demo-live-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: live-ring 2s ease infinite;
}
@keyframes live-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes live-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Animated row slide-in */
.demo-row-animate {
  opacity: 0;
  transform: translateX(-20px);
  animation: row-slide-in 0.5s ease forwards;
}
.demo-row-animate:nth-child(2) {
  animation-delay: 0.1s;
}
.demo-row-animate:nth-child(3) {
  animation-delay: 0.2s;
}
.demo-row-animate:nth-child(4) {
  animation-delay: 0.3s;
}
.demo-row-animate:nth-child(5) {
  animation-delay: 0.4s;
}
@keyframes row-slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Parallax depth layers */
.parallax-layer {
  transition: transform 0.2s ease;
}

/* Stat number glow on appear */
.stat-num.counted {
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  transition: text-shadow 0.5s;
}
.hero .stat-num.counted {
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

/* Interactive badge hover ripple */
.demo-badge {
  position: relative;
  overflow: hidden;
}
.demo-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  transition: transform 0.3s;
}
.demo-row:hover .demo-badge::after {
  transform: scale(1);
}

/* Animated underline on heading hover */
.heading-lg {
  position: relative;
  display: inline-block;
}
.heading-lg::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  transition:
    width 0.4s,
    left 0.4s;
}
.heading-lg:hover::after {
  width: 100%;
  left: 0;
}

/* Section-navy glow overlay */
.section-navy-glow {
  position: relative;
}
.section-navy-glow::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue),
    var(--blue-light),
    var(--blue),
    transparent
  );
  animation: shimmer 3s linear infinite;
  background-size: 200% 100%;
}
.section-navy-glow::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue-light),
    var(--blue),
    var(--blue-light),
    transparent
  );
  animation: shimmer 3s linear infinite reverse;
  background-size: 200% 100%;
}

/* CTA pulse ring — disabled */

/* Morphing blob behind demo boxes */
.morph-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.08) 0%,
    transparent 70%
  );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
.section-navy .morph-blob {
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.12) 0%,
    transparent 70%
  );
}
@keyframes morph {
  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg) scale(1);
  }
  25% {
    border-radius: 58% 42% 43% 57% / 64% 54% 46% 36%;
    transform: rotate(45deg) scale(1.05);
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    transform: rotate(90deg) scale(0.95);
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: rotate(135deg) scale(1.02);
  }
}

/* LP-SHOT-01 — Product screenshot frame
   Macro frame around a real product screenshot. Built to swap in for the
   old `.demo-box` placeholders without touching the existing 3D tilt JS
   (footer.ejs still queries `.demo-box, .price-card, .stats-row`), so
   `.product-shot.demo-box` keeps the hover-tilt and `.glow-border` works
   the same. The frame is intentionally subtle: 1 traffic-light row, a
   thin border, soft shadow, and the image fills the rest. The wrapper
   uses aspect-ratio so the layout doesn't jump while the PNG loads — see
   LCP guidance in routes/seo.js. */
.product-shot {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.product-shot:hover {
  box-shadow: 0 24px 60px rgba(15, 35, 65, 0.18);
}
.product-shot-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 14px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  border-bottom: 1px solid var(--gray-200);
}
.product-shot-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.product-shot-bar .dot.red {
  background: #ff5f57;
}
.product-shot-bar .dot.amber {
  background: #ffbd2e;
}
.product-shot-bar .dot.green {
  background: #28ca42;
}
.product-shot-bar .url {
  margin-left: 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  font-family: "Inter", monospace;
  letter-spacing: 0.2px;
}
.product-shot-bar .url i {
  font-size: 10px;
  color: var(--green);
  margin-right: 5px;
}
.product-shot-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 640;
  object-fit: cover;
  object-position: top center;
  background: var(--gray-50);
}
.product-shot-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.product-shot-caption i {
  color: var(--blue);
  font-size: 11px;
}

/* LP-WORKSPACE-01 — 4-workspace selector cards (Affiliate Network /
   Marketing Hub / Business CRM / Exactimate). Mirrors the colour
   palette of the real /select-department screen in the product. */
.workspace-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1080px) {
  .workspace-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 540px) {
  .workspace-grid {
    grid-template-columns: 1fr;
  }
}
.workspace-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.workspace-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 35, 65, 0.14);
}
.workspace-card .ws-tile {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-bottom: 16px;
}
.workspace-card.ws-affiliate .ws-tile {
  background: linear-gradient(135deg, #047857, #10b981);
}
.workspace-card.ws-marketing .ws-tile {
  background: linear-gradient(135deg, #ea580c, #f97316);
}
.workspace-card.ws-crm .ws-tile {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.workspace-card.ws-exactimate .ws-tile {
  background: linear-gradient(135deg, #be185d, #ec4899);
}
.workspace-card.ws-ai .ws-tile {
  background: linear-gradient(135deg, #4f46e5, #8b5cf6);
}
.workspace-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.workspace-card .ws-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.workspace-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.workspace-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
  padding: 4px 0;
  line-height: 1.5;
}
.workspace-card ul li i {
  color: var(--green);
  font-size: 11px;
  margin-top: 5px;
}

/* LP-LOGO-STRIP-01 — trust strip of compliance / tech logos */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 36px;
  opacity: 0.78;
}
.logo-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.3px;
}
.logo-strip-item i {
  font-size: 18px;
  color: var(--blue);
}

