/* PROFISYSTEM — Landing corporativa (isolada do app / login) */
:root {
  --lp-bg: #070b14;
  --lp-bg-2: #0d1424;
  --lp-card: rgba(255, 255, 255, 0.04);
  --lp-border: rgba(255, 255, 255, 0.08);
  --lp-text: #e8edf7;
  --lp-muted: #94a3b8;
  --lp-accent: #7c3aed;
  --lp-accent-2: #2563eb;
  --lp-green: #10b981;
  --lp-glow: rgba(124, 58, 237, 0.35);
  --lp-radius: 16px;
  --lp-max: 1120px;
  --lp-font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --lp-display: 'Sora', var(--lp-font);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body.lp {
  margin: 0;
  font-family: var(--lp-font);
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

.lp-hidden { display: none !important; }

.lp-bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(124, 58, 237, 0.12), transparent),
    radial-gradient(ellipse 40% 35% at 90% 10%, rgba(37, 99, 235, 0.1), transparent),
    radial-gradient(ellipse 45% 30% at 50% 100%, rgba(16, 185, 129, 0.06), transparent);
}

body.lp > *:not(.lp-bg-glow) { position: relative; z-index: 1; }

.lp a { color: inherit; text-decoration: none; }

.lp-wrap {
  width: min(100% - 40px, var(--lp-max));
  margin-inline: auto;
}

/* Header */
.lp-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(7, 11, 20, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lp-border);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.lp-brand-text {
  font-family: var(--lp-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.lp-brand-text span { color: var(--lp-accent); }

.lp-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lp-nav a:not(.lp-btn) {
  font-size: 0.92rem;
  color: var(--lp-muted);
  transition: color 0.2s;
}

.lp-nav a:not(.lp-btn):hover { color: var(--lp-text); }

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.lp-btn:hover { transform: translateY(-1px); }

.lp-btn-primary {
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #fff;
  box-shadow: 0 8px 28px var(--lp-glow);
}

.lp-btn-primary:hover {
  box-shadow: 0 12px 36px var(--lp-glow);
}

.lp-btn-ghost {
  background: transparent;
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}

.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.lp-btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.lp-btn-wa:hover {
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.lp-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--lp-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* Hero */
.lp-hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(124, 58, 237, 0.22), transparent),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(37, 99, 235, 0.18), transparent);
  pointer-events: none;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: #c4b5fd;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.lp-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-green);
  box-shadow: 0 0 10px var(--lp-green);
  animation: lp-pulse 2s ease infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.lp-hero h1 {
  font-family: var(--lp-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

.lp-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #c4b5fd, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero-lead {
  font-size: 1.12rem;
  color: var(--lp-muted);
  max-width: 540px;
  margin: 0 0 32px;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.lp-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.lp-stat strong {
  display: block;
  font-family: var(--lp-display);
  font-size: 1.6rem;
  color: #fff;
}

.lp-stat span {
  font-size: 0.85rem;
  color: var(--lp-muted);
}

.lp-hero-visual {
  position: relative;
}

.lp-mockup {
  border-radius: 20px;
  border: 1px solid var(--lp-border);
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  padding: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.lp-mockup-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.lp-mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.lp-mockup-bar span:first-child { background: #ef4444; }
.lp-mockup-bar span:nth-child(2) { background: #f59e0b; }
.lp-mockup-bar span:nth-child(3) { background: #22c55e; }

.lp-mockup-body {
  display: grid;
  gap: 12px;
}

.lp-mockup-card {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--lp-border);
  font-size: 0.88rem;
}

.lp-mockup-card strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.lp-float-chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-size: 0.8rem;
  color: #6ee7b7;
  backdrop-filter: blur(8px);
}

.lp-float-chip--1 { top: -12px; right: -8px; }
.lp-float-chip--2 { bottom: 24px; left: -16px; }

/* Sections */
.lp-section {
  padding: 88px 0;
}

.lp-section-alt {
  background: var(--lp-bg-2);
  border-block: 1px solid var(--lp-border);
}

.lp-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.lp-section-head h2 {
  font-family: var(--lp-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.lp-section-head p {
  color: var(--lp-muted);
  margin: 0;
  font-size: 1.05rem;
}

.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.lp-card {
  padding: 28px;
  border-radius: var(--lp-radius);
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  transition: border-color 0.2s, transform 0.2s;
}

.lp-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-3px);
}

.lp-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: rgba(124, 58, 237, 0.15);
}

.lp-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.lp-card p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.95rem;
}

.lp-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--lp-muted);
  font-size: 0.98rem;
}

.lp-checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--lp-green);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* CTA / newsletter */
.lp-cta {
  padding: 72px 0;
  text-align: center;
}

.lp-cta-box {
  padding: 48px 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(37, 99, 235, 0.12));
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.lp-cta-box h2 {
  font-family: var(--lp-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 12px;
}

.lp-cta-box > p {
  color: var(--lp-muted);
  margin: 0 0 28px;
  max-width: 520px;
  margin-inline: auto;
}

.lp-newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto 14px;
}

.lp-newsletter input {
  flex: 1 1 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: rgba(0, 0, 0, 0.3);
  color: var(--lp-text);
  font-size: 0.95rem;
  outline: none;
}

.lp-newsletter input:focus {
  border-color: rgba(124, 58, 237, 0.5);
}

.lp-newsletter input::placeholder { color: #64748b; }

.lp-newsletter button {
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lp-muted);
  font-weight: 600;
  cursor: not-allowed;
}

.lp-cta-hint {
  font-size: 0.82rem;
  color: #64748b;
}

.lp-cta-login {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--lp-border);
}

.lp-cta-login p {
  color: var(--lp-muted);
  margin: 0 0 14px;
  font-size: 0.95rem;
}

