/* ============================================
   TourSuite Landing Page – Styles
   ============================================ */

/* --- Landing Page Resets & Base --- */
.landing-page {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.landing-page body {
  height: auto;
}

/* --- Spacing Tokens --- */
.lp-section {
  padding: 80px 0;
  position: relative;
}

.lp-section.alt-bg {
  background-color: var(--hover-bg);
}

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

/* --- Sticky Navbar --- */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--bg-alpha);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease;
}

.lp-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.lp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.lp-nav-logo img {
  height: 40px;
  object-fit: contain;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lp-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.lp-nav-links a:hover {
  color: var(--text-main);
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: var(--font-family);
  letter-spacing: -0.01em;
}

.lp-btn-primary {
  background: linear-gradient(135deg, #1F3A5F 0%, #2E5C8A 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(31, 58, 95, 0.35);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 58, 95, 0.45);
  color: #fff;
}

.lp-btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border-color);
}

.lp-btn-outline:hover {
  background: var(--hover-bg);
  border-color: var(--text-muted);
  color: var(--text-main);
}

.lp-btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 8px 12px;
  font-size: 0.8rem;
}

.lp-btn-ghost:hover {
  color: var(--text-main);
}

.lp-btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: 10px;
}

.lp-btn-xl {
  padding: 18px 48px;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* --- Hamburger --- */
.lp-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
}

/* --- Hero Section --- */
.lp-hero {
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46,92,138,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31,58,95,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lp-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(31,58,95,0.08), rgba(46,92,138,0.12));
  border: 1px solid rgba(46,92,138,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--secondary-blue);
  margin-bottom: 24px;
}

[data-theme="dark"] .lp-hero-badge {
  background: linear-gradient(135deg, rgba(96,165,250,0.1), rgba(96,165,250,0.15));
  border-color: rgba(96,165,250,0.25);
}

.lp-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 20px;
}

.lp-hero-title span {
  background: linear-gradient(135deg, #2E5C8A, #1F3A5F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .lp-hero-title span {
  background: linear-gradient(135deg, #60A5FA, #93C5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.lp-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.lp-hero-trust {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-hero-trust svg {
  width: 14px;
  height: 14px;
  color: var(--success);
}

/* Hero Visual */
.lp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-hero-card {
  background: var(--card-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.06);
  padding: 32px;
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 2;
}

.lp-hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.lp-hero-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.lp-hero-card-line {
  height: 10px;
  border-radius: 4px;
  background: var(--border-color);
}

.lp-hero-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-hero-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-hero-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.lp-hero-card-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}

.lp-hero-card-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Floating stat badges */
.lp-float-stat {
  position: absolute;
  background: var(--card-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 3;
  animation: floatY 3s ease-in-out infinite;
}

.lp-float-stat.top-right {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}

.lp-float-stat.bottom-left {
  bottom: -10px;
  left: -30px;
  animation-delay: 1.5s;
}

.lp-float-stat .stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.lp-float-stat .stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

/* --- Section Headers --- */
.lp-section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-blue);
  margin-bottom: 12px;
}

.lp-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.lp-section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.lp-section-header .lp-section-subtitle {
  margin: 0 auto;
}

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

