/* ===== Petroserv Design Tokens ===== */
:root {
  /* Brand */
  --pts-green: #006646;
  --pts-green-deep: #004f36;
  --pts-green-light: #0d8259;
  --pts-lime: #80BC00;
  --pts-lime-dark: #6ba000;
  --pts-blue: #3CB4E5;
  --pts-ink: #1D252C;
  --pts-gray: #5B6670;
  --pts-gray-2: #8a929b;
  --pts-line: #D9D8D6;
  --pts-line-2: #ECEBE7;
  --pts-cream: #F6F5F1;
  --pts-white: #ffffff;

  /* Type — Poppins everywhere */
  --font-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Poppins", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Spacing */
  --gutter: clamp(22px, 5vw, 64px);
  --section-pad: clamp(64px, 9vw, 140px);

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100%; }
html { overflow-x: clip; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: no-preference) {
  * { scroll-behavior: smooth; }
}
img, svg, video, iframe { max-width: 100%; }
input, select, textarea { max-width: 100%; box-sizing: border-box; }
*, *::before, *::after { min-width: 0; }
body {
  font-family: var(--font-body);
  background: var(--pts-cream);
  color: var(--pts-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  box-sizing: border-box;
}

/* Monospace micro label */
.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pts-gray);
  font-weight: 500;
}
.mono-label .dot { color: var(--pts-lime); }

/* Display headings */
.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.98;
  font-size: clamp(44px, 7.2vw, 112px);
  color: var(--pts-ink);
}
.h-xl {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(36px, 4.6vw, 68px);
}
.h-lg {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.05;
  font-size: clamp(28px, 3vw, 44px);
}
.h-md {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.15;
  font-size: clamp(20px, 1.6vw, 24px);
}
.lede {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--pts-gray);
  max-width: 60ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--pts-green);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--pts-green) 0%, var(--pts-green-light) 45%, var(--pts-lime) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: -1;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  background: var(--pts-green);
  box-shadow:
    0 0 0 1px rgba(128,188,0,0.4),
    0 8px 24px rgba(0,102,70,0.35),
    0 0 40px rgba(128,188,0,0.45),
    0 0 80px rgba(0,102,70,0.3);
}
.btn-lime {
  background: var(--pts-lime);
  color: var(--pts-ink);
  font-weight: 600;
  position: relative;
  isolation: isolate;
}
.btn-lime:hover {
  background: linear-gradient(120deg, var(--pts-lime) 0%, var(--pts-green-light) 100%);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(128,188,0,0.4),
    0 8px 28px rgba(128,188,0,0.45),
    0 0 50px rgba(128,188,0,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--pts-ink);
  border: 1px solid var(--pts-ink);
}
.btn-ghost:hover {
  background: linear-gradient(120deg, var(--pts-green) 0%, var(--pts-lime) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 0 0 1px rgba(128,188,0,0.4),
    0 8px 24px rgba(0,102,70,0.3),
    0 0 40px rgba(128,188,0,0.4);
}
.btn-ghost-inv {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost-inv:hover {
  background: linear-gradient(120deg, var(--pts-green) 0%, var(--pts-lime) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 0 0 1px rgba(128,188,0,0.4),
    0 10px 28px rgba(128,188,0,0.35),
    0 0 40px rgba(0,102,70,0.45);
}

.btn .arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* Card base */
.card {
  background: #fff;
  border: 1px solid var(--pts-line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s ease, transform .25s ease;
}
.card:hover {
  border-color: var(--pts-ink);
}

/* Striped photo placeholder */
.photo {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(29,37,44,0.06) 0 2px,
      transparent 2px 14px),
    var(--pts-line-2);
  overflow: hidden;
  border-radius: var(--r-md);
}
.photo.dark {
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.05) 0 2px,
      transparent 2px 14px),
    #0e1a16;
}
.photo.green {
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.08) 0 2px,
      transparent 2px 14px),
    var(--pts-green);
}
.photo-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pts-ink);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 4px;
}
.photo.dark .photo-tag, .photo.green .photo-tag {
  color: #fff;
  background: rgba(0,0,0,0.4);
}

