﻿/* =============================================
   LANDING PAGE â€” REDESIGN 2026
   Escopo: apenas a landing (data-page="landing")
   NÃ£o afeta pÃ¡ginas internas do app
============================================= */

[data-page="landing"] {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  background: #f5fafa;
  color: #0f2e31;
}

/* ---------- Layout Shell ---------- */
.lp-shell {
  width: 100%;
  overflow-x: hidden;
}

.lp-container {
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
}

/* ---------- Navbar ---------- */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(245, 250, 250, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14, 143, 150, 0.1);
  transition: box-shadow 220ms ease;
}

.lp-nav.scrolled {
  box-shadow: 0 4px 24px rgba(14, 143, 150, 0.1);
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.lp-brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.lp-brand-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: #0e8f96;
  letter-spacing: -0.02em;
}

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

.lp-nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2d5557;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.lp-nav-links a:hover {
  background: rgba(14, 143, 150, 0.1);
  color: #0e8f96;
}

.lp-nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lp-btn:hover {
  transform: translateY(-2px);
}

.lp-btn-ghost {
  background: transparent;
  color: #2d5557;
  border: 1.5px solid #c8dfe0;
}

.lp-btn-ghost:hover {
  background: rgba(14, 143, 150, 0.06);
  border-color: #0e8f96;
  color: #0e8f96;
}

.lp-btn-primary {
  background: linear-gradient(135deg, #0e8f96 0%, #0b7278 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(14, 143, 150, 0.28);
}

.lp-btn-primary:hover {
  box-shadow: 0 12px 32px rgba(14, 143, 150, 0.36);
}

.lp-btn-accent {
  background: linear-gradient(135deg, #ff6f7f 0%, #e85568 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 111, 127, 0.3);
}

.lp-btn-accent:hover {
  box-shadow: 0 12px 32px rgba(255, 111, 127, 0.4);
}

.lp-btn-white {
  background: #fff;
  color: #0b7278;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.lp-btn-lg {
  padding: 15px 30px;
  font-size: 1rem;
}

/* ---------- Hero Section ---------- */
.lp-hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 5% 0%, rgba(14, 143, 150, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 95% 10%, rgba(255, 111, 127, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(14, 143, 150, 0.06) 0%, transparent 60%);
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lp-hero-copy {
  padding-bottom: 80px;
}

.lp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: rgba(14, 143, 150, 0.1);
  border: 1px solid rgba(14, 143, 150, 0.2);
  font-size: 0.82rem;
  font-weight: 700;
  color: #0b7278;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.lp-hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0e8f96;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.6); }
}

.lp-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #0a2729;
  margin: 0 0 20px;
}

.lp-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #0e8f96, #ff6f7f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #3d6669;
  margin: 0 0 32px;
  max-width: 480px;
}

.lp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.lp-hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #5a7d80;
}

.lp-trust-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(14, 143, 150, 0.12);
  color: #0e8f96;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* --- Hero Preview Panel --- */
.lp-hero-visual {
  position: relative;
  padding-bottom: 24px;
}

.lp-dashboard-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e0eced;
  box-shadow:
    0 32px 80px rgba(14, 65, 70, 0.14),
    0 4px 16px rgba(14, 65, 70, 0.06);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

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

.lp-card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #edf4f5;
  background: #fafefe;
}

.lp-card-dots {
  display: flex;
  gap: 6px;
}

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

