/* =====================================================================
   PodEBEM — Home V2  (Claude Design implementation)
   Palette: navy #16245C · navy-deep #111C42 · blue #1D4ED8
            green #138A52 · mint #2FB877 · green-deep #0E6B3F
   Fonts:   Plus Jakarta Sans (display) · Manrope (body)
   ===================================================================== */

:root {
  --navy: #16245C;
  --navy-deep: #111C42;
  --navy-soft: #34406A;
  --blue: #1D4ED8;
  --green: #138A52;
  --green-deep: #0E6B3F;
  --mint: #2FB877;
  --body: #5A6680;
  --muted: #8A94AC;
  --bg: #ffffff;
  --soft: #F4F7FC;
  --line: #EAEEF6;
  --line-2: #DCE3EF;
  --chip-green: #EAF3EE;

  --maxw: 1200px;
  --pad: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --f-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --f-body: "Manrope", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
::selection { background: var(--green); color: #fff; }

body.homev2 {
  margin: 0;
  font-family: var(--f-body);
  color: var(--navy);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.homev2 img { display: block; max-width: 100%; }
.homev2 a { text-decoration: none; color: inherit; }
.homev2 button { font-family: inherit; cursor: pointer; }
.homev2 h1, .homev2 h2, .homev2 h3, .homev2 h4 { font-family: var(--f-display); margin: 0; }
.homev2 p { margin: 0; }
.homev2 ul { margin: 0; padding: 0; list-style: none; }

.pb-wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.pb-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--green); font-family: var(--f-display);
  font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
}
.pb-eyebrow .bar { width: 22px; height: 2px; background: var(--green); display: inline-block; }
.pb-eyebrow--mint { color: var(--mint); }
.pb-eyebrow--mint .bar { background: var(--mint); }

/* SVG icon sizing */
.homev2 svg { flex: none; }

/* ===================== UTILITY BAR ===================== */
.pb-topbar { background: var(--navy); color: #C7D0E8; font-size: 13px; }
.pb-topbar .pb-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap;
}
.pb-topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.pb-topbar a { display: inline-flex; align-items: center; gap: 8px; transition: color .25s var(--ease); }
.pb-topbar a:hover { color: #fff; }
.pb-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); display: inline-block; }
.pb-topbar-right { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.pb-topbar-right .lbl { opacity: .8; }
.pb-socials { display: flex; gap: 8px; }
.pb-socials a {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.pb-socials a:hover { background: var(--mint); transform: translateY(-2px); }
.pb-socials svg { width: 14px; height: 14px; fill: #fff; }

/* ===================== HEADER ===================== */
.pb-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.pb-header.is-stuck { box-shadow: 0 10px 30px -20px rgba(22,36,92,.5); }
.pb-header .pb-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 14px; padding-bottom: 14px;
}
.pb-brand img { height: 46px; width: auto; max-width: 170px; }

/* Hardening: neutralise inline width/height styles some perf plugins inject
   onto images, which otherwise fight these fixed aspect-ratio frames. */
body.homev2 .pb-brand img { height: 46px !important; width: auto !important; max-width: 170px !important; }
body.homev2 .pb-hero-figure img,
body.homev2 .pb-ep-thumb img,
body.homev2 .pb-featured-figure img,
body.homev2 .pb-testi-media .photo img,
body.homev2 .pb-empresas-grid img { width: 100% !important; height: 100% !important; max-width: none !important; }
body.homev2 .pb-partner img { width: auto !important; height: auto !important; max-height: 60px !important; max-width: 80% !important; }
body.homev2 .pb-footer-chip img { height: 40px !important; width: auto !important; }
.pb-nav { display: flex; align-items: center; gap: 30px;
  font-family: var(--f-display); font-weight: 600; font-size: 15px; color: var(--navy-soft); }
.pb-nav a { position: relative; color: var(--navy-soft); transition: color .25s var(--ease); }
.pb-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--green); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.pb-nav a:hover, .pb-nav a.is-active { color: var(--navy); }
.pb-nav a:hover::after, .pb-nav a.is-active::after { transform: scaleX(1); }

.pb-header-cta {
  display: inline-flex; align-items: center;
  background: var(--green); color: #fff; font-family: var(--f-display);
  font-weight: 700; font-size: 15px; padding: 12px 24px; border-radius: 10px;
  box-shadow: 0 6px 18px rgba(19,138,82,.28);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease);
}
.pb-header-cta:hover { transform: translateY(-2px); background: var(--green-deep); box-shadow: 0 10px 24px rgba(19,138,82,.34); }
.pb-header-right { display: flex; align-items: center; gap: 14px; }

