/* Monitor-Seo — landing page · premium dark redesign */

/* ─────────────────────────────────────────────────────── tokens */
:root {
  --lp-bg:        #07111f;
  --lp-section:   #0d1726;
  --lp-card:      #121d2f;
  --lp-card-hover:#15233a;
  --lp-border:    rgba(255,255,255,.08);
  --lp-border-hi: rgba(59,130,246,.45);
  --lp-text:      #ffffff;
  --lp-muted:     #9fb0c8;
  --lp-subtle:    #6b7d94;
  --lp-primary:   #3b82f6;
  --lp-primary-dark: #2563eb;
  --lp-success:   #22c55e;
  --lp-danger:    #ef4444;
  --lp-radius:    14px;
  --lp-radius-sm: 8px;
  --lp-font:      "Inter", system-ui, -apple-system, sans-serif;
  --lp-shadow:    0 24px 60px rgba(0,0,0,.55);
  --lp-glow:      0 0 48px rgba(59,130,246,.22);
  --lp-card-shadow: 0 8px 32px rgba(0,0,0,.35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.landing-body {
  margin: 0;
  font-family: var(--lp-font);
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  z-index: 9999; padding: .75rem 1rem;
  background: var(--lp-primary); color: #fff;
  border-radius: 0 0 var(--lp-radius-sm) 0;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(1160px,calc(100% - 2.5rem)); margin-inline: auto; }

/* ── navbar */
.landing-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(7,17,31,.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--lp-border);
  transition: background .3s, box-shadow .3s;
}
.landing-header.scrolled {
  background: rgba(7,17,31,.94);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.landing-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 1rem;
}
.landing-brand {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--lp-text);
  font-weight: 700; font-size: 1rem; letter-spacing: -.01em; flex-shrink: 0;
}
.landing-logo {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg,var(--lp-primary),#60a5fa);
  color: #fff; font-weight: 800; font-size: .9rem;
  flex-shrink: 0; box-shadow: 0 4px 16px rgba(59,130,246,.4);
}
.landing-logo.sm { width: 30px; height: 30px; font-size: .78rem; border-radius: 8px; }
.landing-brand-text { color: var(--lp-text); }
.landing-brand-text strong { color: var(--lp-primary); }

.landing-nav { display: flex; align-items: center; gap: 1.5rem; }
.landing-nav a {
  text-decoration: none; color: var(--lp-muted);
  font-size: .88rem; font-weight: 500;
  transition: color .15s; white-space: nowrap;
}
.landing-nav a:hover { color: var(--lp-text); }
.landing-nav-muted { color: var(--lp-subtle) !important; }

.landing-nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--lp-border);
  border-radius: 8px; padding: .55rem .65rem; cursor: pointer;
}
.landing-nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--lp-muted); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ── buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem; padding: .65rem 1.3rem; border-radius: var(--lp-radius-sm);
  font-weight: 600; font-size: .9rem; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; font-family: inherit;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s, color .15s;
  white-space: nowrap; line-height: 1;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm  { padding: .45rem 1rem; font-size: .83rem; }
.btn-lg  { padding: .85rem 1.6rem; font-size: .95rem; }

.btn-landing-primary {
  background: var(--lp-primary); color: #fff;
  border-color: var(--lp-primary);
  box-shadow: 0 4px 20px rgba(59,130,246,.35);
}
.btn-landing-primary:hover {
  background: var(--lp-primary-dark); border-color: var(--lp-primary-dark);
  color: #fff; box-shadow: 0 8px 28px rgba(59,130,246,.5);
}
.btn-landing-ghost {
  background: rgba(255,255,255,.06); color: var(--lp-muted);
  border-color: var(--lp-border);
}
.btn-landing-ghost:hover {
  background: rgba(255,255,255,.1); color: var(--lp-text);
  border-color: rgba(255,255,255,.18);
}
.btn-landing-outline {
  background: transparent; color: var(--lp-primary);
  border-color: rgba(59,130,246,.45);
}
.btn-landing-outline:hover {
  background: rgba(59,130,246,.1); border-color: var(--lp-primary);
}
.btn-landing-light {
  background: #fff; color: #0f172a; border-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.btn-landing-light:hover { background: #e2e8f0; border-color: #e2e8f0; color: #0f172a; }

/* ── hero */
.landing-hero {
  background:
    radial-gradient(ellipse 120% 80% at 60% -20%,rgba(59,130,246,.18) 0%,transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(59,130,246,.08) 0%,transparent 55%),
    var(--lp-bg);
  padding: 6rem 0 7rem; overflow: hidden; position: relative;
}
.landing-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='.012'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.landing-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative;
}

