/* ============================================================
   NutraFlex — Landing redesign (NUT-187)
   Dark + light blend, blue→green brand gradient. All rules are
   scoped under body.lp so the blog (style.css) keeps its own
   light theme untouched. Loaded only by the home pages.

   Type: Barlow Condensed for impact display/headings (uppercase
   where it earns it), system stack for body — matches the repo
   brand tokens; Poppins in the reference was a stand-in only.
   ============================================================ */

.lp {
  --blue: #1d51d6;
  --blue-dark: #1540b0;
  --blue-soft: #e7eeff;
  --green: #1ea34d;
  --green-bright: #2bd36e;
  --green-soft: #e4f7ec;
  --orange: #f7941d;
  --orange-soft: #fff1de;
  --ink: #0e2340;
  --ink-soft: #56627a;
  --bg: #eef1f6;
  --white: #fff;
  --dark: #070d1b;
  --dark-2: #0d1730;
  --grad: linear-gradient(110deg, var(--blue) 0%, var(--green) 100%);
  --grad-soft: linear-gradient(110deg, #2a5ee0, #23b35a);
  --shadow: 0 18px 44px -20px rgba(14, 35, 64, .30);
  --shadow-lg: 0 30px 70px -30px rgba(7, 13, 27, .55);
  --r: 24px;
  --r-sm: 16px;
  --maxw: 1200px;
  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.lp {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.lp h1, .lp h2, .lp h3, .lp h4 {
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: .005em;
  font-weight: 700;
}
.lp a { color: inherit; text-decoration: none; }
.lp img { display: block; max-width: 100%; }

.lp-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.lp-eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; display: inline-flex; align-items: center;
  gap: .55rem; color: var(--green);
  font-family: var(--font-body);
}
.lp-eyebrow.b { color: var(--blue); }
.lp-eyebrow.lite { color: var(--green-bright); }
.lp-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: currentColor;
  box-shadow: 0 0 0 4px rgba(43, 211, 110, .18);
}
.lp-pill {
  display: inline-flex; align-items: center; gap: .45rem; font-size: .72rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; font-family: var(--font-body);
}

/* Brand wordmark fallback (used if a lockup image is unavailable) */
.lp-wordmark { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; letter-spacing: .01em; }
.lp-wordmark b { color: var(--green); }
.lp-brand-logo { display: flex; align-items: center; }
.lp-brand-logo img { height: 30px; width: auto; display: block; }

/* ── Buttons ─────────────────────────────────────────── */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-weight: 700; font-size: .96rem; border-radius: 999px;
  cursor: pointer; border: none; font-family: var(--font-body);
  transition: transform .2s ease, box-shadow .2s ease; white-space: nowrap;
}
.lp-btn--grad { background: var(--grad); color: #fff; padding: 14px 28px; box-shadow: 0 14px 28px -12px rgba(29, 81, 214, .7); }
.lp-btn--grad:hover { transform: translateY(-2px); box-shadow: 0 20px 34px -14px rgba(29, 81, 214, .8); }
.lp-btn--orange { background: var(--orange); color: #fff; padding: 13px 24px; box-shadow: 0 12px 24px -12px rgba(247, 148, 29, .8); }
.lp-btn--blue { background: var(--blue); color: #fff; padding: 13px 24px; }
.lp-btn--ghost-d { background: rgba(255, 255, 255, .06); color: #fff; border: 1.5px solid rgba(255, 255, 255, .22); padding: 12px 24px; }
.lp-btn--ghost-d:hover { background: rgba(255, 255, 255, .12); }

/* ── Smart App Banner ───────────────────────────────── */
/* Scrolls away on its own (relative, not sticky) so the dark-glass nav below
   can pin to top:0 without the banner overlapping it — two sticky siblings at
   top:0 would collide, and the banner's higher z-index would hide the nav.
   Matches the app's own AppDownloadBanner, which is a non-sticky top bar. */
.lp-smart-banner {
  position: relative; z-index: 71; background: var(--grad); color: #fff;
  display: flex; align-items: center; gap: 13px; padding: 9px 18px;
  font-size: .9rem; box-shadow: 0 6px 18px -10px rgba(7, 13, 27, .6);
}
.lp-smart-banner .sb-ico {
  width: 38px; height: 38px; border-radius: 10px; background: #fff;
  display: grid; place-items: center; flex: 0 0 auto; overflow: hidden;
}
.lp-smart-banner .sb-ico img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.lp-smart-banner .sb-txt { flex: 1; min-width: 0; line-height: 1.25; }
.lp-smart-banner .sb-txt b { display: block; font-weight: 700; }
.lp-smart-banner .sb-txt span { font-weight: 400; opacity: .85; font-size: .8rem; }
.lp-smart-banner .sb-cta {
  background: #fff; color: var(--blue); padding: 8px 18px; border-radius: 999px;
  font-weight: 700; font-size: .82rem; white-space: nowrap;
}
.lp-smart-banner .sb-close {
  background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer;
  line-height: 1; padding: 2px 6px; opacity: .85;
}
.lp-smart-banner.hide { display: none; }
@media (max-width: 560px) { .lp-smart-banner .sb-txt span { display: none; } }

/* ── Nav (dark glass over hero) ─────────────────────── */
.lp-nav { position: sticky; top: 0; z-index: 60; background: rgba(7, 13, 27, .72); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255, 255, 255, .07); }
.lp-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.lp-nav .lp-wordmark { color: #fff; }
.lp-nav-links { display: none; gap: 32px; align-items: center; }
.lp-nav-links a { font-weight: 600; font-size: .93rem; color: rgba(255, 255, 255, .74); transition: color .2s; }
.lp-nav-links a:hover { color: #fff; }
.lp-nav-cta { display: none; }
.lp-burger { background: none; border: none; display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.lp-burger span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; }
.lp-mobile-menu { display: none; flex-direction: column; padding: 8px 24px 20px; background: rgba(7, 13, 27, .96); }
.lp-mobile-menu.open { display: flex; }
.lp-mobile-menu a { padding: 13px 4px; border-bottom: 1px solid rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .85); font-weight: 600; }
@media (min-width: 940px) { .lp-nav-links { display: flex; } .lp-nav-cta { display: inline-flex; } .lp-burger { display: none; } }

/* ── Hero (dark, impact) ────────────────────────────── */
.lp-hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; padding: 84px 0 96px; }
.lp-hero .glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; pointer-events: none; }
.lp-hero .g1 { width: 520px; height: 520px; background: var(--blue); left: -160px; top: -120px; }
.lp-hero .g2 { width: 480px; height: 480px; background: var(--green); right: -120px; top: 120px; opacity: .5; }
.lp-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(70% 60% at 30% 30%, #000, transparent); opacity: .5;
}
.lp-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
.lp-hero h1 { font-size: clamp(2.8rem, 7vw, 4.8rem); font-weight: 900; text-transform: uppercase; margin: 20px 0 18px; }
.lp-hero h1 .gr { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-hero p.lead { font-size: 1.18rem; color: rgba(255, 255, 255, .78); max-width: 36ch; margin-bottom: 30px; }
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.lp-hero-stats { display: flex; flex-wrap: wrap; gap: 26px 34px; margin-top: 34px; }
.lp-hero-stats .hs b { font-family: var(--font-display); font-size: 2rem; font-weight: 900; display: block; line-height: 1; }
.lp-hero-stats .hs span { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.lp-hero-stats .hs.bl b { color: var(--green-bright); }
.lp-store-badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.lp-store-badges a { transition: transform .2s ease; }
.lp-store-badges a:hover { transform: translateY(-2px); }
.lp-store-badges img { height: 52px; width: auto; }
.lp-badge-soon { position: relative; }
.lp-badge-soon::after {
  content: attr(data-soon); position: absolute; top: -6px; right: -4px;
  background: var(--orange); color: #fff; font-size: .5rem; font-weight: 700;
  letter-spacing: .02em; padding: 2px 5px; border-radius: 999px; text-transform: uppercase;
}

/* Phone mockup */
.lp-phone-wrap { position: relative; display: flex; justify-content: center; }
.lp-phone { position: relative; width: 280px; border-radius: 42px; padding: 11px; background: linear-gradient(160deg, #222c44, #0c1326); box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, .08); }
.lp-phone .screen { border-radius: 32px; overflow: hidden; background: #0a1020; aspect-ratio: 1080 / 2340; }
.lp-phone .screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.lp-phone::after { content: ""; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 96px; height: 7px; border-radius: 8px; background: rgba(255, 255, 255, .18); }
.lp-phone-wrap .float { position: absolute; background: var(--white); color: var(--ink); border-radius: 16px; padding: 12px 14px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 11px; }
.lp-phone-wrap .float .fav { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; background: var(--green-soft); }
.lp-phone-wrap .float .fav img { width: 100%; height: 100%; object-fit: cover; }
.lp-phone-wrap .float b { font-size: .86rem; font-weight: 700; display: block; }
.lp-phone-wrap .float span { font-size: .74rem; color: var(--ink-soft); }
.lp-phone-wrap .f-top { top: 40px; right: -18px; }
.lp-phone-wrap .f-bot { bottom: 48px; left: -26px; }
@media (min-width: 940px) { .lp-hero-grid { grid-template-columns: 1.08fr .92fr; gap: 40px; } .lp-phone { width: 310px; } }

/* ── Section base ───────────────────────────────────── */
.lp-block { padding: 100px 0; }
.lp-sec-head { max-width: 62ch; margin-bottom: 54px; }
.lp-sec-head h2 { font-size: clamp(2.1rem, 5vw, 3.3rem); margin: 16px 0 14px; }
.lp-sec-head p { font-size: 1.1rem; color: var(--ink-soft); }

/* Stat strip (gradient) */
.lp-strip { background: var(--grad); color: #fff; }
.lp-strip .lp-wrap { display: flex; flex-wrap: wrap; gap: 20px 56px; justify-content: center; padding: 30px 24px; text-align: center; }
.lp-strip .si b { font-family: var(--font-display); font-size: 2.1rem; font-weight: 900; display: block; line-height: 1; }
.lp-strip .si span { font-size: .82rem; letter-spacing: .05em; opacity: .9; text-transform: uppercase; }

/* ── Treino (dark + photo) ──────────────────────────── */
.lp-treino { position: relative; color: #fff; background: var(--dark-2); overflow: hidden; }
.lp-treino .bg { position: absolute; inset: 0; background-size: cover; background-position: center right; opacity: .42; }
.lp-treino::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, var(--dark) 30%, rgba(13, 23, 48, .55) 70%, rgba(29, 81, 214, .35)); }
.lp-treino .lp-wrap { position: relative; z-index: 2; }
.lp-treino-grid { display: grid; grid-template-columns: 1fr; gap: 52px; align-items: center; }
.lp-treino h2 { font-size: clamp(2.1rem, 5vw, 3.2rem); text-transform: uppercase; margin: 14px 0; }
.lp-treino p { color: rgba(255, 255, 255, .8); font-size: 1.08rem; margin-bottom: 20px; }
.lp-wt-card { background: rgba(13, 23, 48, .7); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--r); padding: 22px; backdrop-filter: blur(8px); box-shadow: var(--shadow-lg); max-width: 420px; }
.lp-wt-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.lp-wt-head b { font-size: 1.15rem; font-weight: 700; }
.lp-wt-head .live { font-size: .7rem; font-weight: 700; color: var(--green-bright); display: flex; align-items: center; gap: 6px; letter-spacing: .08em; }
.lp-wt-head .live .d { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(43, 211, 110, .22); }
.lp-wt-sub { font-size: .82rem; color: rgba(255, 255, 255, .55); margin-bottom: 16px; }
.lp-wt-row { display: grid; grid-template-columns: 30px 1fr 1fr 46px; gap: 10px; align-items: center; padding: 11px 12px; border-radius: 12px; font-size: .9rem; margin-bottom: 8px; background: rgba(255, 255, 255, .04); }
.lp-wt-row.hd { background: none; padding: 0 12px 4px; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .45); margin-bottom: 4px; }
.lp-wt-row.active { background: rgba(29, 81, 214, .32); border: 1px solid rgba(59, 121, 255, .6); }
.lp-wt-row .set { width: 24px; height: 24px; border-radius: 7px; background: rgba(255, 255, 255, .1); display: grid; place-items: center; font-size: .78rem; font-weight: 700; }
.lp-wt-row.active .set { background: var(--blue); }
.lp-wt-row .prev { color: rgba(255, 255, 255, .5); }
.lp-wt-row .chk { color: var(--green-bright); font-weight: 800; text-align: center; }
@media (min-width: 940px) { .lp-treino-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

/* ── Nutrição (light) ───────────────────────────────── */
.lp-nutri { background: var(--white); }
.lp-nutri-grid { display: grid; grid-template-columns: 1fr; gap: 52px; align-items: center; }
.lp-nutri .ph { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.lp-nutri .ph img { width: 100%; height: 100%; object-fit: cover; }
.lp-nutri h2 { font-size: clamp(2.1rem, 4.8vw, 3rem); margin: 14px 0; }
.lp-nutri p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 22px; }
.lp-macro-card { background: var(--white); border: 1px solid #eceff4; border-radius: var(--r); padding: 22px; box-shadow: var(--shadow); max-width: 430px; }
.lp-macro-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.lp-macro-top b { font-size: 1.05rem; font-weight: 700; }
.lp-macro-top .kc { font-size: .85rem; color: var(--ink-soft); }
.lp-macro-top .kc strong { color: var(--blue); font-size: 1.05rem; }
.lp-macro-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.lp-mp { font-size: .82rem; font-weight: 600; padding: 8px 14px; border-radius: 999px; background: #f1f4f9; color: var(--ink-soft); }
.lp-mp.on { background: var(--green-soft); color: var(--green); }
.lp-macro-bars { display: flex; align-items: flex-end; gap: 9px; height: 120px; padding: 0 4px; }
.lp-macro-bars .b { flex: 1; background: var(--green); border-radius: 7px 7px 3px 3px; opacity: .92; }
.lp-macro-foot { display: flex; justify-content: space-between; font-size: .7rem; color: var(--ink-soft); margin-top: 8px; padding: 0 4px; }
.lp-add-meal { margin-top: 18px; width: 100%; }
@media (min-width: 940px) { .lp-nutri-grid { grid-template-columns: .92fr 1.08fr; gap: 64px; } }

/* ── Nutra (light) ──────────────────────────────────── */
.lp-nutra { background: var(--bg); }
.lp-nutra-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.lp-talk-card { background: var(--grad); color: #fff; border-radius: var(--r); padding: 20px; display: flex; align-items: center; gap: 16px; box-shadow: 0 20px 40px -22px rgba(29, 81, 214, .6); margin-bottom: 18px; }
.lp-talk-card .tc-av { width: 52px; height: 52px; border-radius: 50%; background: #fff; overflow: hidden; flex: 0 0 auto; }
.lp-talk-card .tc-av img { width: 100%; height: 100%; object-fit: cover; }
.lp-talk-card b { font-size: 1.1rem; font-weight: 700; display: block; }
.lp-talk-card span { font-size: .88rem; opacity: .9; }
.lp-chat-mock { background: var(--white); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow); }
.lp-ch-tag { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 8px; }
.lp-bubble { padding: 11px 15px; border-radius: 15px; font-size: .92rem; margin-bottom: 10px; max-width: 86%; }
.lp-bubble.them { background: #f1f4f9; color: var(--ink); border-bottom-left-radius: 5px; }
.lp-bubble.them.pro { border: 1px dashed rgba(30, 163, 77, .5); }
.lp-bubble.me { background: var(--grad); color: #fff; margin-left: auto; border-bottom-right-radius: 5px; }
.lp-nutra-list { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.lp-nutra-list .ni { display: flex; gap: 14px; align-items: flex-start; }
.lp-nutra-list .ni .ic { width: 44px; height: 44px; border-radius: 13px; flex: 0 0 auto; display: grid; place-items: center; font-size: 1.25rem; background: var(--white); box-shadow: var(--shadow); }
.lp-nutra-list .ni b { font-weight: 700; font-size: 1.08rem; display: block; margin-bottom: 2px; }
.lp-nutra-list .ni p { color: var(--ink-soft); font-size: .96rem; }
.lp-nutra h2 { font-size: clamp(2rem, 4.4vw, 2.9rem); margin: 14px 0; }
@media (min-width: 940px) { .lp-nutra-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

/* ── Progresso (dark + photo + chart) ───────────────── */
.lp-prog { position: relative; color: #fff; background: var(--dark); overflow: hidden; }
.lp-prog .bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .4; }
.lp-prog::after { content: ""; position: absolute; inset: 0; background: linear-gradient(80deg, var(--dark) 32%, rgba(7, 13, 27, .55) 66%, rgba(30, 163, 77, .32)); }
.lp-prog .lp-wrap { position: relative; z-index: 2; }
.lp-prog-grid { display: grid; grid-template-columns: 1fr; gap: 52px; align-items: center; }
.lp-prog h2 { font-size: clamp(2.1rem, 5vw, 3.2rem); text-transform: uppercase; margin: 14px 0; }
.lp-prog p { color: rgba(255, 255, 255, .8); font-size: 1.08rem; margin-bottom: 18px; }
.lp-week-card { background: var(--white); color: var(--ink); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow-lg); max-width: 430px; }
.lp-week-card .wc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.lp-week-card .wc-head b { font-size: 1.05rem; font-weight: 700; }
.lp-week-card .leg { display: flex; gap: 14px; font-size: .78rem; color: var(--ink-soft); }
.lp-week-card .leg i { font-style: normal; display: inline-flex; align-items: center; gap: 5px; }
.lp-week-card .leg .d { width: 9px; height: 9px; border-radius: 50%; }
.lp-chart { display: flex; align-items: flex-end; gap: 10px; height: 140px; margin: 18px 0 8px; }
.lp-chart .bar { flex: 1; background: var(--green); border-radius: 6px 6px 3px 3px; }
.lp-chart.lab { display: flex; gap: 10px; font-size: .68rem; color: var(--ink-soft); height: auto; margin: 0; }
.lp-chart.lab span { flex: 1; text-align: center; }
.lp-wc-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eef1f6; padding-top: 14px; margin-top: 8px; font-size: .85rem; color: var(--ink-soft); }
.lp-wc-foot strong { color: var(--blue); font-size: 1.1rem; }
@media (min-width: 940px) { .lp-prog-grid { grid-template-columns: 1fr 1fr; gap: 64px; } .lp-prog.rev .lp-week-card { margin-left: auto; } }

/* ── Pra todo mundo (light, inclusive photos) ───────── */
.lp-everyone { background: var(--white); }
.lp-every-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 48px; }
.lp-ec { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); position: relative; min-height: 330px; display: flex; align-items: flex-end; }
.lp-ec img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-ec .ov { position: relative; z-index: 2; padding: 24px; color: #fff; width: 100%; background: linear-gradient(0deg, rgba(7, 13, 27, .86), transparent 80%); }
.lp-ec .ov b { font-size: 1.4rem; font-weight: 700; display: block; margin-bottom: 3px; font-family: var(--font-display); }
.lp-ec .ov span { opacity: .9; font-size: .94rem; }
@media (min-width: 780px) { .lp-every-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── CTA ────────────────────────────────────────────── */
.lp-cta { position: relative; overflow: hidden; background: var(--grad); color: #fff; }
.lp-cta::before { content: ""; position: absolute; right: -90px; top: -90px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255, 255, 255, .18); filter: blur(8px); }
.lp-cta .lp-wrap { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; padding: 96px 24px; }
.lp-cta .cel { width: 130px; margin-bottom: 4px; filter: drop-shadow(0 16px 26px rgba(7, 13, 27, .35)); }
.lp-cta h2 { font-size: clamp(2.3rem, 5.6vw, 3.6rem); text-transform: uppercase; max-width: 20ch; margin: 8px 0 14px; }
.lp-cta p { font-size: 1.15rem; max-width: 48ch; margin-bottom: 28px; opacity: .95; }
.lp-cta .lp-store-badges { justify-content: center; }
.lp-web-link { margin-top: 20px; display: inline-flex; align-items: center; gap: 6px; color: #fff; font-weight: 600; font-size: .95rem; border-bottom: 1.5px solid rgba(255, 255, 255, .5); padding-bottom: 2px; transition: border-color .2s; }
.lp-web-link:hover { border-bottom-color: #fff; }

/* ── Footer ─────────────────────────────────────────── */
.lp-footer { background: var(--dark); color: rgba(255, 255, 255, .7); padding: 64px 0 34px; }
.lp-foot-grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
.lp-foot-brand .lp-brand-logo img { height: 30px; }
.lp-foot-brand p { margin-top: 14px; max-width: 34ch; color: rgba(255, 255, 255, .55); font-size: .94rem; }
.lp-foot-col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 14px; font-weight: 700; font-family: var(--font-body); }
.lp-foot-col a { display: block; color: rgba(255, 255, 255, .6); padding: 5px 0; font-size: .93rem; transition: color .2s; }
.lp-foot-col a:hover { color: var(--green-bright); }
.lp-foot-bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 42px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: .84rem; color: rgba(255, 255, 255, .45); }
.lp-foot-lang { display: inline-flex; gap: 10px; }
.lp-foot-lang a { color: rgba(255, 255, 255, .5); font-weight: 600; }
.lp-foot-lang a.active { color: #fff; }
@media (min-width: 760px) { .lp-foot-grid { grid-template-columns: 2fr 1fr 1fr; } }

/* ── Reveal on scroll ───────────────────────────────── */
.lp-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.lp-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .lp-reveal { opacity: 1; transform: none; transition: none; } }