.lp-dot:nth-child(1) { background: #ff6f7f; }
.lp-dot:nth-child(2) { background: #ffbc50; }
.lp-dot:nth-child(3) { background: #4ecb71; }

.lp-card-title-bar {
  font-size: 0.82rem;
  font-weight: 700;
  color: #7a9b9e;
  letter-spacing: 0.04em;
}

.lp-card-body {
  padding: 20px;
}

.lp-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.lp-kpi {
  padding: 14px;
  border-radius: 14px;
  background: #f5fafa;
  border: 1px solid #e4eeef;
}

.lp-kpi-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: #7a9b9e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.lp-kpi-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0a2729;
  letter-spacing: -0.03em;
}

.lp-kpi-value.accent { color: #0e8f96; }
.lp-kpi-value.warn { color: #e85568; }

.lp-receipt-banner {
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0c7278 0%, #0e8f96 60%, #20a8b0 100%);
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-receipt-banner-label {
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.lp-receipt-banner-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.lp-receipt-pill {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  font-size: 0.76rem;
  font-weight: 700;
}

.lp-mini-list {
  display: grid;
  gap: 8px;
}

.lp-mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fbfb;
  border: 1px solid #e8f0f1;
}

.lp-mini-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1a3d41;
}

.lp-mini-sub {
  font-size: 0.74rem;
  color: #7a9b9e;
  margin-top: 2px;
}

.lp-mini-badge {
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.lp-badge-ok {
  background: #e3f8ec;
  color: #1a8043;
}

.lp-badge-warn {
  background: #fff0f2;
  color: #c9374b;
}

.lp-badge-muted {
  background: #edf3f4;
  color: #5a7d80;
}

/* Floating secondary card */
.lp-float-card {
  position: absolute;
  bottom: -10px;
  left: -32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e0eced;
  box-shadow: 0 16px 40px rgba(14, 65, 70, 0.12);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite reverse;
}

.lp-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0e8f96, #0b7278);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-float-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-float-text strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #0a2729;
}

.lp-float-text span {
  font-size: 0.76rem;
  color: #7a9b9e;
}

/* ---------- Hero Wave Divider ---------- */
.lp-wave {
  display: block;
  width: 100%;
  line-height: 0;
  color: #f5fafa;
}

/* ---------- Stats Bar ---------- */
.lp-stats-bar {
  padding: 20px 0;
  background: #fff;
  border-top: 1px solid #e8f0f1;
  border-bottom: 1px solid #e8f0f1;
}

.lp-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.lp-stat {
  flex: 1;
  text-align: center;
  padding: 8px 24px;
  position: relative;
}

.lp-stat + .lp-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #e0eced;
}

.lp-stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0e8f96;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.lp-stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #5a7d80;
}

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

.lp-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(14, 143, 150, 0.1);
  border: 1px solid rgba(14, 143, 150, 0.18);
  font-size: 0.78rem;
  font-weight: 700;
  color: #0b7278;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.lp-section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0a2729;
  margin: 0 0 16px;
}

.lp-section-sub {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #3d6669;
  max-width: 560px;
  margin: 0;
}

/* ---------- Features Section ---------- */
.lp-features {
  background: #fff;
}

.lp-features-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.lp-features-head .lp-section-sub {
  margin: 0 auto;
}

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

.lp-feature-card {
  padding: 28px 24px;
  border-radius: 20px;
  background: #f8fbfb;
  border: 1px solid #e4eeef;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  cursor: default;
}

.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(14, 65, 70, 0.1);
  border-color: rgba(14, 143, 150, 0.3);
}

.lp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.lp-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-icon-teal { background: rgba(14, 143, 150, 0.12); color: #0e8f96; }
.lp-icon-coral { background: rgba(255, 111, 127, 0.12); color: #e85568; }
.lp-icon-amber { background: rgba(255, 186, 0, 0.12); color: #c98a00; }
.lp-icon-green { background: rgba(50, 190, 120, 0.12); color: #1a8043; }

.lp-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a2729;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.lp-feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5a7d80;
  margin: 0;
}

/* ---------- How It Works ---------- */
.lp-how {
  background: #f5fafa;
}

.lp-how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.lp-how-steps {
  display: grid;
  gap: 0;
}

.lp-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  position: relative;
}

.lp-step:not(:last-child) {
  border-bottom: 1px dashed #cde0e2;
}

.lp-step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0e8f96, #0b7278);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(14, 143, 150, 0.3);
}

.lp-step-content h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0a2729;
  margin: 0 0 8px;
}