.landing-eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  margin: 0 0 1.5rem; padding: .35rem 1rem; border-radius: 999px;
  background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.25);
  color: #93c5fd; font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
}
.landing-hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.1rem,4.5vw,3.4rem);
  line-height: 1.1; font-weight: 800; color: var(--lp-text);
  letter-spacing: -.03em;
}
.landing-hero h1 .accent { color: var(--lp-primary); }
.landing-lead {
  margin: 0 0 2rem; font-size: 1.05rem;
  color: var(--lp-muted); max-width: 50ch; line-height: 1.7;
}
.landing-hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.landing-hero-stats {
  display: flex; flex-wrap: wrap; gap: 1.75rem;
  list-style: none; margin: 0; padding: 0;
}
.landing-hero-stats li {
  font-size: .82rem; color: var(--lp-muted);
  display: flex; align-items: center; gap: .4rem;
}
.landing-hero-stats li::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--lp-primary); flex-shrink: 0;
}
.landing-hero-stats strong { color: var(--lp-text); font-weight: 600; }

.landing-hero-visual {
  display: flex; justify-content: center; align-items: center; position: relative;
}
.landing-hero-visual::before {
  content: ''; position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center,rgba(59,130,246,.12),transparent 70%);
  pointer-events: none; z-index: -1;
}