/* Section frame */
.section {
  padding: var(--section-pad) 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: clamp(32px, 4vw, 56px);
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

/* Hairline */
.hair { height: 1px; background: var(--pts-line); width: 100%; }
.hair-dark { background: rgba(255,255,255,0.12); }

/* Page transitions */
.page-enter {
  animation: pageIn .5s cubic-bezier(.2,.7,.2,1);
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Nav */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.2) blur(10px);
  background: rgba(246,245,241,0.85);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, color .3s ease;
}
.topbar.scrolled { border-bottom-color: var(--pts-line); }
.topbar.on-hero {
  background: linear-gradient(180deg, rgba(10,15,12,0.55) 0%, rgba(10,15,12,0) 100%);
  backdrop-filter: none;
  color: #fff;
}
.topbar.on-hero .nav-links { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); }
.topbar.on-hero .nav-links button { color: rgba(255,255,255,0.9); }
.topbar.on-hero .nav-links button:hover { background: rgba(255,255,255,0.15); }
.topbar.on-hero .nav-links button.active {
  background: linear-gradient(120deg, #006646 0%, #80BC00 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(128,188,0,0.4), 0 0 20px rgba(128,188,0,0.45);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  gap: 12px;
  min-width: 0;
}
.topbar-inner > button:first-child { flex-shrink: 0; }
.nav-cta { padding: 10px 16px; font-size: 13.5px; }
.nav-cta-label-short { display: none; }
@media (max-width: 760px) {
  .nav-cta-label { display: none; }
  .nav-cta-label-short { display: inline; }
  .nav-cta { padding: 9px 14px !important; font-size: 12.5px !important; }
}
@media (max-width: 420px) {
  .nav-cta-label-short { display: none; }
  .nav-cta { padding: 10px !important; }
}
.nav-links {
  display: flex; gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(29,37,44,0.04);
}
.nav-links button {
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.003em;
  border-radius: 999px;
  color: var(--pts-ink);
  transition: background .2s ease, color .2s ease;
}
.nav-links button:hover { background: rgba(29,37,44,0.06); }
.nav-links button.active {
  background: var(--pts-ink);
  color: var(--pts-cream);
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-links.open,
  .topbar.on-hero .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px; left: var(--gutter); right: var(--gutter);
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--pts-line);
    border-radius: var(--r-md);
    padding: 8px;
    box-shadow: 0 18px 44px -20px rgba(8,14,11,0.5);
  }
  .nav-links.open button,
  .topbar.on-hero .nav-links.open button {
    width: 100%; text-align: left;
    color: var(--pts-ink) !important;
    background: transparent !important;
  }
  .nav-links.open button:hover,
  .topbar.on-hero .nav-links.open button:hover { background: rgba(29,37,44,0.06) !important; }
  .nav-links.open button.active,
  .topbar.on-hero .nav-links.open button.active { background: var(--pts-ink) !important; color: var(--pts-cream) !important; }
}
.menu-btn { display: none; }
@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 999px;
    background: rgba(29,37,44,0.06);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .topbar.on-hero .menu-btn { background: rgba(255,255,255,0.12); color: #fff; }
}

.logo-mark {
  height: 28px; width: auto;
}

/* WhatsApp FAB */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(37,211,102,0.35), 0 2px 6px rgba(0,0,0,0.1);
  z-index: 40;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(37,211,102,0.45); }
@media (max-width: 540px) {
  .wa-fab { padding: 12px; }
  .wa-fab .lbl { display: none; }
}

/* Footer */
.footer {
  background: var(--pts-ink);
  color: var(--pts-cream);
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer a:not(.btn):hover { color: var(--pts-lime); }
.footer a.btn:hover { color: #fff; }
.footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pts-lime);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 72px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 640px) { .footer-bottom { flex-direction: column; gap: 12px; align-items: start; } }
.footer-credit {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer-credit a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color .2s ease;
}
.footer-credit a strong { font-weight: 600; color: rgba(255,255,255,0.7); }
.footer-credit a:hover { color: var(--pts-lime); }
.footer-credit a:hover strong { color: var(--pts-lime); }

