/* My Business Manager — public landing (light, fresh) */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,600;0,9..144,700&display=swap");

:root {
  --lp-bg: #fdf7ec;
  --lp-surface: #ffffff;
  --lp-border: rgba(180, 132, 40, 0.22);
  --lp-text: #1f2933;
  --lp-muted: #6b7280;
  --lp-gold: #c58a1a;
  --lp-gold-soft: #fcd38b;
  --lp-gold-deep: #a86e12;
  --lp-radius: 20px;
  --lp-font: "Outfit", system-ui, sans-serif;
  --lp-display: "Fraunces", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body.lp {
  margin: 0;
  min-height: 100vh;
  font-family: var(--lp-font);
  color: var(--lp-text);
  background: var(--lp-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.lp-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 900px 480px at 10% -8%, rgba(245, 208, 128, 0.6), transparent 55%),
    radial-gradient(ellipse 800px 420px at 95% 5%, rgba(250, 204, 21, 0.45), transparent 50%),
    radial-gradient(ellipse 600px 380px at 50% 100%, rgba(248, 250, 252, 0.8), transparent 45%),
    linear-gradient(180deg, #fffaf1 0%, #fdf5e6 40%, #fbf1dd 100%);
}

.lp-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 max(1rem, env(safe-area-inset-left)) 0 max(1rem, env(safe-area-inset-right));
}

.lp-wrap--wide {
  max-width: 1120px;
}

/* Header & responsive nav */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(180deg, rgba(244, 251, 248, 0.97) 0%, rgba(244, 251, 248, 0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 118, 110, 0.08);
  padding-top: env(safe-area-inset-top);
}

.lp-nav-inner {
  position: relative;
  padding-top: 0.85rem;
  padding-bottom: 0.65rem;
}

.lp-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.lp-logo-img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.lp-logo-text {
  font-weight: 700;
  font-size: clamp(0.9rem, 2.8vw, 1.02rem);
  letter-spacing: -0.02em;
  color: var(--lp-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-nav-toggle {
  display: none;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  background: var(--lp-surface);
  color: var(--lp-text);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}

.lp-nav-toggle:hover {
  border-color: rgba(13, 148, 136, 0.35);
  background: #fff;
}

.lp-nav-toggle-icon {
  position: absolute;
  font-size: 1.35rem;
  line-height: 1;
}

.lp-nav-toggle-icon--close {
  display: none;
}

body.lp-nav-open .lp-nav-toggle-icon--open {
  display: none;
}

body.lp-nav-open .lp-nav-toggle-icon--close {
  display: block;
}

.lp-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

body.lp-nav-open .lp-nav-backdrop {
  display: block;
}

body.lp-nav-open {
  overflow: hidden;
  touch-action: none;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lp-nav-links a:not(.lp-btn) {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}

.lp-nav-links a:not(.lp-btn):hover {
  color: var(--lp-gold-deep);
  background: rgba(250, 204, 21, 0.12);
}

.lp-nav-cta {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 899px) {
  .lp-nav-toggle {
    display: inline-flex;
  }

  .lp-nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 160;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.15rem;
    padding: 0.65rem 0.75rem;
    margin: 0;
    background: var(--lp-surface);
    border-radius: 16px;
    border: 1px solid var(--lp-border);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  }

  body.lp-nav-open .lp-nav-links {
    display: flex;
  }

  .lp-nav-links a:not(.lp-btn) {
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
  }

  .lp-nav-links .lp-nav-cta {
    margin-top: 0.35rem;
    margin-bottom: 0.15rem;
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 900px) {
  .lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.1rem;
    padding-bottom: 0.75rem;
  }

  .lp-nav-bar {
    flex: 0 0 auto;
    width: auto;
  }

  .lp-logo {
    flex: 0 1 auto;
  }

  .lp-logo-text {
    white-space: nowrap;
  }

  .lp-nav-links {
    flex: 1;
    justify-content: flex-end;
  }
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.lp-btn:active {
  transform: scale(0.98);
}

.lp-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #facc6b, #eab308);
  box-shadow: 0 6px 20px rgba(202, 138, 4, 0.35);
}

.lp-btn--primary:hover {
  box-shadow: 0 10px 28px rgba(202, 138, 4, 0.45);
  color: #fff;
}

.lp-btn--ghost {
  color: var(--lp-gold-deep);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--lp-border);
}

.lp-btn--ghost:hover {
  border-color: rgba(202, 138, 4, 0.48);
  background: #fff;
}

/* Hero */
.lp-hero {
  padding: 1.75rem 0 3.5rem;
  text-align: center;
}

@media (min-width: 600px) {
  .lp-hero {
    padding: 2.5rem 0 5rem;
  }
}

@media (min-width: 768px) {
  .lp-hero {
    padding: 3.5rem 0 5.5rem;
  }
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-gold-deep);
  background: rgba(245, 208, 128, 0.18);
  border: 1px solid rgba(213, 134, 23, 0.36);
  margin-bottom: 1.35rem;
}

.lp-hero h1 {
  font-family: var(--lp-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  color: var(--lp-text);
}

.lp-hero h1 .lp-gradient {
  background: linear-gradient(115deg, #facc6b 0%, #eab308 45%, #a16207 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-lead {
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  font-size: clamp(0.98rem, 2.5vw, 1.08rem);
  color: var(--lp-muted);
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 420px) {
  .lp-hero-cta .lp-btn {
    width: 100%;
    max-width: 20rem;
  }
}

/* Products */
.lp-section {
  padding: 0 0 3rem;
}

@media (min-width: 768px) {
  .lp-section {
    padding-bottom: 4rem;
  }
}

.lp-section h2 {
  font-family: var(--lp-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

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

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

@media (min-width: 768px) {
  .lp-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s;
}

.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13, 148, 136, 0.12);
}

.lp-card-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.lp-card-ico.teal {
  background: linear-gradient(145deg, rgba(245, 208, 128, 0.6), rgba(248, 250, 252, 0.4));
  color: var(--lp-gold-deep);
  border: 1px solid rgba(217, 119, 6, 0.35);
}

.lp-card-ico.sky {
  background: linear-gradient(145deg, rgba(254, 240, 138, 0.8), rgba(253, 224, 71, 0.5));
  color: #a16207;
  border: 1px solid rgba(202, 138, 4, 0.32);
}

.lp-card-ico.lime {
  background: linear-gradient(145deg, rgba(253, 230, 138, 0.85), rgba(252, 211, 77, 0.55));
  color: #854d0e;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.lp-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-card p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* About */
.lp-about {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0.5rem 0 0;
}

.lp-about p {
  margin: 0 0 1rem;
  color: var(--lp-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.lp-about p:last-child {
  margin-bottom: 0;
}

.lp-about strong {
  color: var(--lp-text);
}

.lp-section--about {
  padding-top: 0.5rem;
}

/* Pricing */
.lp-section--pricing {
  padding-bottom: 3rem;
}

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

@media (min-width: 900px) {
  .lp-grid--pricing {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.lp-price-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s;
}

.lp-price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(13, 148, 136, 0.1);
}

.lp-price-card--featured {
  border-color: rgba(13, 148, 136, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, rgba(240, 253, 250, 0.85) 100%);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.12);
}

.lp-price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-teal), #0f766e);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.lp-price-head h3 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-price-tagline {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--lp-muted);
}

.lp-price-line {
  margin: 0 0 0.25rem;
}

.lp-price-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lp-teal);
}

.lp-price-sub {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--lp-muted);
}

