:root {
  --bg: #09131f;
  --bg-soft: #111d2d;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-2: rgba(255, 255, 255, 0.84);
  --line: rgba(8, 23, 37, 0.1);
  --text: #102235;
  --text-soft: #546577;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 18, 29, 0.12);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 5% 10%, var(--accent-soft), transparent 24%),
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(180deg, #f6f9fc 0%, #eef3f8 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.lp-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(9, 19, 31, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.lp-brand img {
  width: 148px;
  height: auto;
  object-fit: contain;
}

.lp-brand span {
  display: grid;
  gap: 0.1rem;
}

.lp-brand strong {
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.03em;
  font-size: 1rem;
}

.lp-brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lp-link-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 0.92rem;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 54px;
  padding: 0 1.2rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

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

.lp-btn-wa {
  color: #ffffff;
  background: linear-gradient(135deg, #25d366 0%, #169f49 100%);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.24);
}

.lp-btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(9, 19, 31, 0.08);
  box-shadow: var(--shadow);
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.9rem;
  border-radius: 999px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-hero {
  padding: 4rem 0 2rem;
}

.lp-hero-grid,
.lp-proof-layout,
.lp-reviews-shell,
.lp-footer-grid {
  display: grid;
  gap: 1.4rem;
}

.lp-surface,
.lp-card,
.lp-step-card,
.lp-cta-band,
.lp-review-summary,
.lp-review-card,
.lp-faq-item,
.lp-final-cta-shell {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), var(--surface-2)),
    var(--surface);
  box-shadow: var(--shadow);
}

.lp-hero-copy {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.lp-hero-copy::before,
.lp-hero-visual::before,
.lp-final-cta-shell::before {
  content: '';
  position: absolute;
  inset: auto -70px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  pointer-events: none;
}

.lp-hero-copy h1,
.lp-section-head h2,
.lp-final-cta-shell h2,
.lp-review-summary h2 {
  margin: 1rem 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.lp-hero-copy h1 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  max-width: 11ch;
}

.lp-lead,
.lp-section-head p,
.lp-card p,
.lp-step-card p,
.lp-review-summary p,
.lp-review-card p,
.lp-faq-answer p,
.lp-final-cta-shell p,
.lp-proof-copy p,
.lp-footer p {
  color: var(--text-soft);
  line-height: 1.7;
}

.lp-hero-points,
.lp-card-grid,
.lp-step-grid,
.lp-faq-grid,
.lp-footer-links {
  display: grid;
  gap: 1rem;
}

.lp-hero-points {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 1.4rem 0 0;
}

.lp-point {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--surface-tint);
  border: 1px solid rgba(9, 19, 31, 0.06);
}

.lp-point strong,
.lp-card h3,
.lp-step-card h3,
.lp-review-card h3,
.lp-faq-item summary,
.lp-footer strong {
  color: var(--text);
}

.lp-point span {
  display: block;
  margin-top: 0.4rem;
  color: var(--text-soft);
}

.lp-hero-actions,
.lp-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.lp-urgency-note {
  margin: 1rem 0 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.lp-mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.lp-mini-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(9, 19, 31, 0.06);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.lp-hero-visual {
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}

.lp-hero-figure,
.lp-support-figure {
  overflow: hidden;
  border-radius: 24px;
  background: #dfe9f4;
}

.lp-hero-figure img,
.lp-support-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero-figure {
  aspect-ratio: 1 / 0.92;
}

.lp-support-figure {
  aspect-ratio: 16 / 9;
  margin-top: 1rem;
}

.lp-review-badge {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(9, 19, 31, 0.04);
  border: 1px solid rgba(9, 19, 31, 0.08);
}

.lp-review-badge strong,
.lp-review-metric strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.lp-section {
  padding: 2rem 0;
}

.lp-section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.08));
}

.lp-section-tight {
  padding-top: 0.8rem;
}

.lp-section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.lp-section-head h2,
.lp-proof-copy h2,
.lp-review-summary h2,
.lp-final-cta-shell h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
}