/* Contact */
.lp-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-contact-item {
  padding: 24px;
  border-radius: var(--lp-radius);
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  text-align: center;
}

.lp-contact-item strong {
  display: block;
  margin-bottom: 8px;
}

.lp-contact-item a {
  color: #93c5fd;
}

.lp-contact-item a:hover { text-decoration: underline; }

/* Footer */
.lp-footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--lp-border);
}

.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.lp-footer-brand {
  font-family: var(--lp-display);
  font-weight: 700;
}

.lp-footer-tagline {
  font-size: 0.85rem;
  color: var(--lp-muted);
  margin-top: 4px;
}

.lp-footer-copy {
  font-size: 0.82rem;
  color: #64748b;
}

/* WhatsApp float */
.lp-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}

.lp-wa:hover { transform: scale(1.06); }

/* Trust bar */
.lp-trust {
  border-block: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px 0;
  overflow: hidden;
}

.lp-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp-trust-inner span {
  white-space: nowrap;
}

/* Cards glow */
.lp-card--glow {
  border-color: rgba(124, 58, 237, 0.25);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.08), rgba(255, 255, 255, 0.03));
}

.lp-mockup-card--highlight {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.1);
}

.lp-mockup-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c4b5fd;
  margin-bottom: 6px;
}

.lp-float-chip--3 {
  top: 50%;
  right: -12px;
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
  color: #93c5fd;
}

/* Steps */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lp-step {
  padding: 24px;
  border-radius: var(--lp-radius);
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
}

.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #fff;
  font-weight: 800;
  font-family: var(--lp-display);
  margin-bottom: 14px;
}

.lp-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.lp-step p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.92rem;
}

/* Bento grid */
.lp-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-bento-item {
  padding: 24px;
  border-radius: var(--lp-radius);
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
}

.lp-bento-item--wide { grid-column: span 2; }

.lp-bento-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.lp-bento-item p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.92rem;
}

/* Split + quote */
.lp-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.lp-section-head--left { text-align: left; margin-inline: 0; }

.lp-quote-card {
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(37, 99, 235, 0.1));
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.lp-quote {
  font-size: 1.15rem;
  line-height: 1.55;
  margin: 0 0 16px;
  font-weight: 500;
}

.lp-quote-author {
  font-size: 0.82rem;
  color: var(--lp-muted);
}

.lp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.lp-contact-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.lp-contact-empty {
  text-align: center;
  color: var(--lp-muted);
  padding: 24px;
  border: 1px dashed var(--lp-border);
  border-radius: var(--lp-radius);
}

.lp-footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

.lp-footer-links a {
  color: var(--lp-muted);
}

.lp-footer-links a:hover { color: var(--lp-text); }

/* MetroEx integration */
.lp-metroex-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.lp-badge--metroex {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.35);
  color: #93c5fd;
}

.lp-checklist--metroex {
  grid-template-columns: 1fr;
  gap: 12px;
}

.lp-metroex-panel {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lp-metroex-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 700;
  font-family: var(--lp-display);
}

.lp-metroex-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-metroex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--lp-border);
}

.lp-metroex-row--alert {
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.08);
}

.lp-metroex-row strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.lp-metroex-row small {
  color: var(--lp-muted);
  font-size: 0.8rem;
}

.lp-metroex-pill {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(245, 158, 11, 0.2);
  color: #fcd34d;
}

.lp-metroex-pill--ok {
  background: rgba(37, 99, 235, 0.2);
  color: #93c5fd;
}

.lp-metroex-pill--done {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
}

.lp-metroex-foot {
  margin: 16px 0 0;
  font-size: 0.82rem;
  color: var(--lp-muted);
  line-height: 1.45;
}

/* Padrões */
.lp-padroes-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.lp-badge--padroes {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.35);
  color: #6ee7b7;
}

.lp-checklist--padroes {
  grid-template-columns: 1fr;
  gap: 12px;
}

.lp-padroes-panel {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.1), rgba(37, 99, 235, 0.06));
  border: 1px solid rgba(16, 185, 129, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lp-padroes-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 700;
  font-family: var(--lp-display);
}

.lp-padroes-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.lp-padroes-event {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--lp-border);
}

.lp-padroes-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--lp-muted);
}

.lp-padroes-dot--out { background: #f59e0b; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2); }
.lp-padroes-dot--in { background: #10b981; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
.lp-padroes-dot--sync { background: #60a5fa; box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2); }

.lp-padroes-event strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.lp-padroes-event small {
  color: var(--lp-muted);
  font-size: 0.78rem;
}

.lp-padroes-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-padroes-chip {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-padroes-chip--use {
  background: rgba(245, 158, 11, 0.18);
  color: #fcd34d;
}

.lp-padroes-chip--ok {
  background: rgba(16, 185, 129, 0.18);
  color: #6ee7b7;
}

.lp-padroes-chip--warn {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}

/* Responsive */
@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-hero-visual { order: -1; max-width: 420px; margin-inline: auto; }
  .lp-grid-3, .lp-contact-grid { grid-template-columns: 1fr; }
  .lp-grid-2 { grid-template-columns: 1fr; }
  .lp-checklist { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-bento { grid-template-columns: 1fr; }
  .lp-bento-item--wide { grid-column: span 1; }
  .lp-split { grid-template-columns: 1fr; }
  .lp-metroex-grid { grid-template-columns: 1fr; }
  .lp-padroes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .lp-menu-toggle { display: block; }

  .lp-nav {
    position: fixed;
    inset: 60px 16px auto;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 16px;
    background: rgba(13, 20, 36, 0.98);
    border: 1px solid var(--lp-border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }

  .lp-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .lp-nav a { padding: 10px 4px; }
  .lp-hero { padding-top: 110px; }
  .lp-section { padding: 64px 0; }
}
