:root {
  --lp-primary: #223F97;
  --lp-secondary: #44B54F;
  --lp-text: #52525B;
  --lp-muted: #777777;
  --lp-bg: #f5fAf2;
  --lp-white: #ffffff;
  --lp-dark: #2f3a47;
  --lp-gradient: linear-gradient(135deg, #1a3a7a 0%, #223F97 45%, #2a6b4a 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.landing-page {
  margin: 0;
  font-family: "Saira", sans-serif;
  color: var(--lp-text);
  background: var(--lp-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(34, 63, 151, 0.08);
}

.lp-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.lp-header-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: var(--lp-primary);
  font-weight: 500;
}

.lp-header-contact a {
  color: inherit;
  text-decoration: none;
}

.lp-header-contact a:hover {
  color: var(--lp-secondary);
}

.lp-hero {
  position: relative;
  background: var(--lp-gradient);
  color: var(--lp-white);
  overflow: hidden;
  min-height: min(88vh, 640px);
  display: flex;
  align-items: center;
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(68, 181, 79, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.lp-hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 4rem;
  width: 100%;
}

.lp-brand-name {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.lp-hero h1 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
  max-width: 36rem;
  line-height: 1.35;
  opacity: 0.95;
}

.lp-hero-lead {
  font-size: 1.05rem;
  max-width: 32rem;
  margin: 0 0 1.75rem;
  opacity: 0.88;
  font-weight: 400;
}

.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lp-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.lp-btn-primary {
  background: var(--lp-secondary);
  color: var(--lp-white);
  box-shadow: 0 4px 14px rgba(68, 181, 79, 0.35);
}

.lp-btn-primary:hover {
  background: #3aa345;
  color: var(--lp-white);
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-white);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.lp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--lp-white);
}

.lp-btn-block {
  width: 100%;
}

.lp-compliance-bar {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
  line-height: 1.45;
}

.lp-compliance-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  opacity: 0.95;
}

.lp-section {
  padding: 3.5rem 1.25rem;
}

.lp-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.lp-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--lp-primary);
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-align: center;
}

.lp-section h2 .lp-accent {
  color: var(--lp-secondary);
}

.lp-section-sub {
  text-align: center;
  color: var(--lp-muted);
  max-width: 40rem;
  margin: 0 auto 2rem;
  font-size: 1rem;
}

.lp-offer {
  background: var(--lp-bg);
}

.lp-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.lp-stat {
  background: var(--lp-white);
  padding: 1.25rem 1rem;
  text-align: center;
  border-left: 3px solid var(--lp-secondary);
}

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

.lp-stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lp-primary);
  line-height: 1.2;
}

.lp-stat-desc {
  font-size: 0.8rem;
  color: var(--lp-muted);
  margin-top: 0.25rem;
}

.lp-ventures {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--lp-text);
}

.lp-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--lp-muted);
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.lp-form-section {
  background: var(--lp-white);
}

.lp-form-wrap {
  max-width: 420px;
  margin: 0 auto;
  background: var(--lp-bg);
  padding: 2rem 1.5rem;
}

.lp-form-wrap label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-primary);
  margin-bottom: 0.35rem;
}

.lp-form-wrap .form-group {
  margin-bottom: 1rem;
}

.lp-form-wrap input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #d0d5dd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--lp-white);
}

.lp-form-wrap input:focus {
  outline: none;
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 3px rgba(34, 63, 151, 0.12);
}

.lp-form-wrap .help-block {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.lp-alert {
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.lp-alert-success {
  background: #e4f3e6;
  color: #1e6b2a;
}

.lp-alert-error {
  background: #fdecea;
  color: #a12c24;
}

.lp-trust {
  background: #f7f8fa;
}

.lp-trust-block {
  margin-bottom: 2.5rem;
}

.lp-trust-block:last-child {
  margin-bottom: 0;
}

.lp-logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.5rem;
}

.lp-logo-grid a,
.lp-logo-grid .lp-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 70px;
}

.lp-logo-grid img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: darken;
}

.lp-flag-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
}

.lp-flag-circle {
  display: inline-block;
  height: 48px;
  min-width: 48px;
  background: #fff;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  padding: 2px;
}

.lp-flag-circle img {
  height: 100%;
  width: auto;
  display: block;
  max-width: 100%;
}

.lp-footer {
  background: var(--lp-dark);
  color: #fff;
  padding: 2.5rem 1.25rem 0;
  font-size: 0.9rem;
}

.lp-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.lp-footer h3 {
  color: var(--lp-secondary);
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.lp-footer p,
.lp-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin: 0 0 0.4rem;
  line-height: 1.5;
}

.lp-footer a:hover {
  color: var(--lp-secondary);
}

.lp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-footer-links li {
  margin-bottom: 0.5rem;
}

.lp-footer-bottom {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.lp-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  animation: lp-wa-pulse 2s ease-in-out infinite;
}

.lp-whatsapp-float:hover {
  color: #fff;
  transform: scale(1.06);
}

@keyframes lp-wa-pulse {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.15);
  }
}

.lp-legal-page {
  padding: 3rem 1.25rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.lp-legal-page h1 {
  color: var(--lp-primary);
  font-size: 1.85rem;
  margin-bottom: 1.5rem;
}

.lp-legal-page h2,
.lp-legal-page h3 {
  color: var(--lp-primary);
  font-size: 1.15rem;
  margin-top: 1.75rem;
}

.lp-legal-page p,
.lp-legal-page li {
  color: var(--lp-text);
  font-size: 0.95rem;
}

.lp-legal-page ul {
  padding-left: 1.25rem;
}

@media (max-width: 768px) {
  .lp-header-contact span.hide-sm {
    display: none;
  }

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

  .lp-hero-inner {
    padding: 2.5rem 1.25rem 3rem;
  }

  .lp-whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-btn,
  .lp-whatsapp-float {
    animation: none;
    transition: none;
  }
}