.lp-proof-copy {
  display: grid;
  gap: 0.8rem;
}

.lp-seo-proof,
.lp-cta-proof,
.lp-footer-proof {
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border-left: 4px solid var(--accent-strong);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 600;
}

.lp-proof-subtitle {
  margin: 0.4rem 0 0;
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.lp-card,
.lp-step-card,
.lp-review-summary,
.lp-review-card,
.lp-final-cta-shell {
  padding: 1.4rem;
}

.lp-card h4,
.lp-step-card h4,
.lp-review-card h4 {
  margin: 0.4rem 0 0;
  color: var(--accent-strong);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-service-card a,
.lp-link-card a,
.lp-footer-links a {
  color: var(--accent-strong);
  font-weight: 800;
}

.lp-card-grid-services,
.lp-card-grid-links {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lp-step-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lp-step-card {
  position: relative;
}

.lp-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
}

.lp-cta-band {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.lp-review-metric {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
  margin: 1.2rem 0 0.4rem;
}

.lp-review-metric span,
.lp-review-sync {
  color: var(--text-soft);
}

.lp-stars {
  color: #ffb400;
  letter-spacing: 0.18em;
  font-size: 1.1rem;
  font-weight: 800;
}

.lp-review-grid {
  display: grid;
  gap: 1rem;
}

.lp-review-card h4 {
  margin-bottom: 0.8rem;
}

.lp-faq-item {
  overflow: hidden;
}

.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.3rem;
  font-weight: 800;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-answer {
  padding: 0 1.3rem 1.2rem;
}

.lp-final-cta {
  padding-bottom: 6rem;
}

.lp-final-cta-shell {
  display: grid;
  gap: 1rem;
}

.lp-footer {
  background: #0c1623;
  color: rgba(255, 255, 255, 0.78);
  padding: 2rem 0 6rem;
}

.lp-footer-shell {
  display: grid;
  gap: 1.25rem;
}

.lp-footer-grid {
  align-items: start;
}

.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lp-footer-brand {
  display: grid;
  gap: 0.9rem;
}

.lp-footer-proof {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.lp-footer-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.lp-footer-chip-row a,
.lp-footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
}

.lp-footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.lp-footer-contact-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer-contact-card-wide {
  grid-column: span 2;
}

.lp-footer-label {
  color: #ffb400;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-footer-contact-card a,
.lp-footer-contact-card strong {
  color: #ffffff;
  font-weight: 800;
}

.lp-footer-contact-card p {
  margin: 0;
}

.lp-footer-contact-card a:hover,
.lp-footer-links a:hover,
.lp-footer-chip-row a:hover {
  color: #ffb400;
}

.lp-floating-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #25d366 0%, #169f49 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
}

.lp-floating-wa span {
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.9;
}

.lp-floating-wa strong {
  font-size: 0.95rem;
}

@media (min-width: 860px) {
  .lp-hero-grid,
  .lp-proof-layout,
  .lp-reviews-shell,
  .lp-footer-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .lp-footer-shell {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }

  .lp-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-final-cta-shell,
  .lp-cta-band {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }
}

@media (max-width: 859px) {
  .lp-header-inner {
    align-items: flex-start;
  }

  .lp-footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .lp-footer-contact-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .lp-header-actions,
  .lp-hero-actions,
  .lp-cta-band-actions {
    width: 100%;
  }

  .lp-btn,
  .lp-link-chip,
  .lp-hero-actions .lp-btn,
  .lp-cta-band-actions .lp-btn {
    width: 100%;
  }

  .lp-brand {
    width: 100%;
  }

  .lp-brand img {
    width: 124px;
  }

  .lp-hero {
    padding-top: 2rem;
  }

  .lp-hero-copy,
  .lp-hero-visual,
  .lp-card,
  .lp-step-card,
  .lp-review-summary,
  .lp-review-card,
  .lp-final-cta-shell {
    border-radius: 24px;
  }
}