.hero-mockup {
  background: var(--lp-card); border: 1px solid var(--lp-border);
  border-radius: 18px; box-shadow: var(--lp-shadow),var(--lp-glow);
  overflow: hidden; width: 100%; max-width: 500px;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,.03); border-bottom: 1px solid var(--lp-border);
}
.hero-mockup-bar > span:not(.hero-mockup-title) { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.hero-mockup-bar > span:nth-child(1) { background: #ef4444; }
.hero-mockup-bar > span:nth-child(2) { background: #f59e0b; }
.hero-mockup-bar > span:nth-child(3) { background: #22c55e; }
.hero-mockup-title {
  margin-left: .5rem; font-size: 1rem;
  color: var(--lp-subtle); font-weight: 500;
  white-space: nowrap;
}
.hero-mockup-body { padding: 1.25rem; }

.hero-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-bottom: 1.25rem; }
.hero-stat-card {
  background: var(--lp-section); border: 1px solid var(--lp-border);
  border-radius: 10px; padding: .75rem; text-align: center;
}
.hero-stat-label { display: block; font-size: .68rem; color: var(--lp-subtle); font-weight: 500; margin-bottom: .25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-stat-value { display: block; font-size: 1.15rem; font-weight: 700; color: var(--lp-text); line-height: 1; }
.hero-stat-delta { font-size: .7rem; font-weight: 600; margin-left: .2rem; }
.hero-stat-delta.up   { color: var(--lp-success); }
.hero-stat-delta.down { color: var(--lp-danger); }

.hero-kw-table { margin-bottom: 1rem; }
.hero-kw-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem 0; border-bottom: 1px solid var(--lp-border);
  gap: .5rem; font-size: .82rem;
  animation: fadeSlideIn .5s ease both;
}
.hero-kw-row:last-child { border-bottom: 0; }
.hero-kw-row:nth-child(1) { animation-delay: .15s; }
.hero-kw-row:nth-child(2) { animation-delay: .3s; }
.hero-kw-row:nth-child(3) { animation-delay: .45s; }
.hero-kw-row:nth-child(4) { animation-delay: .6s; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-kw-name  { color: var(--lp-text); font-weight: 500; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-kw-vol   { color: var(--lp-subtle); font-size: .72rem; white-space: nowrap; }
.hero-kw-pos   { font-weight: 700; color: var(--lp-muted); white-space: nowrap; }
.hero-kw-pos.up   { color: var(--lp-success); }
.hero-kw-pos.down { color: var(--lp-danger); }

.hero-chart-wrap {
  border-radius: 10px; overflow: hidden;
  background: var(--lp-section); border: 1px solid var(--lp-border);
  padding: .75rem .75rem .5rem; margin-bottom: .75rem;
}
.hero-chart-label { font-size: .68rem; color: var(--lp-subtle); margin-bottom: .35rem; font-weight: 500; }
.hero-chart-wrap svg { display: block; width: 100%; height: 52px; }

.hero-ai-badge {
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem .85rem;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2);
  border-radius: 8px; font-size: .76rem; color: #93c5fd; font-weight: 500;
}
.hero-ai-badge svg { flex-shrink: 0; }

/* ── sections */
.landing-section { padding: 5rem 0; }
.landing-section-alt { background: var(--lp-section); }

.landing-section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.landing-section-head .eyebrow-sm {
  display: inline-block; margin-bottom: .75rem;
  padding: .25rem .85rem; border-radius: 999px;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2);
  color: #93c5fd; font-size: .75rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
}
.landing-section-head h2 {
  margin: 0 0 .85rem;
  font-size: clamp(1.8rem,3vw,2.5rem);
  font-weight: 800; letter-spacing: -.025em;
  color: var(--lp-text); line-height: 1.15;
}
.landing-section-head p { margin: 0; color: var(--lp-muted); font-size: 1rem; line-height: 1.7; }

/* ── platform summary */
.landing-platform-summary {
  list-style: none; margin: 0 auto 3rem; padding: 1.5rem;
  max-width: 54rem; display: grid;
  grid-template-columns: repeat(2,1fr); gap: .75rem 2rem;
  background: var(--lp-card); border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius); box-shadow: var(--lp-card-shadow);
}
.landing-platform-summary li {
  position: relative; padding-left: 1.4rem;
  font-size: .9rem; color: var(--lp-muted); line-height: 1.5;
}
.landing-platform-summary li::before {
  content: ''; position: absolute; left: 0; top: .58em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--lp-primary);
}

/* ── feature cards */
.landing-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.landing-feature-card {
  background: var(--lp-card); border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius); padding: 1.75rem;
  box-shadow: var(--lp-card-shadow);
  transition: transform .22s, border-color .22s, box-shadow .22s;
  position: relative; overflow: hidden;
}
.landing-feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,var(--lp-primary),transparent);
  opacity: 0; transition: opacity .25s;
}
.landing-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.5),0 0 0 1px rgba(59,130,246,.15);
}
.landing-feature-card:hover::before { opacity: 1; }

.lf-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2);
  margin-bottom: 1rem; color: #93c5fd;
  transition: background .2s, border-color .2s;
}
.lf-icon svg { width: 22px; height: 22px; stroke: #93c5fd; stroke-width: 1.75; fill: none; }
.landing-feature-card:hover .lf-icon { background: rgba(59,130,246,.18); border-color: rgba(59,130,246,.4); }
.landing-feature-card h3 { margin: 0 0 .5rem; font-size: 1rem; font-weight: 700; color: var(--lp-text); letter-spacing: -.01em; }
.landing-feature-card p { margin: 0; color: var(--lp-muted); font-size: .88rem; line-height: 1.65; }

/* ── checker */
.landing-checker { background: var(--lp-section); }
.landing-lead-magnet { background: var(--lp-bg); }
.landing-checker-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.landing-checker-grid h2 { font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800; letter-spacing: -.025em; margin: 0 0 1rem; line-height: 1.2; }
.landing-checker-grid > div > p { color: var(--lp-muted); font-size: .95rem; line-height: 1.7; }
.landing-checks-left {
  margin-top: 1rem; font-size: .85rem; color: var(--lp-subtle);
  background: rgba(255,255,255,.04); border: 1px solid var(--lp-border);
  border-radius: 8px; padding: .5rem .85rem; display: inline-block;
}
.landing-checks-left strong { color: var(--lp-primary); }
.landing-checker-card, .landing-contact-card {
  background: var(--lp-card); border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius); padding: 2rem; box-shadow: var(--lp-card-shadow);
}
.landing-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
#keywordCheckForm.is-disabled .form-control,
#keywordCheckForm.is-disabled .form-select { opacity: .5; pointer-events: none; }
.landing-check-result { margin-top: 1rem; padding: 1rem 1.25rem; border-radius: 10px; font-size: .9rem; line-height: 1.55; }
.landing-check-result.ok { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25); color: #86efac; }
.landing-check-result.err { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.25); color: #fca5a5; }
.landing-checker-note { margin: 1rem 0 0; font-size: .82rem; color: var(--lp-subtle); }
.landing-checker-note a { color: var(--lp-primary); text-decoration: none; font-weight: 500; }
.landing-checker-note a:hover { text-decoration: underline; }