.lp-step-content p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5a7d80;
  margin: 0;
}

/* How it works visual side */
.lp-how-visual {
  position: relative;
}

.lp-preview-panel {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #ddeaeb;
  box-shadow: 0 24px 64px rgba(14, 65, 70, 0.12);
  padding: 24px;
}

.lp-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.lp-preview-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0a2729;
}

.lp-preview-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(14, 143, 150, 0.1);
  color: #0e8f96;
  font-size: 0.74rem;
  font-weight: 700;
}

.lp-preview-contract {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.lp-contract-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f7fafa;
  border: 1px solid #e4eeef;
}

.lp-contract-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-dot-green { background: #4ecb71; }
.lp-dot-amber { background: #f59e0b; }
.lp-dot-red { background: #ff6f7f; }

.lp-contract-info {
  flex: 1;
  min-width: 0;
}

.lp-contract-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1a3d41;
}

.lp-contract-date {
  font-size: 0.74rem;
  color: #7a9b9e;
}

.lp-contract-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}

.lp-pill-green { background: #e3f8ec; color: #1a8043; }
.lp-pill-amber { background: #fff7e0; color: #c98a00; }
.lp-pill-red { background: #fff0f2; color: #c9374b; }

.lp-bar-group {
  margin-top: 8px;
}

.lp-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  font-weight: 600;
  color: #7a9b9e;
  margin-bottom: 6px;
}

.lp-bar-track {
  height: 8px;
  border-radius: 999px;
  background: #e8f3f4;
  overflow: hidden;
}

.lp-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0e8f96, #20aab3);
}

/* ---------- Testimonial / CTA Social Proof ---------- */
.lp-trust-section {
  background: #fff;
  padding: 56px 0;
}

.lp-trust-center {
  text-align: center;
  margin-bottom: 40px;
}

.lp-trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-trust-card {
  padding: 28px 24px;
  border-radius: 20px;
  background: #f8fbfb;
  border: 1px solid #e4eeef;
}

.lp-trust-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.lp-star {
  font-size: 1rem;
  color: #f59e0b;
}

.lp-trust-quote {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #3d6669;
  margin: 0 0 18px;
  font-style: italic;
}

.lp-trust-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e8f96, #ff6f7f);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0a2729;
}

.lp-author-role {
  font-size: 0.78rem;
  color: #7a9b9e;
}

/* ---------- CTA Final ---------- */
.lp-cta {
  padding: 80px 0;
  background: #f5fafa;
}

.lp-cta-inner {
  background: linear-gradient(135deg, #0a5c62 0%, #0e8f96 45%, #1baab3 80%, #0e8f96 100%);
  border-radius: 32px;
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 32px 80px rgba(14, 143, 150, 0.28);
}

.lp-cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}

.lp-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 111, 127, 0.15), transparent 70%);
  pointer-events: none;
}

.lp-cta-content {
  position: relative;
  z-index: 1;
}

.lp-cta-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.lp-cta-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 auto 16px;
  max-width: 680px;
}

.lp-cta-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}

.lp-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.lp-footer {
  background: #071618;
  color: rgba(220, 236, 237, 0.85);
  padding: 56px 0 28px;
}

.lp-footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.lp-footer-brand-col,
.lp-footer-col {
  min-width: 0;
}

.lp-footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.lp-footer-brand-col .lp-brand-name {
  color: #20c4cc;
}

.lp-footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(220, 236, 237, 0.6);
  margin: 16px 0 24px;
}

.lp-footer-contact-list {
  display: grid;
  gap: 10px;
}

.lp-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(220, 236, 237, 0.75);
  text-decoration: none;
  transition: color 180ms ease;
}

.lp-footer-contact-item:hover {
  color: #20c4cc;
}

.lp-footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-footer-contact-icon svg {
  width: 15px;
  height: 15px;
  stroke: rgba(220, 236, 237, 0.7);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}

.lp-footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(220, 236, 237, 0.7);
  text-decoration: none;
  padding: 5px 0;
  transition: color 180ms ease;
}