.pb-burger {
  display: none; width: 46px; height: 44px; border: 1px solid var(--line-2);
  border-radius: 10px; background: #fff; position: relative;
}
.pb-burger span, .pb-burger span::before, .pb-burger span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--navy); border-radius: 2px; transform: translate(-50%,-50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.pb-burger span::before { transform: translate(-50%,-7px); }
.pb-burger span::after { transform: translate(-50%,5px); }
.pb-burger.is-open span { background: transparent; }
.pb-burger.is-open span::before { transform: translate(-50%,0) rotate(45deg); }
.pb-burger.is-open span::after { transform: translate(-50%,0) rotate(-45deg); }

/* Generic buttons */
.pb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: var(--f-display); font-weight: 700; font-size: 16px;
  padding: 16px 28px; border-radius: 12px; border: 1.5px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.pb-btn svg { width: 18px; height: 18px; fill: currentColor; }
.pb-btn--green { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(19,138,82,.30); }
.pb-btn--green:hover { transform: translateY(-3px); background: var(--green-deep); }
.pb-btn--mint { background: var(--mint); color: #08361F; }
.pb-btn--mint:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(47,184,119,.4); }
.pb-btn--ghost { background: #fff; color: var(--navy); border-color: var(--line-2); }
.pb-btn--ghost:hover { transform: translateY(-3px); border-color: var(--navy); }
.pb-btn--ghost-d { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.pb-btn--ghost-d:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.pb-btn .ic-circle {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
}
.pb-btn .ic-circle svg { width: 13px; height: 13px; margin-left: 1px; }

/* ===================== HERO ===================== */
.pb-hero { background: linear-gradient(180deg, #F4F7FC 0%, #FFFFFF 100%); position: relative; overflow: hidden; }
.pb-hero-glow {
  position: absolute; top: -120px; right: -120px; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,184,119,.10), transparent 70%); pointer-events: none;
}
.pb-hero .pb-wrap {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
  padding-top: 84px; padding-bottom: 96px; position: relative;
}
.pb-hero-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px;
  background: var(--chip-green); color: var(--green); font-family: var(--f-display);
  font-weight: 700; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 100px;
}
.pb-hero-badge .pb-dot { width: 6px; height: 6px; }
.pb-hero h1 {
  font-weight: 800; font-size: clamp(36px, 5vw, 56px); line-height: 1.06; letter-spacing: -.03em;
  color: var(--navy); margin: 0 0 22px;
}
.pb-hero h1 .g { color: var(--green); }
.pb-hero-lead { font-size: 18px; line-height: 1.65; color: var(--body); max-width: 480px; margin: 0 0 34px; }
.pb-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.pb-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.pb-stats .num { font-family: var(--f-display); font-weight: 800; font-size: 26px; color: var(--navy); }
.pb-stats .lab { font-size: 13px; color: var(--muted); font-weight: 500; }
.pb-stats .sep { width: 1px; height: 34px; background: #E2E8F2; }

.pb-hero-visual { position: relative; }
.pb-hero-visual .frameback {
  position: absolute; inset: 14px -14px -14px 14px; border-radius: 24px;
  background: linear-gradient(135deg, var(--blue), var(--navy)); z-index: 0;
}
.pb-hero-figure {
  position: relative; z-index: 1; border-radius: 22px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(22,36,92,.22); aspect-ratio: 4 / 3.4; background: #E5EAF3;
}
.pb-hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.pb-now {
  position: absolute; z-index: 2; bottom: 18px; left: 18px; right: 38px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(6px); border-radius: 14px;
  padding: 14px 16px; display: flex; align-items: center; gap: 13px;
  box-shadow: 0 12px 30px rgba(22,36,92,.16);
}
.pb-now .ic {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--mint), var(--green));
  display: flex; align-items: center; justify-content: center;
}
.pb-now .ic svg { width: 16px; height: 16px; fill: #fff; margin-left: 2px; }
.pb-now .k { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.pb-now .t { font-family: var(--f-display); font-weight: 700; font-size: 14.5px; color: var(--navy);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ===================== NEWSLETTER BAND ===================== */
.pb-news { position: relative; z-index: 5; }
.pb-news .pb-wrap { transform: translateY(-44px); }
.pb-news-inner {
  background: linear-gradient(120deg, var(--navy), var(--blue));
  border-radius: 22px; padding: 44px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  box-shadow: 0 24px 60px rgba(22,36,92,.28); position: relative; overflow: hidden;
}
.pb-news-inner .blob { position: absolute; right: -40px; top: -40px; width: 220px; height: 220px;
  border-radius: 50%; background: rgba(47,184,119,.18); }
.pb-news h3 { font-weight: 800; font-size: clamp(22px, 3vw, 28px); letter-spacing: -.02em; color: #fff; margin: 0 0 8px; position: relative; }
.pb-news p { font-size: 15.5px; color: #C2CCE8; line-height: 1.6; position: relative; }
.pb-form { position: relative; display: flex; gap: 10px; background: rgba(255,255,255,.12); padding: 8px; border-radius: 14px; }
.pb-form input {
  flex: 1; min-width: 0; border: none; background: transparent; color: #fff;
  font-family: var(--f-body); font-size: 15px; padding: 12px 14px; outline: none;
}
.pb-form input::placeholder { color: rgba(255,255,255,.7); }
.pb-form button {
  background: var(--mint); color: #08361F; font-family: var(--f-display); font-weight: 700;
  font-size: 15px; border: none; padding: 13px 24px; border-radius: 10px; white-space: nowrap;
  transition: transform .25s var(--ease), filter .25s var(--ease);
}
.pb-form button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.pb-form.is-sent { justify-content: center; }
.pb-form.is-sent input, .pb-form.is-sent button { display: none; }
.pb-form-done { display: none; align-items: center; gap: 9px; color: #fff; font-weight: 600; padding: 10px; }
.pb-form-done svg { width: 18px; height: 18px; fill: var(--mint); }
.pb-form.is-sent .pb-form-done { display: flex; }

/* ===================== SECTION SHELL ===================== */
.pb-section { padding-top: 56px; padding-bottom: 96px; }
.pb-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.pb-section-head h2 {
  font-weight: 800; font-size: clamp(28px, 3.6vw, 38px); line-height: 1.15; letter-spacing: -.025em;
  color: var(--navy); margin: 12px 0 0; max-width: 620px;
}
.pb-head-center { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.pb-head-center h2 { font-weight: 800; font-size: clamp(28px, 3.6vw, 38px); line-height: 1.15; letter-spacing: -.025em; color: var(--navy); margin: 16px 0 0; }
.pb-head-center .pb-eyebrow { justify-content: center; }
.pb-link-pill {
  display: inline-flex; align-items: center; gap: 8px; color: var(--navy);
  font-family: var(--f-display); font-weight: 700; font-size: 15px;
  border: 1.5px solid var(--line-2); padding: 12px 22px; border-radius: 10px; white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.pb-link-pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ===================== EPISODES ===================== */
.pb-eps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pb-ep {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 8px 28px rgba(22,36,92,.06); display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pb-ep:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(22,36,92,.14); }
.pb-ep-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #E5EAF3; }
.pb-ep-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pb-ep:hover .pb-ep-thumb img { transform: scale(1.05); }
.pb-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2; color: #fff;
  font-family: var(--f-display); font-weight: 700; font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 7px; background: var(--green);
}
.pb-tag--blue { background: var(--blue); }
.pb-ep-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pb-ep-meta { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.pb-ep h3 { font-weight: 700; font-size: 19px; line-height: 1.3; color: var(--navy); margin: 0 0 18px; }
.pb-ep-foot { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid #EEF1F7; }
.pb-ep-play {
  display: inline-flex; align-items: center; gap: 9px; background: var(--navy); color: #fff;
  font-family: var(--f-display); font-weight: 700; font-size: 13.5px; padding: 10px 16px; border-radius: 9px;
  transition: background .25s var(--ease);
}
.pb-ep-play:hover { background: var(--blue); }
.pb-ep-play svg { width: 13px; height: 13px; fill: #fff; }
.pb-ep-watch { color: var(--body); font-family: var(--f-display); font-weight: 600; font-size: 13.5px; transition: color .25s var(--ease); }
.pb-ep-watch:hover { color: var(--green); }

/* ===================== PARTNERS ===================== */
.pb-partners { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pb-partners .pb-wrap { padding-top: 56px; padding-bottom: 56px; }
.pb-partners-title { text-align: center; color: var(--muted); font-family: var(--f-display);
  font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 34px; }
.pb-partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pb-partner {
  height: 92px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; padding: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pb-partner:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(22,36,92,.1); }
.pb-partner img { max-height: 60px; max-width: 80%; width: auto; object-fit: contain; }

/* ===================== FEATURED (NAVY) ===================== */
.pb-featured { background: var(--navy); position: relative; overflow: hidden; }
.pb-featured .glow { position: absolute; left: -100px; bottom: -100px; width: 360px; height: 360px;
  border-radius: 50%; background: radial-gradient(circle, rgba(47,184,119,.16), transparent 70%); }
.pb-featured .pb-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center;
  padding-top: 90px; padding-bottom: 90px; position: relative;
}
.pb-featured h2 { font-weight: 800; font-size: clamp(28px, 3.6vw, 40px); line-height: 1.12; letter-spacing: -.025em; color: #fff; margin: 18px 0 18px; }
.pb-featured p { font-size: 16.5px; line-height: 1.7; color: #BFC9E4; margin: 0 0 32px; max-width: 460px; }
.pb-featured-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pb-featured-figure {
  position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 16 / 10;
  background: #1E2C58; box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.pb-featured-figure img { width: 100%; height: 100%; object-fit: cover; }
.pb-featured-figure .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 70px; height: 70px; border-radius: 50%; background: rgba(47,184,119,.92);
  display: flex; align-items: center; justify-content: center; z-index: 2;
  box-shadow: 0 12px 30px rgba(0,0,0,.35); transition: transform .3s var(--ease);
}
.pb-featured-figure:hover .play { transform: translate(-50%,-50%) scale(1.08); }
.pb-featured-figure .play svg { width: 22px; height: 22px; fill: #08361F; margin-left: 3px; }

/* ===================== VALUE PROPS ===================== */
.pb-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pb-value { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 36px 32px;
  box-shadow: 0 8px 28px rgba(22,36,92,.06); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pb-value:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(22,36,92,.12); }
.pb-value--dark { background: var(--navy); border-color: var(--navy); box-shadow: 0 16px 40px rgba(22,36,92,.22); }
.pb-value-ic { width: 56px; height: 56px; border-radius: 15px; background: var(--chip-green);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--green); }
.pb-value-ic svg { width: 26px; height: 26px; fill: currentColor; }
.pb-value--dark .pb-value-ic { background: rgba(255,255,255,.1); color: var(--mint); }
.pb-value h3 { font-weight: 800; font-size: 21px; color: var(--navy); margin: 0 0 12px; }
.pb-value p { font-size: 15.5px; line-height: 1.7; color: var(--body); }
.pb-value--dark h3 { color: #fff; }
.pb-value--dark p { color: #C2CCE8; }

/* ===================== DIVULGUE / EMPRESAS ===================== */
.pb-empresas { background: var(--soft); border-top: 1px solid var(--line); }
.pb-empresas .pb-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center;
  padding-top: 96px; padding-bottom: 96px; }
.pb-empresas h2 { font-weight: 800; font-size: clamp(28px, 3.6vw, 40px); line-height: 1.12; letter-spacing: -.025em; color: var(--navy); margin: 16px 0 18px; }
.pb-empresas-lead { font-size: 16.5px; line-height: 1.7; color: var(--body); margin: 0 0 28px; max-width: 440px; }
.pb-checks { display: grid; gap: 14px; margin-bottom: 34px; }
.pb-checks li { display: flex; align-items: center; gap: 12px; font-family: var(--f-display);
  font-weight: 600; font-size: 16px; color: var(--navy); }
.pb-checks .tick { width: 26px; height: 26px; border-radius: 8px; background: var(--chip-green); color: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pb-checks .tick svg { width: 13px; height: 13px; fill: currentColor; }
.pb-empresas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pb-empresas-grid figure { margin: 0; aspect-ratio: 1 / 1; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; background: #fff; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.pb-empresas-grid figure:nth-child(even) { margin-top: 28px; }
.pb-empresas-grid figure:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(22,36,92,.1); }
.pb-empresas-grid img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== TESTIMONIALS ===================== */
.pb-testi .pb-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.pb-testi-media { position: relative; }
.pb-testi-media .photo { border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 4.4; background: #E5EAF3; }
.pb-testi-media .photo img { width: 100%; height: 100%; object-fit: cover; }
.pb-testi-quote { position: absolute; bottom: 20px; left: 20px; right: 60px; background: var(--navy);
  border-radius: 16px; padding: 22px 24px; box-shadow: 0 16px 40px rgba(22,36,92,.3); }
.pb-testi-quote .mark { font-size: 40px; line-height: .6; color: var(--mint); font-family: Georgia, serif; margin-bottom: 6px; }
.pb-testi-quote p { font-family: var(--f-display); font-weight: 600; font-size: 16px; line-height: 1.5; color: #fff; }
.pb-testi h2 { font-weight: 800; font-size: clamp(28px, 3.6vw, 38px); line-height: 1.14; letter-spacing: -.025em; color: var(--navy); margin: 16px 0 30px; }
.pb-review { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px 32px;
  box-shadow: 0 8px 28px rgba(22,36,92,.06); margin-bottom: 22px; }
.pb-stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--mint); font-size: 16px; }
.pb-review p { font-size: 18px; line-height: 1.6; color: var(--navy-soft); margin: 0 0 22px; font-weight: 500; }
.pb-reviewer { display: flex; align-items: center; gap: 13px; }
.pb-avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--chip-green); color: var(--green); display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: 15px; }
.pb-reviewer .nm { font-family: var(--f-display); font-weight: 700; font-size: 15px; color: var(--navy); }
.pb-reviewer .loc { font-size: 13px; color: var(--muted); }
.pb-dots { display: flex; gap: 9px; }
.pb-dots span { width: 7px; height: 7px; border-radius: 100px; background: #D5DCEA; }
.pb-dots span.on { width: 26px; background: var(--green); }

/* ===================== FINAL CTA ===================== */
.pb-cta { padding-bottom: 96px; }
.pb-cta-inner { background: linear-gradient(120deg, var(--green), var(--green-deep)); border-radius: 24px;
  padding: 64px 56px; text-align: center; position: relative; overflow: hidden; }
.pb-cta-inner .b1 { position: absolute; top: -60px; right: -40px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.08); }
.pb-cta-inner .b2 { position: absolute; bottom: -80px; left: -40px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.06); }
.pb-cta h2 { font-weight: 800; font-size: clamp(28px, 3.6vw, 38px); line-height: 1.15; letter-spacing: -.025em; color: #fff; margin: 0 0 14px; position: relative; }
.pb-cta p { font-size: 17px; color: #D6F0E2; margin: 0 auto 30px; max-width: 480px; position: relative; }
.pb-cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.pb-cta-actions a { font-family: var(--f-display); font-weight: 700; font-size: 16px; padding: 16px 30px; border-radius: 12px;
  transition: transform .25s var(--ease); display: inline-flex; align-items: center; gap: 10px; }
.pb-cta-actions a:hover { transform: translateY(-3px); }
.pb-cta-actions svg { width: 18px; height: 18px; fill: currentColor; }
.pb-cta-actions .white { background: #fff; color: var(--green-deep); }
.pb-cta-actions .glass { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }

/* ===================== FOOTER ===================== */
.pb-footer { background: var(--navy-deep); color: #B7C0DC; }
.pb-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px;
  padding-top: 72px; padding-bottom: 32px; }
.pb-footer-chip { display: inline-flex; background: #fff; border-radius: 11px; padding: 10px 14px; margin-bottom: 18px; }
.pb-footer-chip img { height: 40px; width: auto; }
.pb-footer-about { font-size: 14.5px; line-height: 1.7; margin: 0 0 22px; max-width: 280px; color: #9AA6C8; }
.pb-footer .pb-socials a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.08); }
.pb-footer h4 { font-family: var(--f-display); font-weight: 700; font-size: 14px; color: #fff;
  text-transform: uppercase; letter-spacing: .08em; margin: 0 0 18px; }
.pb-footer-links { display: grid; gap: 12px; font-size: 14.5px; }
.pb-footer-links a { color: #B7C0DC; transition: color .25s var(--ease), padding-left .25s var(--ease); }
.pb-footer-links a:hover { color: #fff; padding-left: 4px; }
.pb-footer-col p { font-size: 14px; line-height: 1.6; margin: 0 0 14px; color: #9AA6C8; }
.pb-foot-form { display: flex; gap: 8px; background: rgba(255,255,255,.07); padding: 6px; border-radius: 10px; }
.pb-foot-form input { flex: 1; min-width: 0; border: none; background: transparent; color: #fff;
  font-family: var(--f-body); font-size: 14px; padding: 9px 10px; outline: none; }
.pb-foot-form input::placeholder { color: rgba(255,255,255,.6); }
.pb-foot-form button { background: var(--mint); color: #08361F; font-family: var(--f-display); font-weight: 700;
  font-size: 13.5px; border: none; padding: 9px 16px; border-radius: 7px; white-space: nowrap; }
.pb-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.pb-footer-bottom .pb-wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; padding-top: 22px; padding-bottom: 22px; font-size: 13px; color: #8A95B8; }
.pb-footer-bottom a { color: var(--mint); }
.pb-footer-bottom a:hover { text-decoration: underline; }

/* ===================== MOBILE MENU ===================== */
.pb-mobile { position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); background: var(--navy);
  color: #fff; z-index: 90; transform: translateX(100%); transition: transform .4s var(--ease);
  padding: 24px; display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(0,0,0,.4); overflow-y: auto; }
.pb-mobile.is-open { transform: translateX(0); }
.pb-mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.pb-mobile-head .pb-footer-chip { margin: 0; }
.pb-mobile-close { width: 44px; height: 44px; border-radius: 11px; background: rgba(255,255,255,.08);
  border: none; color: #fff; font-size: 26px; line-height: 1; }
.pb-mobile nav a { display: block; padding: 14px 4px; font-family: var(--f-display); font-weight: 600; font-size: 18px;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); transition: color .25s, padding-left .25s; }
.pb-mobile nav a:hover { color: var(--mint); padding-left: 10px; }
.pb-mobile .pb-btn { margin-top: 22px; width: 100%; }
.pb-mobile .pb-socials { margin-top: 24px; }
.pb-mobile .pb-socials a { width: 38px; height: 38px; }
.pb-overlay { position: fixed; inset: 0; z-index: 85; background: rgba(10,12,30,.5);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease); }
.pb-overlay.is-open { opacity: 1; visibility: visible; }

/* ===================== REVEAL ===================== */
.pb-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.pb-reveal.is-in { opacity: 1; transform: none; }
.pb-reveal.d1 { transition-delay: .08s; } .pb-reveal.d2 { transition-delay: .16s; } .pb-reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .homev2 *, .homev2 *::before, .homev2 *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .pb-reveal { opacity: 1; transform: none; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .pb-hero .pb-wrap { grid-template-columns: 1fr; gap: 48px; padding-top: 64px; padding-bottom: 72px; }
  .pb-hero-visual { order: -1; max-width: 520px; }
  .pb-news-inner { grid-template-columns: 1fr; gap: 24px; padding: 34px 30px; }
  .pb-featured .pb-wrap { grid-template-columns: 1fr; gap: 40px; padding-top: 70px; padding-bottom: 70px; }
  .pb-empresas .pb-wrap { grid-template-columns: 1fr; gap: 44px; }
  .pb-testi .pb-wrap { grid-template-columns: 1fr; gap: 44px; }
  .pb-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 880px) {
  .pb-nav, .pb-header-cta { display: none; }
  .pb-burger { display: block; }
  .pb-eps-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pb-values-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pb-partners-grid { grid-template-columns: repeat(2, 1fr); }
  .pb-section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  :root { --pad: 18px; }
  .pb-topbar-right .lbl { display: none; }
  .pb-hero-actions { width: 100%; }
  .pb-hero-actions .pb-btn { flex: 1; justify-content: center; min-width: 150px; }
  .pb-stats { gap: 18px; }
  .pb-form { flex-direction: column; }
  .pb-form button { width: 100%; }
  .pb-footer-grid { grid-template-columns: 1fr; }
  .pb-empresas-grid figure:nth-child(even) { margin-top: 0; }
  .pb-cta-inner { padding: 44px 26px; }
  .pb-testi-quote { left: 14px; right: 14px; bottom: 14px; padding: 18px 20px; }
  .pb-featured .pb-wrap, .pb-empresas .pb-wrap { padding-top: 56px; padding-bottom: 56px; }
}
@media (max-width: 420px) {
  .pb-partners-grid { grid-template-columns: 1fr; }
  .pb-footer-bottom .pb-wrap { flex-direction: column; align-items: flex-start; gap: 8px; }
}