/* ── form controls */
.form-label { display: block; margin-bottom: .35rem; font-size: .83rem; font-weight: 600; color: var(--lp-muted); }
.form-control, .form-select {
  width: 100%; padding: .7rem .95rem;
  border: 1px solid var(--lp-border); border-radius: 10px;
  font-family: inherit; font-size: .9rem;
  background: rgba(255,255,255,.04); color: var(--lp-text);
  transition: border-color .15s, box-shadow .15s, background .15s;
  -webkit-appearance: none; appearance: none;
}
.form-control::placeholder { color: var(--lp-subtle); }
.form-control:focus, .form-select:focus {
  outline: none; border-color: rgba(59,130,246,.55);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12); background: rgba(59,130,246,.04);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239fb0c8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; padding-right: 2.25rem; cursor: pointer;
}
.form-select option { background: #121d2f; color: var(--lp-text); }
.mb-2 { margin-bottom: 0.55rem; }
.mb-3 { margin-bottom: 1.1rem; }
.row { display: flex; flex-wrap: wrap; margin: 0 -.5rem; }
.col-md-6, .col-12 { padding: 0 .5rem; width: 100%; }
.g-3 > * + * { margin-top: .75rem; }
.alert { padding: .85rem 1rem; border-radius: 10px; margin-bottom: 1rem; font-size: .88rem; line-height: 1.5; }
.alert-success { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2); color: #86efac; }
.alert-danger   { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); color: #fca5a5; }
.landing-lead-magnet .landing-checker-grid > div > .btn { margin-top: 1.25rem; display: inline-flex; }

/* ── pricing */
.landing-pricing { background: var(--lp-section); }
.landing-billing-toggle {
  display: inline-flex; margin-top: 1.5rem; padding: 4px;
  background: rgba(255,255,255,.06); border: 1px solid var(--lp-border); border-radius: 999px;
}
.landing-billing-toggle button {
  border: 0; background: transparent; padding: .5rem 1.35rem; border-radius: 999px;
  font-weight: 600; font-size: .83rem; cursor: pointer; font-family: inherit;
  color: var(--lp-muted); transition: background .2s, color .2s, box-shadow .2s;
}
.landing-billing-toggle button.active { background: var(--lp-primary); color: #fff; box-shadow: 0 2px 12px rgba(59,130,246,.4); }
.landing-billing-yearly-note { font-size: .72rem; opacity: .8; margin-left: .2rem; }
.landing-pricing-gratis-inline { white-space: nowrap; }
.landing-plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; align-items: stretch; }
.landing-plan-card {
  position: relative; background: var(--lp-card);
  border: 1px solid var(--lp-border); border-radius: var(--lp-radius);
  padding: 2rem; display: flex; flex-direction: column;
  box-shadow: var(--lp-card-shadow); transition: transform .2s, border-color .2s, box-shadow .2s;
}
.landing-plan-card:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.landing-plan-card.is-highlight {
  border-color: rgba(59,130,246,.5);
  background: linear-gradient(160deg,#152240 0%,#121d2f 60%);
  box-shadow: 0 0 0 1px rgba(59,130,246,.2),var(--lp-glow),var(--lp-card-shadow);
  transform: scale(1.03); z-index: 1;
}
.landing-plan-card.is-highlight:hover { transform: scale(1.03) translateY(-3px); }
.landing-plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg,var(--lp-primary),#60a5fa);
  color: #fff; font-size: .68rem; font-weight: 700;
  padding: .3rem .85rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(59,130,246,.5);
}
.landing-plan-card h3 { margin: 0 0 1rem; font-size: 1.15rem; font-weight: 700; color: var(--lp-text); letter-spacing: -.01em; }
.landing-plan-price { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--lp-border); }
.landing-plan-price-row { display: flex; align-items: baseline; gap: .25rem; line-height: 1; }
.price-value { font-size: 2.6rem; font-weight: 800; color: var(--lp-text); letter-spacing: -.03em; }
.price-currency { font-size: 1.1rem; font-weight: 600; color: var(--lp-muted); align-self: flex-start; padding-top: .4rem; }
.price-period { display: block; font-size: .8rem; color: var(--lp-subtle); margin-top: .5rem; font-weight: 500; }
.landing-plan-limits { list-style: none; margin: 0 0 1rem; padding: 0; font-size: .88rem; display: flex; flex-direction: column; gap: .4rem; }
.landing-plan-limits li { color: var(--lp-muted); display: flex; align-items: center; gap: .4rem; }
.landing-plan-limits li::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--lp-primary); flex-shrink: 0; }
.landing-plan-limits strong { color: var(--lp-text); }
.landing-plan-features { list-style: none; margin: 0 0 1.5rem; padding: 0; font-size: .85rem; flex: 1; }
.landing-plan-features li { padding: .35rem 0 .35rem 1.5rem; position: relative; color: var(--lp-muted); border-bottom: 1px solid rgba(255,255,255,.04); }
.landing-plan-features li:last-child { border-bottom: 0; }
.landing-plan-features li.yes::before { content: ''; position: absolute; left: 0; top: .7em; width: 8px; height: 8px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2322c55e' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.landing-plan-features li.no { opacity: .45; text-decoration: line-through; }
.landing-plan-features li.no::before { content: '—'; position: absolute; left: 0; font-size: .75rem; color: var(--lp-subtle); }
.landing-plan-card .btn { margin-top: auto; }

/* ── steps */
.landing-steps-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; list-style: none; margin: 0; padding: 0; position: relative; }
.landing-steps-list::before { content: ''; position: absolute; top: 1.25rem; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent 5%,var(--lp-border) 30%,var(--lp-border) 70%,transparent 95%); }
.landing-steps-list li { background: var(--lp-card); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 2rem 1.75rem; position: relative; transition: border-color .2s,transform .2s; }
.landing-steps-list li:hover { border-color: rgba(59,130,246,.3); transform: translateY(-3px); }
.step-num { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--lp-primary); color: #fff; font-weight: 800; font-size: .9rem; margin-bottom: 1rem; box-shadow: 0 4px 14px rgba(59,130,246,.4); }
.landing-steps-list h3 { margin: 0 0 .5rem; font-size: 1rem; font-weight: 700; color: var(--lp-text); }
.landing-steps-list p { margin: 0; color: var(--lp-muted); font-size: .87rem; line-height: 1.65; }