.lp-price-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.lp-price-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  color: var(--lp-muted);
}

.lp-price-list li:last-child {
  margin-bottom: 0;
}

.lp-price-list .bi-check2 {
  flex-shrink: 0;
  color: var(--lp-gold-deep);
  margin-top: 0.2rem;
}

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

.lp-pricing-note {
  text-align: center;
  margin: 1.75rem 0 0;
  font-size: 0.92rem;
  color: var(--lp-muted);
}

/* Contact */
.lp-section--contact {
  padding-bottom: 4rem;
}

.lp-contact {
  max-width: 32rem;
  margin: 0 auto;
}

.lp-contact-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.lp-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.lp-contact-row:last-child {
  margin-bottom: 0;
}

.lp-contact-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--lp-gold-deep);
  background: rgba(252, 211, 77, 0.16);
  border: 1px solid rgba(217, 119, 6, 0.28);
}

.lp-contact-row strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-muted);
  margin-bottom: 0.2rem;
}

.lp-contact-row a {
  color: var(--lp-gold-deep);
  font-weight: 600;
  text-decoration: none;
}

.lp-contact-row a:hover {
  text-decoration: underline;
}

.lp-contact-text {
  color: var(--lp-text);
  font-weight: 500;
}

/* Footer */
.lp-footer {
  padding: 1.75rem 0 calc(2.25rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--lp-border);
  text-align: center;
}

.lp-footer p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--lp-muted);
}

.lp-footer a {
  color: var(--lp-gold-deep);
  text-decoration: none;
  font-weight: 500;
}

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

.lp-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  justify-content: center;
  margin-bottom: 0.85rem;
}

@media (max-width: 400px) {
  .lp-footer-nav {
    flex-direction: column;
    align-items: center;
  }
}

.lp-footer-nav a {
  color: var(--lp-muted);
  font-size: 0.88rem;
}

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