/* ═══ STANDALONE LANDING PAGE STYLE (TradeVault.app Style) ═══ */

html {
  scroll-behavior: smooth;
}

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

:root {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ─── THEME VARIABLE SYSTEM ─── */
.landing-page-wrapper {
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;

  /* LIGHT THEME (Default) */
  --lp-bg: #eef2f7;
  --lp-text: #0f172a;
  --lp-text-muted: #475569;
  --lp-text-subtle: #64748b;
  --lp-border: rgba(0, 0, 0, 0.07);
  --lp-border-card: #e2e8f0;
  
  --lp-nav-bg: rgba(238, 242, 247, 0.85);
  
  --lp-hero-bg: linear-gradient(160deg, #e8eef7 0%, #dde8f5 40%, #e4ecf8 100%);
  --lp-metrics-bg: #ffffff;
  --lp-features-bg: #ffffff;
  --lp-features-alt-bg: #f8fafc;
  --lp-showcase-bg: #ffffff;
  --lp-statement-bg: linear-gradient(180deg, #e0eaf5 0%, #d8e5f5 100%);
  --lp-pricing-bg: linear-gradient(160deg, #e8eef7 0%, #dde8f5 100%);
  --lp-pricing-card-bg: #ffffff;
  --lp-cta-bg: #ffffff;
  --lp-cta-box-bg: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  --lp-cta-box-border: #bae6fd;
  --lp-faq-bg: #ffffff;
  
  --lp-btn-ghost-hover: rgba(0, 0, 0, 0.05);
  --lp-btn-outline-text: #334155;
  --lp-btn-outline-border: #cbd5e1;
  --lp-btn-outline-hover-border: #94a3b8;
  --lp-btn-outline-hover-bg: rgba(0, 0, 0, 0.03);
  
  --lp-list-item-border: #f1f5f9;
  --lp-card-hover-shadow: rgba(0, 0, 0, 0.06);
  --lp-app-frame-border: rgba(255, 255, 255, 0.9);
  
  --lp-save-badge-bg: #dcfce7;
  --lp-save-badge-text: #16a34a;
  --lp-save-badge-border: #bbf7d0;
  
  --lp-featured-shadow: 0 0 0 2px #0ea5e9, 0 20px 50px rgba(14, 165, 233, 0.1);
  --lp-featured-shadow-hover: 0 0 0 2px #0ea5e9, 0 28px 60px rgba(14, 165, 233, 0.18);
  
  --lp-footer-bg: #0f172a;
  --lp-footer-text: #94a3b8;
  
  background: var(--lp-bg);
  color: var(--lp-text);
}

.landing-page-wrapper.lp-dark {
  /* DARK THEME */
  --lp-bg: #090d16;
  --lp-text: #f8fafc;
  --lp-text-muted: #cbd5e1;
  --lp-text-subtle: #94a3b8;
  --lp-border: rgba(255, 255, 255, 0.08);
  --lp-border-card: #1e293b;
  
  --lp-nav-bg: rgba(9, 13, 22, 0.85);
  
  --lp-hero-bg: linear-gradient(160deg, #0d1527 0%, #070a12 50%, #0a0e1a 100%);
  --lp-metrics-bg: #0b111e;
  --lp-features-bg: #090d16;
  --lp-features-alt-bg: #0b111e;
  --lp-showcase-bg: #090d16;
  --lp-statement-bg: linear-gradient(180deg, #0a0f1d 0%, #070a12 100%);
  --lp-pricing-bg: linear-gradient(160deg, #0d1527 0%, #070a12 100%);
  --lp-pricing-card-bg: #0e1526;
  --lp-cta-bg: #090d16;
  --lp-cta-box-bg: linear-gradient(135deg, #0b2545 0%, #070f1e 100%);
  --lp-cta-box-border: #1e3a5f;
  --lp-faq-bg: #090d16;
  
  --lp-btn-ghost-hover: rgba(255, 255, 255, 0.05);
  --lp-btn-outline-text: #f1f5f9;
  --lp-btn-outline-border: #334155;
  --lp-btn-outline-hover-border: #475569;
  --lp-btn-outline-hover-bg: rgba(255, 255, 255, 0.03);
  
  --lp-list-item-border: #1e293b;
  --lp-card-hover-shadow: rgba(0, 0, 0, 0.35);
  --lp-app-frame-border: #1e293b;
  
  --lp-save-badge-bg: #052e16;
  --lp-save-badge-text: #4ade80;
  --lp-save-badge-border: #15803d;
  
  --lp-featured-shadow: 0 0 0 2px #0ea5e9, 0 20px 50px rgba(14, 165, 233, 0.25);
  --lp-featured-shadow-hover: 0 0 0 2px #0ea5e9, 0 28px 60px rgba(14, 165, 233, 0.4);
  
  --lp-footer-bg: #070a12;
  --lp-footer-text: #64748b;
}

html {
  scroll-behavior: smooth;
}

/* ─── BUTTONS ─── */
.lp-btn-primary {
  background: #0ea5e9;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.lp-btn-primary:hover {
  background: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
}
.lp-btn-outline {
  background: transparent;
  color: var(--lp-btn-outline-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1.5px solid var(--lp-btn-outline-border);
  transition: all 0.2s ease;
  display: inline-block;
  cursor: pointer;
}
.lp-btn-outline:hover {
  border-color: var(--lp-btn-outline-hover-border);
  background: var(--lp-btn-outline-hover-bg);
  color: var(--lp-text);
}
.lp-btn-ghost {
  color: var(--lp-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.lp-btn-ghost:hover {
  background: var(--lp-btn-ghost-hover);
  color: var(--lp-text);
}
.lp-btn-lg {
  font-size: 15px;
  padding: 14px 30px;
}

/* ─── NAV ─── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 68px;
  background: var(--lp-nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-border);
  transition: background-color 0.3s, border-color 0.3s;
}
.lp-nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}
.lp-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.lp-nav-brand img {
  border-radius: 8px;
}
.lp-brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--lp-text);
  letter-spacing: -0.3px;
}
.lp-nav-links {
  display: flex;
  gap: 28px;
}
.lp-nav-links a {
  color: var(--lp-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.lp-nav-links a:hover {
  color: #0ea5e9;
}
.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── THEME TOGGLE ─── */
.lp-theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--lp-border);
  color: var(--lp-text-muted);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.lp-theme-toggle-btn:hover {
  background: var(--lp-btn-ghost-hover);
  color: var(--lp-text);
  border-color: var(--lp-btn-outline-hover-border);
}
.lp-theme-toggle-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: transform 0.3s ease;
}
.lp-theme-toggle-btn:hover svg {
  transform: rotate(15deg);
}

.landing-page-wrapper:not(.lp-dark) .lp-theme-toggle-btn .sun-icon {
  display: none;
}
.landing-page-wrapper.lp-dark .lp-theme-toggle-btn .moon-icon {
  display: none;
}

/* ─── HERO ─── */
.lp-hero {
  padding: 70px 6% 90px;
  background: var(--lp-hero-bg);
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  transition: background 0.3s;
}
.lp-hero-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.lp-hero-left {
  flex: 1.1;
}
.lp-badge-announcement {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: #0ea5e9;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}
.lp-hero-h1 {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--lp-text);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.lp-hero-accent {
  color: #0ea5e9;
}
.lp-hero-sub {
  font-size: 17px;
  color: var(--lp-text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 540px;
}
.lp-hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.lp-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-stars {
  color: #f59e0b;
  display: flex;
  gap: 3px;
}
.lp-stars svg {
  width: 14px;
  height: 14px;
}
.lp-meta-text {
  font-size: 13px;
  color: var(--lp-text-subtle);
  font-weight: 500;
}
.lp-hero-right {
  flex: 1.2;
}
.lp-hero-dashboard-frame {
  background: #1e293b;
  border: 6px solid var(--lp-app-frame-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 0 0 1px var(--lp-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.lp-hero-dashboard-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.22);
}
.lp-dashboard-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ─── METRICS STRIP ─── */
.lp-metrics-strip {
  padding: 40px 6%;
  background: var(--lp-metrics-bg);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  transition: background-color 0.3s, border-color 0.3s;
}
.metrics-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.metric-item h3 {
  font-size: 32px;
  font-weight: 800;
  color: #0ea5e9;
  margin-bottom: 6px;
}
.metric-item p {
  font-size: 14px;
  color: var(--lp-text-muted);
  font-weight: 500;
}

/* ─── FEATURES GRID ─── */
.lp-features-grid-section {
  padding: 100px 6%;
  background: var(--lp-features-bg);
  transition: background-color 0.3s;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0ea5e9;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--lp-text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-header p {
  font-size: 16px;
  color: var(--lp-text-muted);
}
.lp-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.lp-card {
  background: var(--lp-pricing-card-bg);
  border: 1px solid var(--lp-border-card);
  padding: 36px;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--lp-card-hover-shadow);
  border-color: var(--lp-border);
}
.lp-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.lp-card-icon svg {
  width: 22px;
  height: 22px;
}
.lp-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 12px;
}
.lp-card p {
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

/* ─── SHOWCASE ─── */
.lp-showcase {
  background: var(--lp-showcase-bg);
  border-top: 1px solid var(--lp-border);
  transition: background-color 0.3s, border-color 0.3s;
}
.showcase-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 90px 6%;
}
.showcase-row.rev {
  flex-direction: row-reverse;
  background: var(--lp-features-alt-bg);
  max-width: 100%;
  padding-left: 12%;
  padding-right: 12%;
}
.showcase-text {
  flex: 1;
}
.showcase-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0ea5e9;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}
.showcase-text h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--lp-text);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.showcase-text p {
  font-size: 16px;
  color: var(--lp-text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.showcase-list {
  list-style: none;
}
.showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--lp-text-muted);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--lp-list-item-border);
}
.showcase-list li:last-child {
  border-bottom: none;
}
.showcase-list li svg {
  width: 18px;
  height: 18px;
  color: #0ea5e9;
}
.showcase-image {
  flex: 1.2;
}
.lp-app-mockup {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 0 1px var(--lp-border), inset 0 0 0 6px var(--lp-app-frame-border);
  border: 6px solid var(--lp-app-frame-border);
  background: #1a2035;
  transition: transform 0.3s, border-color 0.3s;
}
.lp-app-mockup:hover {
  transform: translateY(-2px);
}
.lp-app-mockup img {
  width: 100%;
  display: block;
}

/* ─── PRICING ─── */
.lp-pricing {
  padding: 100px 6%;
  background: var(--lp-pricing-bg);
  border-top: 1px solid var(--lp-border);
  transition: background 0.3s, border-color 0.3s;
}
.lp-billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}
.lp-billing-toggle {
  position: relative;
  width: 56px;
  height: 30px;
  background: #0ea5e9;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.3s;
  outline: none;
}
.lp-billing-toggle.monthly {
  background: var(--lp-btn-outline-border);
}
.lp-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.lp-billing-toggle.monthly .lp-toggle-thumb {
  transform: translateX(0);
}
.lp-billing-toggle:not(.monthly) .lp-toggle-thumb {
  transform: translateX(26px);
}
.lp-toggle-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-text-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.lp-toggle-save-badge {
  background: var(--lp-save-badge-bg);
  color: var(--lp-save-badge-text);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--lp-save-badge-border);
  transition: all 0.3s;
}
.lp-pricing-cards {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.lp-pc {
  background: var(--lp-pricing-card-bg);
  border: 1.5px solid var(--lp-border-card);
  padding: 44px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.lp-pc:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px var(--lp-card-hover-shadow);
  border-color: var(--lp-border);
}
.lp-pc-featured {
  border-color: #0ea5e9;
  box-shadow: var(--lp-featured-shadow);
}
.lp-pc-featured:hover {
  box-shadow: var(--lp-featured-shadow-hover);
}
.lp-pc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #0ea5e9;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.lp-pc-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--lp-text);
  margin-bottom: 6px;
}
.lp-pc-header p {
  font-size: 13px;
  color: var(--lp-text-subtle);
  margin-bottom: 24px;
}
.lp-pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.lp-pc-amount {
  font-size: 42px;
  font-weight: 900;
  color: var(--lp-text);
}
.lp-pc-period {
  font-size: 15px;
  color: var(--lp-text-subtle);
  font-weight: 500;
}
.lp-pc-billed-note {
  font-size: 12px;
  color: var(--lp-text-subtle);
  margin-bottom: 28px;
}
.lp-pc-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}
.lp-pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--lp-text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--lp-list-item-border);
  font-weight: 500;
}
.lp-pc-features li:last-child {
  border-bottom: none;
}
.lp-pc-features li svg {
  width: 16px;
  height: 16px;
  color: #0ea5e9;
}
.lp-pc-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.lp-pc-btn-outline {
  border: 1.5px solid var(--lp-btn-outline-border);
  color: var(--lp-btn-outline-text);
}
.lp-pc-btn-outline:hover {
  background: var(--lp-btn-outline-hover-bg);
  border-color: var(--lp-btn-outline-hover-border);
  color: var(--lp-text);
}
.lp-pc-btn-primary {
  background: #0ea5e9;
  color: #fff;
}
.lp-pc-btn-primary:hover {
  background: #0284c7;
  box-shadow: 0 6px 20px rgba(14,165,233,0.4);
}
.lp-pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--lp-text-subtle);
}

/* ─── FAQ ─── */
.lp-faq {
  padding: 100px 6%;
  background: var(--lp-faq-bg);
  border-top: 1px solid var(--lp-border);
  transition: background-color 0.3s, border-color 0.3s;
}

/* Section header subtitle link */
.faq-support-link {
  color: var(--lp-accent);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.faq-support-link:hover { opacity: 0.75; }

/* 2-column grid */
.faq-grid {
  max-width: 1100px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual accordion card */
.faq-item {
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item:hover {
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.07);
}
.faq-item.open {
  border-color: var(--lp-accent);
  box-shadow: 0 4px 24px rgba(14, 165, 233, 0.1);
}

/* Question row */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  gap: 12px;
  user-select: none;
}
.faq-q-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-text);
}
.faq-icon {
  font-size: 16px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--lp-features-bg);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-accent);
  transition: background 0.2s, border-color 0.2s;
}
.faq-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.75;
}
.faq-item.open .faq-icon {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
}
.faq-chevron {
  color: var(--lp-text-muted);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--lp-accent);
}