.lp-footer-col a:hover {
  color: #fff;
}

.lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-footer-copy {
  font-size: 0.84rem;
  color: rgba(220, 236, 237, 0.4);
}

.lp-footer-legal {
  display: flex;
  gap: 20px;
}

.lp-footer-legal a {
  font-size: 0.84rem;
  color: rgba(220, 236, 237, 0.4);
  text-decoration: none;
  transition: color 180ms ease;
}

.lp-footer-legal a:hover {
  color: rgba(220, 236, 237, 0.8);
}

.lp-footer-credit {
  font-size: 0.84rem;
  color: rgba(220, 236, 237, 0.4);
}

.lp-footer-credit a {
  color: #20c4cc;
  text-decoration: none;
}

.lp-footer-credit a:hover {
  text-decoration: underline;
}

.lp-social-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.lp-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.lp-social-btn:hover {
  background: rgba(14, 143, 150, 0.2);
  border-color: rgba(14, 143, 150, 0.4);
}

.lp-social-btn svg {
  width: 15px;
  height: 15px;
  stroke: rgba(220, 236, 237, 0.7);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(220, 236, 237, 0.78);
  transition: color 180ms ease;
}

.lp-social-link:hover {
  color: #20c4cc;
}

.lp-social-link:hover .lp-social-btn {
  background: rgba(14, 143, 150, 0.2);
  border-color: rgba(14, 143, 150, 0.4);
}

.lp-social-label {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .lp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-hero-copy {
    padding-bottom: 0;
  }
  .lp-hero-visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .lp-float-card {
    left: 0;
  }
  .lp-how-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-trust-cards {
    grid-template-columns: 1fr;
  }
  .lp-stats-inner {
    flex-wrap: wrap;
  }
  .lp-stat + .lp-stat::before {
    display: none;
  }
  .lp-stat {
    width: 50%;
    flex: none;
  }
  .lp-cta-inner {
    padding: 48px 32px;
  }
}

@media (max-width: 640px) {
  .lp-container {
    width: min(calc(100% - 32px), 1160px);
  }
  .lp-nav-links {
    display: none;
  }
  .lp-hero {
    padding: 56px 0 0;
  }
  .lp-hero-title {
    font-size: 2.4rem;
  }
  .lp-section {
    padding: 56px 0;
  }
  .lp-features-grid {
    grid-template-columns: 1fr;
  }
  .lp-footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .lp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .lp-cta-inner {
    padding: 40px 24px;
    border-radius: 24px;
  }
  .lp-trust-cards {
    grid-template-columns: 1fr;
  }
  .lp-stat {
    width: 100%;
  }
  .lp-btn-ghost.lp-btn-lg {
    display: none;
  }
}

/* ---------- Scroll reveal animation ---------- */
.lp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-reveal-delay-1 { transition-delay: 80ms; }
.lp-reveal-delay-2 { transition-delay: 160ms; }
.lp-reveal-delay-3 { transition-delay: 240ms; }
.lp-reveal-delay-4 { transition-delay: 320ms; }

/* =============================================
   LANDING PAGE - INLINE CLEANUP HELPERS
   Move style attributes from HTML into classes
============================================= */
.lp-how-steps-spaced {
  margin-top: 36px;
}

.lp-mt-36 {
  margin-top: 36px;
}

.lp-bar-group-offset {
  margin-top: 10px;
}

.lp-bar-fill-75 {
  width: 75%;
}

.lp-bar-fill-coral {
  background: linear-gradient(90deg, #ff6f7f, #e85568);
}

.lp-section-title-centered {
  margin: 16px auto 0;
  max-width: 560px;
  text-align: center;
}

.lp-author-avatar-coral {
  background: linear-gradient(135deg, #ff6f7f, #e85568);
}

.lp-author-avatar-amber {
  background: linear-gradient(135deg, #f59e0b, #c98a00);
}

.lp-btn-outline-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