.lp-stat-card {
  background: var(--card-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.lp-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.lp-stat-number.danger {
  color: var(--error);
}

.lp-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Competitive / Urgency --- */
.lp-urgency-card {
  background: linear-gradient(135deg, #1F3A5F 0%, #2E5C8A 100%);
  border-radius: 16px;
  padding: 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

[data-theme="dark"] .lp-urgency-card {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  border: 1px solid #475569;
}

.lp-urgency-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.lp-urgency-card p {
  opacity: 0.85;
  line-height: 1.6;
  font-size: 1rem;
}

.lp-urgency-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-urgency-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.lp-urgency-step-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.lp-urgency-step-text {
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- How It Works --- */
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step-counter;
}

.lp-step-card {
  background: var(--card-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.lp-step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31,58,95,0.08), rgba(46,92,138,0.12));
  color: var(--secondary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

[data-theme="dark"] .lp-step-num {
  background: linear-gradient(135deg, rgba(96,165,250,0.12), rgba(96,165,250,0.18));
}

.lp-step-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.lp-step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Branding Section --- */
.lp-brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lp-brand-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-brand-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lp-brand-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.lp-brand-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.lp-brand-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.lp-brand-visual {
  background: var(--card-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.lp-brand-preview {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
}

.lp-brand-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--secondary-blue);
}

.lp-brand-preview-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1F3A5F, #2E5C8A);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}

.lp-brand-preview-header div h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.lp-brand-preview-header div p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.lp-brand-preview-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-brand-preview-line {
  height: 8px;
  background: var(--border-color);
  border-radius: 4px;
}

.lp-brand-preview-line.short {
  width: 60%;
}

.lp-brand-preview-line.medium {
  width: 80%;
}

/* --- ROI Section --- */
.lp-roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.lp-roi-card {
  background: var(--card-white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 32px;
}

.lp-roi-card.highlight {
  background: linear-gradient(135deg, #1F3A5F 0%, #2E5C8A 100%);
  border: none;
  color: #fff;
}

[data-theme="dark"] .lp-roi-card.highlight {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  border: 1px solid #475569;
}

.lp-roi-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.lp-roi-card.highlight h4 {
  opacity: 0.85;
}

.lp-roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.lp-roi-card.highlight .lp-roi-row {
  border-color: rgba(255,255,255,0.15);
}

.lp-roi-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding-top: 16px;
}

.lp-roi-row .label {
  color: var(--text-muted);
}

.lp-roi-card.highlight .lp-roi-row .label {
  color: rgba(255,255,255,0.7);
}

.lp-roi-row .value {
  font-weight: 600;
  color: var(--text-main);
}

.lp-roi-card.highlight .lp-roi-row .value {
  color: #fff;
}

.lp-roi-savings {
  margin-top: 20px;
  padding: 16px;
  background: rgba(16,185,129,0.1);
  border-radius: 10px;
  text-align: center;
}

.lp-roi-savings .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--success);
}

.lp-roi-savings .desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.lp-roi-card.highlight .lp-roi-savings {
  background: rgba(16,185,129,0.15);
}

.lp-roi-card.highlight .lp-roi-savings .desc {
  color: rgba(255,255,255,0.7);
}

/* --- Growth Section --- */
.lp-growth-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-growth-card {
  background: var(--card-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-growth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.lp-growth-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.lp-growth-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.lp-growth-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Pricing --- */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lp-price-card {
  background: var(--card-white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.lp-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.lp-price-card.featured {
  border-color: var(--secondary-blue);
  border-width: 2px;
  box-shadow: 0 8px 30px rgba(46,92,138,0.15);
}

.lp-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1F3A5F, #2E5C8A);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-price-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.lp-price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 12px 0 4px;
  letter-spacing: -0.03em;
}

.lp-price-amount .currency {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 2;
}

.lp-price-amount .period {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.lp-price-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.lp-price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  flex: 1;
}

.lp-price-features li {
  font-size: 0.85rem;
  color: var(--text-main);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-price-features li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

/* --- Trust Section --- */
.lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lp-trust-card {
  text-align: center;
  padding: 24px 20px;
  border-radius: 12px;
  background: var(--card-white);
  border: 1px solid var(--border-color);
}

.lp-trust-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.lp-trust-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.lp-trust-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Final CTA --- */
.lp-final-cta {
  background: linear-gradient(135deg, #1F3A5F 0%, #2E5C8A 50%, #1F3A5F 100%);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .lp-final-cta {
  background: linear-gradient(135deg, #1E293B 0%, #334155 50%, #1E293B 100%);
  border: 1px solid #475569;
}

.lp-final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.lp-final-cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.lp-final-cta p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.lp-final-cta .lp-btn-primary {
  background: #fff;
  color: #1F3A5F;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.lp-final-cta .lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* --- Footer --- */
.lp-footer {
  padding: 40px 0 24px;
  border-top: 1px solid var(--border-color);
}

.lp-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.lp-footer-links {
  display: flex;
  gap: 24px;
}

.lp-footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
}

.lp-footer-links a:hover {
  color: var(--text-main);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lp-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .lp-hero-subtitle {
    margin: 0 auto 32px;
  }
  .lp-hero-cta-row {
    justify-content: center;
  }
  .lp-hero-trust {
    justify-content: center;
  }
  .lp-hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }
  .lp-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lp-nav-links {
    display: none;
  }
  .lp-hamburger {
    display: block;
  }
  .lp-hero-title {
    font-size: 2.2rem;
  }
  .lp-section-title {
    font-size: 1.7rem;
  }
  .lp-stat-grid,
  .lp-growth-cards {
    grid-template-columns: 1fr;
  }
  .lp-urgency-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .lp-brand-grid,
  .lp-roi-grid {
    grid-template-columns: 1fr;
  }
  .lp-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .lp-steps-grid {
    grid-template-columns: 1fr;
  }
  .lp-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lp-final-cta {
    padding: 40px 24px;
    border-radius: 14px;
  }
  .lp-final-cta h2 {
    font-size: 1.6rem;
  }
  .lp-float-stat {
    display: none;
  }
  .lp-footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .lp-hero-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .lp-hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .lp-section {
    padding: 48px 0;
  }
  .lp-hero-cta-row {
    flex-direction: column;
  }
  .lp-hero-cta-row .lp-btn {
    width: 100%;
  }
}