/* Answer reveal */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 220px;
  padding: 0 22px 22px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.7;
  padding-top: 4px;
  border-top: 1px solid var(--lp-border);
  padding-top: 16px;
  margin: 0;
}
.faq-answer em {
  color: var(--lp-accent);
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── CTA FOOTER BOX ─── */
.lp-cta-footer {
  padding: 80px 6%;
  background: var(--lp-cta-bg);
  border-top: 1px solid var(--lp-border);
  text-align: center;
  transition: background-color 0.3s, border-color 0.3s;
}
.lp-cta-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--lp-cta-box-bg);
  border: 1.5px solid var(--lp-cta-box-border);
  border-radius: 24px;
  box-shadow: 0 8px 40px var(--lp-card-hover-shadow);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.lp-cta-box h2 {
  font-size: 34px;
  font-weight: 900;
  color: var(--lp-text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.lp-cta-box p {
  font-size: 16px;
  color: var(--lp-text-subtle);
  margin-bottom: 30px;
}
.lp-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ─── FOOTER ─── */
.lp-footer {
  background: var(--lp-footer-bg);
  color: var(--lp-footer-text);
  padding: 80px 6% 40px;
  border-top: 1px solid var(--lp-border);
  transition: background-color 0.3s, border-color 0.3s;
}
.lp-footer-top {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.lp-footer-brand-section {
  max-width: 320px;
}
.lp-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.lp-footer-logo img {
  border-radius: 6px;
}
.lp-footer-logo span {
  font-family: 'Orbitron', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.lp-footer-brand-section p {
  font-size: 13px;
  color: var(--lp-text-subtle);
  line-height: 1.5;
}
.lp-footer-links-grid {
  display: flex;
  gap: 80px;
}
.lp-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.lp-footer-col a {
  font-size: 14px;
  color: var(--lp-text-subtle);
  text-decoration: none;
  transition: color 0.15s ease;
}
.lp-footer-col a:hover {
  color: #0ea5e9;
}
.lp-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--lp-text-subtle);
  padding-top: 30px;
  border-top: 1px solid var(--lp-border);
  transition: border-color 0.3s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .lp-hero-content { flex-direction: column; gap: 40px; }
  .lp-hero-left { text-align: center; }
  .lp-hero-sub { margin-left: auto; margin-right: auto; }
  .lp-hero-cta { justify-content: center; }
  .lp-hero-meta { justify-content: center; }
  .lp-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-row { flex-direction: column; gap: 40px; }
  .showcase-row.rev { flex-direction: column; }
  .lp-pricing-cards { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 768px) {
  .lp-nav-links { display: none; }
  .lp-hero-h1 { font-size: 42px; }
  .lp-grid { grid-template-columns: 1fr; }
  .lp-pricing-cards { grid-template-columns: 1fr; max-width: 460px; }
  .lp-footer-top { flex-direction: column; gap: 40px; }
  .lp-footer-links-grid { gap: 40px; }
}
@media (max-width: 480px) {
  .lp-hero-cta { flex-direction: column; }
  .lp-btn-lg { width: 100%; text-align: center; }
  .lp-cta-actions { flex-direction: column; }
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.lp-scroll-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.lp-scroll-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Stagger delay classes for grid items and cards */
.lp-grid > .lp-card:nth-child(1) { transition-delay: 0.05s; }
.lp-grid > .lp-card:nth-child(2) { transition-delay: 0.1s; }
.lp-grid > .lp-card:nth-child(3) { transition-delay: 0.15s; }
.lp-grid > .lp-card:nth-child(4) { transition-delay: 0.2s; }
.lp-grid > .lp-card:nth-child(5) { transition-delay: 0.25s; }
.lp-grid > .lp-card:nth-child(6) { transition-delay: 0.3s; }

.lp-pricing-cards > .lp-pc:nth-child(1) { transition-delay: 0.05s; }
.lp-pricing-cards > .lp-pc:nth-child(2) { transition-delay: 0.15s; }
.lp-pricing-cards > .lp-pc:nth-child(3) { transition-delay: 0.25s; }

/* Interactive Hover Transitions */
.lp-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, border-color 0.3s, box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.lp-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 35px -10px var(--lp-card-hover-shadow);
  border-color: #0ea5e9;
}

.lp-pc {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, border-color 0.3s, box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.lp-pc:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.25);
  border-color: #0ea5e9;
}

.lp-app-mockup img, .lp-dashboard-img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s ease !important;
}
.lp-app-mockup:hover img {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.lp-hero-dashboard-frame:hover .lp-dashboard-img {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}