/* Forms */
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pts-gray);
}
.field input, .field textarea, .field select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--pts-line);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--pts-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--pts-green);
  box-shadow: 0 0 0 3px rgba(0,102,70,0.1);
}
.field textarea { resize: vertical; min-height: 120px; }

/* Hover helpers */
.hoverable { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.hoverable:hover { transform: translateY(-4px); }

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--pts-ink);
  color: var(--pts-cream);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  flex-shrink: 0;
  animation: marquee 35s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.marquee-track .sep { color: var(--pts-lime); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(128,188,0,0.15);
  color: var(--pts-green-deep);
  font-weight: 500;
}
.badge.ink { background: rgba(29,37,44,0.08); color: var(--pts-ink); }
.badge.green { background: var(--pts-green); color: #fff; }

/* Utility */
.grid { display: grid; }
.flex { display: flex; }
.center { display: flex; align-items: center; justify-content: center; }
.stack { display: flex; flex-direction: column; }

/* Scrollbar aesthetics */
::selection { background: var(--pts-lime); color: var(--pts-ink); }

/* Brand gradient */
.grad-text {
  background-image: linear-gradient(120deg, #006646 0%, #0d8259 40%, #80BC00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.grad-bar {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #006646 0%, #80BC00 100%);
  box-shadow: 0 0 18px rgba(128,188,0,0.5), 0 0 40px rgba(0,102,70,0.35);
}
.grad-chip {
  background: linear-gradient(120deg, rgba(0,102,70,0.12), rgba(128,188,0,0.2));
  border: 1px solid rgba(128,188,0,0.35);
}
/* Cyan accent dot (used sparingly) */
.cyan-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: #3CB4E5;
  box-shadow: 0 0 10px rgba(60,180,229,0.7), 0 0 22px rgba(60,180,229,0.4);
  display: inline-block;
}
.cyan-tick {
  color: #3CB4E5;
  text-shadow: 0 0 12px rgba(60,180,229,0.45);
}

/* Neon glow (used on key highlights) */
.neon-glow {
  box-shadow:
    0 0 0 1px rgba(128,188,0,0.4),
    0 10px 40px rgba(0,102,70,0.35),
    0 0 60px rgba(128,188,0,0.35);
}
.neon-ring {
  position: relative;
}
.neon-ring::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, #006646, #80BC00, #3CB4E5, #006646);
  background-size: 300% 300%;
  animation: gradmove 6s linear infinite;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.7;
}
@keyframes gradmove {
  from { background-position: 0% 50%; }
  to { background-position: 300% 50%; }
}
.text-glow-lime {
  text-shadow: 0 0 18px rgba(128,188,0,0.55), 0 0 40px rgba(0,102,70,0.35);
}