/* ── FAQ */
.landing-faq { background: var(--lp-bg); }
.landing-faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { background: var(--lp-card); border: 1px solid var(--lp-border); border-radius: 12px; margin-bottom: .75rem; overflow: hidden; transition: border-color .2s; }
.faq-item[open] { border-color: rgba(59,130,246,.35); }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: .95rem; padding: 1.1rem 1.25rem; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--lp-text); user-select: none; gap: 1rem; transition: color .15s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #93c5fd; }
.faq-chevron { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,.06); border: 1px solid var(--lp-border); flex-shrink: 0; transition: background .2s; }
.faq-chevron svg { stroke: var(--lp-muted); transition: transform .25s; width: 14px; height: 14px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.faq-item[open] .faq-chevron { background: rgba(59,130,246,.15); border-color: rgba(59,130,246,.3); }
.faq-item[open] .faq-chevron svg { transform: rotate(180deg); stroke: #93c5fd; }
.faq-item p { margin: 0; padding: 0 1.25rem 1.25rem; color: var(--lp-muted); font-size: .9rem; line-height: 1.7; }

/* ── contact */
.landing-contact { background: var(--lp-section); }
.landing-contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: start; }
.landing-contact-grid > div > h2 { font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800; letter-spacing: -.025em; margin: 0 0 .85rem; }
.landing-contact-grid > div > p { color: var(--lp-muted); font-size: .95rem; line-height: 1.7; margin: 0 0 1.5rem; }
.landing-contact-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.landing-contact-info { list-style: none; padding: 0; margin: 2rem 0 0; color: var(--lp-subtle); font-size: .85rem; }
.landing-contact-info a { color: var(--lp-primary); text-decoration: none; }

/* ── CTA band */
.landing-cta-band {
  background: linear-gradient(135deg,#0f2d5c 0%,#1e3a6e 50%,#0f2d5c 100%);
  border-top: 1px solid rgba(59,130,246,.2); border-bottom: 1px solid rgba(59,130,246,.2);
  padding: 4rem 0; position: relative; overflow: hidden;
}
.landing-cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%,rgba(59,130,246,.2),transparent 70%); pointer-events: none; }
.landing-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; }
.landing-cta-inner h2 { margin: 0 0 .4rem; font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800; letter-spacing: -.025em; color: #fff; }
.landing-cta-inner p { margin: 0; color: rgba(255,255,255,.65); font-size: .95rem; }

/* ── footer */
.landing-footer { padding: 2.5rem 0 1.5rem; background: var(--lp-section); border-top: 1px solid var(--lp-border); }
.landing-footer-inner { display: flex; flex-direction: column; gap: 1.5rem; }
.landing-footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.landing-footer-brand { display: flex; align-items: center; gap: .5rem; }
.landing-footer-brand-text { font-weight: 700; font-size: .95rem; color: var(--lp-text); }
.landing-footer-brand-text strong { color: var(--lp-primary); }
.landing-footer-tagline { font-size: .8rem; color: var(--lp-subtle); margin-top: .2rem; }
.landing-footer-nav { display: flex; flex-wrap: wrap; gap: .35rem 1.5rem; list-style: none; margin: 0; padding: 0; }
.landing-footer-nav a, .landing-footer-nav .cookie-settings-link { color: var(--lp-subtle); text-decoration: none; font-size: .85rem; font-weight: 500; transition: color .15s; background: none; border: 0; cursor: pointer; font-family: inherit; padding: 0; }
.landing-footer-nav a:hover, .landing-footer-nav .cookie-settings-link:hover { color: var(--lp-text); }
.landing-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; padding-top: 1.5rem; border-top: 1px solid var(--lp-border); font-size: .8rem; color: var(--lp-subtle); }

/* ── scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-mockup { animation: none; }
  .hero-kw-row { animation: none; }
}

/* ── legal */
.landing-header-legal .landing-nav-legal a[aria-current="page"] { color: var(--lp-primary); font-weight: 600; }
.legal-page { padding: 2.5rem 0 4rem; background: var(--lp-bg); }
.legal-document { max-width: 820px; margin: 0 auto; background: var(--lp-card); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 2rem 2.25rem; box-shadow: var(--lp-card-shadow); color: var(--lp-muted); }
.legal-document h1 { font-size: clamp(1.6rem,3vw,2rem); font-weight: 800; margin: 0 0 1.5rem; line-height: 1.2; color: var(--lp-text); }
.legal-document h2 { font-size: 1.1rem; font-weight: 700; margin: 2rem 0 .75rem; color: var(--lp-text); }
.legal-document p, .legal-document li { color: var(--lp-muted); font-size: .93rem; line-height: 1.72; }
.legal-document ol, .legal-document ul { padding-left: 1.35rem; margin: .5rem 0 1rem; }
.legal-document a { color: var(--lp-primary); }
.legal-updated { font-size: .82rem; color: var(--lp-subtle); margin: 0 0 .5rem; }
.legal-box { background: rgba(59,130,246,.08); border-left: 3px solid var(--lp-primary); padding: 1rem 1.25rem; border-radius: 0 8px 8px 0; margin: 1rem 0; }
.legal-box p { margin: 0; }
.legal-table-wrap { overflow-x: auto; margin: 1rem 0; }
.legal-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.legal-table th, .legal-table td { border: 1px solid var(--lp-border); padding: .65rem .75rem; text-align: left; vertical-align: top; color: var(--lp-muted); }
.legal-table th { background: rgba(255,255,255,.04); font-weight: 600; color: var(--lp-text); }
code { background: rgba(255,255,255,.06); border: 1px solid var(--lp-border); padding: .1rem .4rem; border-radius: 4px; font-size: .85em; color: #93c5fd; }

/* ── responsive */
@media (min-width: 768px) {
  .col-md-6 { width: 50%; }
  .g-3 > * + * { margin-top: 0; }
}
@media (max-width: 960px) {
  .landing-hero-grid,
  .landing-checker-grid,
  .landing-contact-grid { grid-template-columns: 1fr; }
  .landing-platform-summary,
  .landing-features,
  .landing-plans,
  .landing-steps-list { grid-template-columns: 1fr 1fr; }
  .landing-plan-card.is-highlight { transform: none; }
  .landing-plan-card.is-highlight:hover { transform: translateY(-3px); }
  .landing-steps-list::before { display: none; }
  .landing-nav-toggle { display: flex; }
  .landing-nav {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: rgba(7,17,31,.97); backdrop-filter: blur(20px);
    padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--lp-border);
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease; gap: .25rem;
  }
  .landing-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .landing-nav a { padding: .75rem 0; border-bottom: 1px solid var(--lp-border); color: var(--lp-muted); font-size: .95rem; }
  .landing-nav a.btn { text-align: center; margin-top: .5rem; border: 0; }
  .landing-nav a:last-of-type { border-bottom: 0; }
  .landing-cta-inner { flex-direction: column; text-align: center; }
  .landing-cta-inner .btn { width: 100%; max-width: 320px; }
  .landing-footer-top { flex-direction: column; }
}
@media (max-width: 640px) {
  .container { width: min(1160px,calc(100% - 1.5rem)); }
  .landing-header-inner { min-height: 60px; }
  .landing-hero { padding: 3.5rem 0 4rem; }
  .landing-hero h1 { font-size: clamp(1.75rem,8vw,2.2rem); }
  .landing-lead { font-size: .95rem; }
  .landing-hero-cta { flex-direction: column; }
  .landing-hero-cta .btn { width: 100%; justify-content: center; }
  .landing-section { padding: 3.5rem 0; }
  .landing-platform-summary,
  .landing-features,
  .landing-plans,
  .landing-steps-list { grid-template-columns: 1fr; }
  .hero-stats-row { grid-template-columns: repeat(3,1fr); }
  .hero-stat-value { font-size: .95rem; }
  .landing-checker-card, .landing-contact-card { padding: 1.35rem; }
  .price-value { font-size: 2.2rem; }
  .landing-billing-toggle { width: 100%; max-width: 300px; }
  .landing-billing-toggle button { flex: 1; min-width: 0; }
  .landing-billing-toggle button[data-period="yearly"] {
    font-size: .95rem; padding: .45rem .65rem; line-height: 1.25; text-align: center;
  }
  .landing-billing-yearly-note {
    display: block; margin-left: 0; margin-top: .2rem; white-space: nowrap; font-size: .68rem;
  }
  .landing-pricing-gratis-inline { display: block; margin-top: .2rem; white-space: nowrap; }
  .legal-document { padding: 1.25rem 1rem; }
  .landing-nav-legal { display: none; }
}
.w-100 { width: 100%; }
.landing-lead-card .landing-lead-alert { margin-bottom: 1rem; }

/* ── form-check (checkbox) */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
  margin-top: 1.25rem;
}
.form-check-input {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: .15rem;
  accent-color: var(--lp-primary);
  cursor: pointer;
  border-radius: 4px;
}
.form-check-label {
  font-size: .82rem;
  color: var(--lp-muted);
  line-height: 1.55;
  cursor: pointer;
}
.form-check-label a {
  color: #60a5fa;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.form-check-label a:hover { color: #93c5fd; }