/* HERO FULLSCREEN — minimalista */
.hero-fs {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  max-height: 960px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: stretch;
}
.hero-fs .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-fs .hero-media .stage {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-fs .hero-media img.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 75% center;
  display: block;
}
.hero-fs .hero-media img.hero-photo-mobile { display: none !important; }
.hero-fs .hero-media picture, .hero-fs .stage picture { display: block; width: 100%; height: 100%; }
.hero-fs h1 { font-size: clamp(30px, 4.6vw, 62px); }
.hero-fs .hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(3,26,18,1) 0%, rgba(3,26,18,0.92) 28%, rgba(4,18,15,0.55) 60%, rgba(4,18,15,0.2) 85%, rgba(4,18,15,0.05) 100%),
    linear-gradient(180deg, rgba(8,14,11,0.25) 0%, rgba(8,14,11,0.1) 40%, rgba(8,14,11,0.55) 100%);
  z-index: 1;
}
.hero-fs .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  padding: 112px var(--gutter) 40px;
}
.hero-fs .hero-copy { max-width: 780px; align-self: center; min-height: 0; }
.hero-fs .mono-label { color: #80BC00; }
.hero-fs .lede { color: rgba(255,255,255,0.86); }
.hero-fs .btn-ghost-inv { border-color: rgba(255,255,255,0.5); }

/* Hero bottom rail with slide thumbs */
.hero-rail {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-rail-meta {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.hero-counter {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.hero-counter b { color: #fff; font-weight: 500; }
.hero-thumbs {
  display: flex; gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}
.hero-thumb {
  position: relative;
  width: 148px; min-height: 76px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  text-align: left;
  display: flex; flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all .3s ease;
  overflow: hidden;
}
.hero-thumb:hover { border-color: rgba(128,188,0,0.5); color: #fff; }
.hero-thumb.is-active {
  background: rgba(128,188,0,0.08);
  border-color: rgba(128,188,0,0.6);
  color: #fff;
}
.hero-thumb .t-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  opacity: 0.65;
}
.hero-thumb .t-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.hero-thumb .t-bar {
  position: absolute; left: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, #006646, #80BC00);
  box-shadow: 0 0 10px rgba(128,188,0,0.6);
  transition: width .1s linear;
}
@media (max-width: 860px) {
  .hero-rail { grid-template-columns: 1fr; }
  .hero-thumb { width: 108px; min-height: 66px; }
}
@media (max-width: 540px) {
  .hero-thumb .t-label { display: none; }
  .hero-thumb { width: 60px; min-height: 44px; padding: 10px; }
}
@media (max-height: 720px) {
  .hero-fs .hero-inner { padding: 88px var(--gutter) 28px; }
  .hero-fs h1 { font-size: clamp(30px, 4.4vw, 46px); }
  .hero-fs .hero-copy .lede { font-size: 14.5px; margin-top: 14px; }
  .hero-fs .hero-copy > div:last-child { margin-top: 18px; }
}
@media (max-width: 820px) {
  .hero-fs .hero-media img.hero-photo { object-position: center bottom !important; }
  .hero-fs .hero-photo-desktop { display: none !important; }
  .hero-fs .hero-photo-mobile { display: block !important; object-fit: cover !important; object-position: center bottom !important; }
}
@media (max-width: 600px) {
  .hero-fs { min-height: 0; height: 100svh; max-height: none; }
  .hero-fs .hero-inner { padding: 76px clamp(28px, 7vw, 40px) 24px; align-content: start; }
  .hero-fs .hero-copy { max-width: 92%; align-self: start; margin-top: 8px; }
  .hero-fs .hero-media img.hero-photo { object-position: center 78%; }
  .hero-fs .hero-photo-desktop { display: none; }
  .hero-fs .hero-photo-mobile { display: block; object-position: center bottom; }
  .hero-fs .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3,26,18,1) 0%, rgba(3,26,18,0.88) 28%, rgba(4,18,15,0.45) 58%, rgba(4,18,15,0.2) 82%, rgba(4,18,15,0.35) 100%);
  }
  .hero-fs h1 { font-size: clamp(30px, 7.6vw, 42px); }
  .hero-fs .lede { font-size: 15px; margin-top: 14px; }
  .hero-fs .cta-row { margin-top: 20px; }
  .hero-fs .cta-row .btn { width: 100%; justify-content: center; }
}

.hero-progress {
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.hero-progress .bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, #006646, #80BC00);
  box-shadow: 0 0 14px rgba(128,188,0,0.6);
  transition: width .12s linear;
}

/* Highlight card with neon */
.highlight-neon {
  position: relative;
  isolation: isolate;
}
.highlight-neon::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, #006646, #80BC00);
  filter: blur(18px);
  opacity: 0.55;
  z-index: -1;
}


/* ===== Scrollbar fina verde ===== */
html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0 !important; height: 0 !important; display: none; }
.pts-scrollbar { position: fixed; top: 0; right: 0; width: 12px; height: 100%; background: var(--pts-ink); z-index: 99999; }
.pts-scrollbar__thumb { position: absolute; left: 0; right: 0; background: var(--pts-lime); border-radius: 0; cursor: grab; }
.pts-scrollbar__thumb:active { cursor: grabbing; }
@media (max-width: 700px) { .pts-scrollbar { display: none; } }
