/* GreenGuard Tech — static site */
:root {
  --color-bg: #f6f4ef;
  --color-bg-alt: #eef2ea;
  --color-surface: #ffffff;
  --color-ink: #1a1f1a;
  --color-ink-muted: #4a534a;
  --color-accent: #2d6a4f;
  --color-accent-dark: #1b4332;
  --color-accent-light: #40916c;
  --color-line: #d4ddd4;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --shadow: 0 12px 40px rgba(27, 67, 50, 0.08);
  --radius: 12px;
  --max: 1100px;
  --narrow: 680px;
}

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

html {
  scroll-behavior: smooth;
  /* Sticky header (~4rem) + air so section titles aren’t hidden under nav */
  scroll-padding-top: 5.25rem;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-accent-dark);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--color-surface);
  color: var(--color-ink);
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: var(--narrow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 18, 12, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.logo:hover {
  opacity: 0.92;
}

.logo-mark {
  display: block;
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

@media (min-width: 800px) {
  .logo-mark {
    height: 3.25rem;
  }
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.05rem;
  margin-left: 0.5rem;
  line-height: 1;
}

.logo-wordmark-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.logo-wordmark-tech {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 800px) {
  .logo-wordmark-name { font-size: 1.55rem; }
  .logo-wordmark-tech { font-size: 1.1rem; }
}

/* Nav — always visible, pill style on desktop, compact on mobile */
.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
  font-size: 0.72rem;
  font-weight: 500;
}

.nav-link--desktop {
  display: none;
}

@media (min-width: 800px) {
  .nav-link--desktop {
    display: inline-flex;
  }
  .nav {
    gap: 0.35rem;
    padding: 0.2rem 0.35rem 0.2rem 0.2rem;
    max-width: min(100%, 40rem);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.9rem;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 0.3rem 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
}

@media (min-width: 800px) {
  .nav-link {
    padding: 0.4rem 0.7rem;
  }
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-link.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-link.is-active[href="#top"] {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Contact as primary CTA */
.nav-link.nav-cta {
  background: #ffffff;
  color: var(--color-accent-dark) !important;
  border-color: #ffffff;
}

.nav-link.nav-cta:hover {
  background: #d8f3dc;
  border-color: #d8f3dc;
  color: var(--color-accent-dark) !important;
}

.nav-link.nav-cta.is-active {
  background: #d8f3dc;
  border-color: #d8f3dc;
  color: var(--color-accent-dark) !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle-bars {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: #ffffff;
  box-shadow: 0 5px 0 #ffffff, 0 -5px 0 #ffffff;
}

.nav-panel {
  background: #0a120c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.nav-panel[hidden] {
  display: none;
}

.nav-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0 1.25rem;
  font-weight: 500;
}

.nav-panel-inner .nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  display: block;
  border-radius: 8px;
  white-space: normal;
  border: 1px solid transparent;
}

.nav-panel-inner .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.nav-panel-inner .nav-link.is-active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.nav-panel-inner .nav-cta {
  text-align: center;
  margin-top: 0.25rem;
}

@media (min-width: 800px) {
  .nav-panel {
    display: none !important;
  }
}

/* Hero — forest video (matches greenguardtech.com) */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(92vh, 52rem);
  padding: 5rem 0 5.5rem;
  overflow: hidden;
  color: #f0f3ef;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video,
.hero-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  z-index: 0;
  pointer-events: none;
}

/* Still frame: reduced-motion, or if video fails to load */
.hero-video-fallback {
  z-index: 0;
  display: block;
  --hero-poster: url("images/hero-poster.jpg");
  background: var(--color-accent-dark) center / cover no-repeat;
  background-image: var(--hero-poster);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-video-fallback {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-video-fallback {
    display: block;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    190deg,
    rgba(0, 35, 25, 0.45) 0%,
    rgba(0, 45, 32, 0.62) 45%,
    rgba(0, 32, 22, 0.78) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  padding: 0 0.5rem;
}

.hero-logo-wrap {
  margin: 0 0 1.25rem;
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: min(8.5rem, 42vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.45));
}

.hero .eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b7e4c7;
  font-weight: 600;
  margin: 0 0 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero .eyebrow.hero-eyebrow {
  margin: 0 auto 0.1rem;
}

.hero-eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: #d8f0e0;
  max-width: 24rem;
  line-height: 1.4;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(183, 228, 199, 0.35);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

@media (min-width: 500px) {
  .hero-eyebrow {
    font-size: 0.72rem;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0.35rem 0 0.45rem;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero .tagline {
  font-size: clamp(0.8rem, 1.1vw, 0.88rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  line-height: 1.5;
  opacity: 0.97;
  word-spacing: 0.05em;
}

@media (min-width: 400px) {
  .hero .tagline {
    letter-spacing: 0.22em;
  }
}

.hero .hero-lead {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 1.9vw, 1.2rem);
  line-height: 1.5;
  font-weight: 500;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.button {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.button-primary {
  background: var(--color-accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--color-accent-dark);
  color: #fff;
  text-decoration: none;
}

.button-primary:active {
  transform: scale(0.98);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  color: var(--color-accent-dark);
  margin: 0 0 0.5rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-weight: 600;
  color: var(--color-ink-muted);
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

.prose p {
  margin: 0 0 1.25rem;
  color: var(--color-ink-muted);
}

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

/* Cards */
.cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-line);
}

.card-icon {
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
  color: var(--color-accent-dark);
}

.card p {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 0.98rem;
}

/* Team */
.team-intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  color: var(--color-ink-muted);
  font-size: 1rem;
}

.team-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-member {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.team-photo-wrap {
  margin: 0 auto 1.15rem;
  width: 11rem;
  height: 11rem;
  max-width: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-line);
  box-shadow: var(--shadow);
  background: var(--color-bg-alt);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.team-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
  color: var(--color-accent-dark);
}

.team-member .team-role,
.team-member .team-name {
  text-align: center;
}

.team-member .team-bio {
  text-align: left;
  max-width: 32rem;
  margin: 0 auto;
  color: var(--color-ink-muted);
  font-size: 0.98rem;
}

/* Contact */
.section-contact {
  background: linear-gradient(180deg, var(--color-bg) 0%, #eceae4 100%);
}

.contact-intro {
  text-align: center;
  color: var(--color-ink-muted);
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-alt {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--color-ink-muted);
}

.contact-alt a {
  color: var(--color-accent);
  font-weight: 600;
}

.contact-form {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row--half {
    grid-template-columns: 1fr;
  }
}

.form-row--half .form-row {
  gap: 0.4rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-weight: 600;
  font-size: 0.9rem;
}

.req {
  color: var(--color-accent);
}

input,
textarea,
select {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-surface);
  color: var(--color-ink);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a534a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

select:invalid {
  color: var(--color-ink-muted);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
  border-color: var(--color-accent);
}

textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-thanks {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: #d8f3dc;
  border: 1px solid #95d5b2;
  border-radius: 8px;
  color: var(--color-accent-dark);
  font-weight: 600;
  text-align: center;
}

.form-hint {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-ink-muted);
  line-height: 1.5;
}

.form-hint[hidden] {
  display: none;
}

/* Footer */
.site-footer {
  background: var(--color-accent-dark);
  color: #c8d9c8;
  padding: 2rem 0;
  margin-top: 0;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #c8d9c8;
  transition: background 0.2s, color 0.2s;
}

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  margin: 0 0 0.5rem;
  display: flex;
  justify-content: center;
  line-height: 0;
}

.footer-logo {
  width: 5.5rem;
  height: auto;
  object-fit: contain;
  /* Logo lives on light disc — lift contrast on dark footer bar */
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
}

.footer-back {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.footer-back a {
  color: #d8e8d8;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 220, 200, 0.5);
}

.footer-back a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* Index — services teaser */
.section-lead {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.section-lead a {
  font-weight: 600;
  color: var(--color-accent);
}

.services-cta {
  text-align: center;
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

/* —— Services & product page —— */
.eyebrow-sol {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0 0 0.9rem;
}

.solution-page .eyebrow-sol {
  text-align: left;
}

/* Hero */
.services-hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  text-align: left;
  background: #f5f6f3;
  border-bottom: 1px solid var(--color-line);
}

.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-dark) 0%, var(--color-accent) 50%, var(--color-accent-light) 100%);
}

.services-hero .services-hero__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.services-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  color: var(--color-accent-dark);
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-align: left;
}

.services-hero__lede {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Legacy (if referenced elsewhere) */
.sol-title,
.sol-hero__title,
.sol-deckline {
  font-family: var(--font-display);
}

.sol-deckline {
  margin: 0 auto;
  color: var(--color-ink-muted);
  max-width: 36rem;
}

.sol-prose {
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  color: var(--color-ink-muted);
  line-height: 1.65;
  text-align: left;
}

.subhead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-accent-dark);
  margin: 2rem 0 0.75rem;
}

.subhead2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

/* Problem — KPI row */
.problem-section__intro {
  text-align: center;
  color: var(--color-ink-muted);
  line-height: 1.7;
  max-width: 34rem;
  margin: 0 auto 2.25rem;
  font-size: 1.02rem;
}

.kpi-deck {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 52rem;
}

@media (min-width: 720px) {
  .kpi-deck {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.kpi-tile {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 14px;
  padding: 1.4rem 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 20px rgba(27, 67, 50, 0.06);
  position: relative;
  overflow: hidden;
}

.kpi-tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  opacity: 0.85;
}

.kpi-tile__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--color-accent-dark);
  margin: 0.35rem 0 0.4rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.kpi-tile__label {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

/* Legacy stat (unused on services) */
.stat-list,
.stat-value {
  font-family: var(--font-display);
}

.limit-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .limit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.limit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
}

.limit-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--color-accent-dark);
}

.limit-card p {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 0.98rem;
}

/* —— Our solution: vertical stack —— */

.solution-lede {
  max-width: 40rem;
  margin: 0 0 2rem;
  text-align: left;
  color: var(--color-ink-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.solution-stacked__text--2 {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  opacity: 0.97;
}

/* Narrow reading column, services solution section */
.container--solution {
  max-width: 42rem;
}

.solution-header {
  text-align: left;
  max-width: none;
  margin: 0 0 1.5rem;
}

.solution-header .section-title {
  text-align: left;
  margin-left: 0;
}

.solution-header__subtitle {
  margin: 0.6rem 0 0;
  max-width: 40rem;
  color: var(--color-ink-muted);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.solution-stack-heading {
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--color-accent);
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.solution-stacked {
  list-style: none;
  max-width: none;
  margin: 0.25rem 0 0;
  padding: 0.25rem 0 0;
}

.solution-stacked__item {
  position: relative;
  padding: 0 0 0 2.2rem;
  margin-bottom: 1.5rem;
}

.solution-stacked__item:last-child {
  margin-bottom: 0;
}

.solution-stacked__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 2rem;
  bottom: -1.4rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--color-accent) 0%,
    rgba(64, 145, 108, 0.35) 100%
  );
  border-radius: 1px;
}

.solution-stacked__marker {
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--color-bg-alt);
}

.solution-stacked__panel {
  display: grid;
  gap: 1rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(0, 45, 32, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.3rem 1.35rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 32px rgba(27, 67, 50, 0.08);
}

@media (min-width: 520px) {
  .solution-stacked__panel {
    grid-template-columns: 4.8rem 1fr;
    align-items: start;
  }
}

.solution-stacked__media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0.15rem;
}

.solution-stacked__img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  border-radius: 10px;
}

@media (min-width: 520px) {
  .solution-stacked__img {
    width: 4.8rem;
    height: 4.8rem;
  }
}

.solution-stacked__kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.solution-stacked__title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  margin: 0 0 0.4rem;
  color: var(--color-accent-dark);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.solution-stacked__text {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 0.95rem;
  line-height: 1.58;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.bullets {
  list-style: disc;
  padding-left: 1.3rem;
  max-width: 40rem;
  margin: 0 auto;
  color: var(--color-ink-muted);
  line-height: 1.65;
}

.bullets li {
  margin-bottom: 0.65rem;
}

.bullets li:last-child {
  margin-bottom: 0;
}

.two-cols {
  display: grid;
  gap: 2rem;
  max-width: 44rem;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .two-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.market-cards {
  display: grid;
  gap: 1.5rem;
}

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

.market-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.market-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.market-val {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  margin: 0 0 0.5rem;
}

.market-card p:last-child {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.timeline {
  list-style: none;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0;
  border-left: 3px solid var(--color-accent);
  padding-left: 1.5rem;
}

.timeline li {
  position: relative;
  margin-bottom: 1.25rem;
  color: var(--color-ink-muted);
  line-height: 1.55;
  padding-left: 0.25rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: -0.2rem;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--color-bg);
}

.timeline li:last-child {
  margin-bottom: 0;
}

.button-ghost {
  background: transparent;
  color: var(--color-accent) !important;
  border: 2px solid var(--color-accent);
  box-shadow: none;
}

.button-ghost:hover {
  background: var(--color-accent);
  color: #fff !important;
  text-decoration: none;
}

.foot-note {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
}

.foot-note a {
  color: var(--color-accent);
}

.cta-block .section-title {
  margin-bottom: 0.75rem;
}

/* Services page — problem / proof */
.problem-lead {
  text-align: center;
}

.traction-pro .section-title {
  margin-bottom: 0.4rem;
}

.traction-pro {
  background: #faf9f6;
  border-top: 1px solid var(--color-line);
}

.traction-tagline {
  text-align: center;
  color: var(--color-ink-muted);
  font-size: 1.02rem;
  max-width: 34rem;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Field ops: vertical timeline (replaces card grid) */
.ops-timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0.5rem 0 0;
  max-width: 40rem;
}

.ops-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  column-gap: 1rem;
  align-items: start;
  margin: 0;
  padding: 0 0 1.4rem 0.1rem;
}

.ops-timeline__item:last-child {
  padding-bottom: 0;
}

.ops-timeline__rail {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: stretch;
  min-height: 1.2rem;
  padding-top: 0.25rem;
}

.ops-timeline__item:not(:last-child) .ops-timeline__rail::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  bottom: 0.15rem;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(64, 145, 108, 0.2) 100%);
  border-radius: 1px;
}

.ops-timeline__dot {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-accent);
  box-shadow: 0 0 0 3px #faf9f6;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ops-timeline__item--future .ops-timeline__dot {
  background: var(--color-accent);
  box-shadow: 0 0 0 3px #faf9f6, 0 0 0 5px rgba(45, 106, 79, 0.2);
}

.ops-timeline__content {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(0, 45, 32, 0.1);
  border-radius: 14px;
  padding: 1.1rem 1.25rem 1.2rem 1.3rem;
  box-shadow: 0 2px 20px rgba(27, 67, 50, 0.06);
  text-align: left;
  border-left: 3px solid var(--color-accent);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.ops-timeline__item:hover .ops-timeline__content {
  box-shadow: 0 4px 28px rgba(27, 67, 50, 0.1);
  border-color: #c0d0c0;
}

.ops-timeline__phase {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--color-accent);
}

.ops-timeline__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-accent-dark);
  margin: 0 0 0.4rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ops-timeline__text {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

/* Our Story: field programme timeline (on home) */
.story-ops {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-line);
  text-align: left;
}

.story-ops__intro {
  margin: 0 0 1.75rem;
  color: var(--color-ink-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 500;
  max-width: 36rem;
}

.ops-timeline--story .ops-timeline__dot {
  box-shadow: 0 0 0 3px var(--color-surface);
}

.ops-timeline--story {
  max-width: 38rem;
  margin: 0;
}

/* === Our Story Redesign === */

.story-redesign {
  padding: 0;
}

.sr-hero {
  background: var(--color-bg);
  padding: 4rem 0 3rem;
}

.sr-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.sr-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  font-weight: 700;
  color: var(--color-accent-dark);
  line-height: 1.15;
  margin: 0 0 1.5rem;
  max-width: 34rem;
  letter-spacing: -0.025em;
  text-align: left;
}

.sr-hero-p {
  font-size: 0.98rem;
  color: var(--color-ink-muted);
  line-height: 1.75;
  max-width: 32rem;
  margin: 0 0 0.75rem;
}

.sr-hero-p:last-child { margin-bottom: 0; }

/* Deployments */
.sr-deployments {
  background: var(--color-bg);
  padding: 3.5rem 0;
}

.sr-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  opacity: 0.55;
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.sr-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-accent-dark);
  opacity: 0.2;
}

.sr-deploy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .sr-deploy-grid { grid-template-columns: 1fr; }
}

.sr-deploy-card {
  background: #fff;
  padding: 2rem 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(26,51,37,0.08);
  box-shadow: 0 2px 16px rgba(26,51,37,0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.sr-deploy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.sr-deploy-card--green::before  { background: linear-gradient(90deg, #2d6a4f, #40916c); }
.sr-deploy-card--blue::before   { background: linear-gradient(90deg, #1a6fa8, #3b9fd4); }
.sr-deploy-card--amber::before  { background: linear-gradient(90deg, #b45309, #d97706); }

.sr-deploy-card:hover {
  box-shadow: 0 10px 36px rgba(26,51,37,0.13);
  transform: translateY(-3px);
}

.sr-deploy-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.sr-deploy-icon svg { width: 1.25rem; height: 1.25rem; }

.sr-deploy-card--green .sr-deploy-icon  { background: #e6f4ec; color: #2d6a4f; }
.sr-deploy-card--blue  .sr-deploy-icon  { background: #e0f0fa; color: #1a6fa8; }
.sr-deploy-card--amber .sr-deploy-icon  { background: #fef3e2; color: #b45309; }

.sr-num {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(26,51,37,0.28);
  margin-bottom: 0.5rem;
}

.sr-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}

.sr-deploy-card--green .sr-tag  { color: #1b4332; background: #d8f3e3; }
.sr-deploy-card--blue  .sr-tag  { color: #0c4a6e; background: #dbeafe; }
.sr-deploy-card--amber .sr-tag  { color: #7c2d12; background: #fde8c8; }

.sr-deploy-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a3325;
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.sr-deploy-card p {
  font-size: 0.85rem;
  color: #4a6358;
  line-height: 1.7;
  margin: 0;
}

/* Timeline dark */
.sr-timeline {
  background: #1a3325;
  padding: 3.5rem 0;
}

.sr-timeline-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7dc49a;
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.sr-timeline-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(125,196,154,0.3);
}

.sr-tl-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.sr-tl-item:last-child { margin-bottom: 0; }

.sr-tl-year {
  font-size: 0.75rem;
  font-weight: 500;
  color: #7dc49a;
  min-width: 5.5rem;
  padding-top: 0.25rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.sr-tl-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #7dc49a;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.sr-tl-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: #f0ece3;
  margin: 0 0 0.4rem;
}

.sr-tl-content p {
  font-size: 0.84rem;
  color: rgba(240,236,227,0.6);
  line-height: 1.65;
  margin: 0;
}

/* CTA bar */
.sr-cta-bar {
  background: var(--color-accent);
  padding: 1.75rem 0;
}

.sr-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.sr-cta-text {
  font-size: 0.95rem;
  color: rgba(240,236,227,0.88);
}

.sr-cta-btn {
  background: #f0ece3;
  color: #1a3325;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.sr-cta-btn:hover {
  background: #fff;
  color: #1a3325;
  text-decoration: none;
}

/* === Platform Tabs (services page) === */

.pt-section { padding: 0; }

.pt-hero {
  background: #1a3325;
  padding: 3rem 0 2rem;
}

.pt-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7dc49a;
  margin: 0 0 0.75rem;
}

.pt-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #f0ece3;
  line-height: 1.2;
  margin: 0 0 0.65rem;
  letter-spacing: -0.025em;
}

.pt-lede {
  font-size: 0.9rem;
  color: rgba(240,236,227,0.6);
  line-height: 1.7;
  max-width: 30rem;
  margin: 0;
}

.pt-tabs-bar {
  background: #1a3325;
  border-top: 1px solid rgba(125,196,154,0.12);
}

.pt-tabs {
  display: flex;
  gap: 0;
}

.pt-tab {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(240,236,227,0.45);
  padding: 0.85rem 1.1rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.pt-tab i { font-size: 0.95rem; }

.pt-tab:hover:not(.pt-tab--active) { color: rgba(240,236,227,0.75); }

.pt-tab--active {
  color: #f0ece3;
  border-bottom-color: #7dc49a;
  font-weight: 500;
}

.pt-body {
  background: var(--color-bg);
  padding: 2.5rem 0;
}

.pt-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.pt-panel--active { display: grid; }

@media (max-width: 760px) {
  .pt-panel--active { grid-template-columns: 1fr; }
}

/* Info side */
.pt-info-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a3325;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.pt-info-p {
  font-size: 0.88rem;
  color: #4a6358;
  line-height: 1.72;
  margin: 0 0 1.25rem;
}

.pt-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pt-feats li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: #2d5a3d;
}

.pt-feats li i { color: #2d6e4e; font-size: 0.95rem; flex-shrink: 0; }

/* Screen mockup */
.pt-screen {
  background: #111827;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.pt-screen-bar {
  background: #0f1721;
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pt-dot-r { width:7px;height:7px;border-radius:50%;background:#ef4444;flex-shrink:0; }
.pt-dot-y { width:7px;height:7px;border-radius:50%;background:#f59e0b;flex-shrink:0; }
.pt-dot-g { width:7px;height:7px;border-radius:50%;background:#22c55e;flex-shrink:0; }

.pt-screen-tabs {
  display: flex;
  gap: 0.75rem;
  margin-left: 0.75rem;
}

.pt-stab { font-size: 0.58rem; color: rgba(255,255,255,0.3); }
.pt-stab--on { color: #7dc49a; font-weight: 600; }

.pt-screen-body { padding: 1rem; }

/* Stat row */
.pt-stat-row { display: flex; gap: 0.5rem; margin-bottom: 0.65rem; }

.pt-stat-box {
  flex: 1;
  background: #1a2535;
  border-radius: 7px;
  padding: 0.65rem 0.75rem;
}

.pt-stat-lbl { font-size: 0.58rem; color: rgba(255,255,255,0.4); margin-bottom: 0.25rem; }
.pt-stat-val { font-size: 1rem; font-weight: 600; color: #e2e8f0; }
.pt-stat-sub { font-size: 0.58rem; color: #f59e0b; margin-top: 0.15rem; }

.pt-rec {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  color: #7dc49a;
}

.pt-rec i { font-size: 0.85rem; }

/* Bar chart */
.pt-chart-wrap {
  background: #1a2535;
  border-radius: 7px;
  padding: 0.65rem 0.75rem;
}

.pt-chart-lbl { font-size: 0.58rem; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }

.pt-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 3.5rem;
}

.pt-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; height: 100%; justify-content: flex-end; }
.pt-bar { width: 100%; border-radius: 3px 3px 0 0; }
.pt-bar-lbl { font-size: 0.5rem; color: rgba(255,255,255,0.3); }

/* Map */
.pt-map-bg {
  background: #1e3a2f;
  border-radius: 8px;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0.65rem;
  font-size: 2rem;
  color: rgba(45,110,78,0.35);
}

.pt-pin {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: #2d6e4e;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: #fff;
  font-weight: 600;
}

.pt-sensor-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a2535;
  border-radius: 7px;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.4rem;
}

.pt-sensor-name { font-size: 0.65rem; font-weight: 500; color: #e2e8f0; margin-bottom: 0.15rem; }
.pt-sensor-info { font-size: 0.58rem; color: rgba(255,255,255,0.4); }

.pt-badge-low {
  font-size: 0.52rem;
  background: rgba(45,110,78,0.15);
  color: #7dc49a;
  border: 0.5px solid rgba(125,196,154,0.3);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}

/* Zones */
.pt-screen-section-title { font-size: 0.65rem; font-weight: 500; color: #e2e8f0; margin-bottom: 0.65rem; }

.pt-zone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a2535;
  border-radius: 7px;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.4rem;
}

.pt-zone-left { display: flex; align-items: center; gap: 0.5rem; font-size: 0.65rem; color: #e2e8f0; }
.pt-zone-left i { font-size: 0.9rem; }
.pt-zone-pct { font-size: 0.75rem; font-weight: 600; }

/* Satellite */
.pt-sat-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #1a2535;
  border-radius: 7px;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.4rem;
}

.pt-sat-item--active { background: #1e3040; border: 0.5px solid rgba(125,196,154,0.3); }

.pt-sat-thumb { width: 1.9rem; height: 1.4rem; border-radius: 4px; flex-shrink: 0; }

.pt-sat-label { font-size: 0.65rem; color: #e2e8f0; }
.pt-sat-label span { display: block; font-size: 0.52rem; color: rgba(255,255,255,0.4); margin-top: 0.1rem; }

.pt-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; margin-top: 0.5rem; }

.pt-info-cell { background: #1a2535; border-radius: 7px; padding: 0.5rem 0.65rem; }
.pt-info-lbl { font-size: 0.52rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.15rem; }
.pt-info-val { font-size: 0.75rem; font-weight: 600; color: #e2e8f0; }

/* Dots */
.pt-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.25rem 0 1.75rem;
  background: var(--color-bg);
}

.pt-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #1a3325;
  opacity: 0.2;
  cursor: pointer;
  transition: all 0.2s;
}

.pt-dot--active { opacity: 1; width: 1.25rem; border-radius: 4px; }

/* === System Layers Redesign (services page) === */

.sl-section {
  padding: 3rem 0 2.5rem;
}

.sl-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a3325;
  opacity: 0.45;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 2rem;
}

.sl-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #1a3325;
  opacity: 0.15;
}

.sl-layer {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(26,51,37,0.1);
}

.sl-layer--last {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 640px) {
  .sl-layer { grid-template-columns: 1fr; }
}

.sl-layer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.sl-num {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
}

.sl-num--green { background: #1a3325; color: #7dc49a; }
.sl-num--blue  { background: #0d3b6e; color: #90c4f0; }
.sl-num--amber { background: #5c2e00; color: #f0b96b; }

.sl-img-wrap {
  width: 7.5rem;
  height: 5.5rem;
  border-radius: 10px;
  overflow: hidden;
}

.sl-img-wrap--green { background: #d5e8db; }
.sl-img-wrap--blue  { background: #dce8f5; }
.sl-img-wrap--amber { background: #faeeda; }

.sl-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sl-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a3325;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.sl-p {
  font-size: 0.9rem;
  color: #3d5447;
  line-height: 1.7;
  margin: 0 0 0.6rem;
}

.sl-p--muted { color: #5a7060; margin-bottom: 1rem; }

/* Benefit box */
.sl-benefit-box {
  border-left: 3px solid #2d6e4e;
  background: #eef6f1;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  border-radius: 0 6px 6px 0;
}

.sl-benefit-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a3325;
  margin: 0 0 0.6rem;
}

.sl-benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sl-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #2d5a3d;
  line-height: 1.5;
}

.sl-benefit-list li svg {
  width: 1rem;
  height: 1rem;
  color: #2d6e4e;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Stat row */
.sl-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.sl-stat {
  border-radius: 10px;
  padding: 1rem 0.75rem;
  text-align: center;
}

.sl-stat--blue { background: #eef3fb; }

.sl-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a3325;
  margin-bottom: 0.2rem;
}

.sl-stat-lbl {
  font-size: 0.68rem;
  color: #4a6378;
  line-height: 1.3;
}

/* Advantage box */
.sl-adv-box {
  border-left: 3px solid;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1rem;
  border-radius: 0 6px 6px 0;
}

.sl-adv-box--blue  { border-color: #185FA5; background: #eef3fb; }
.sl-adv-box--amber { border-color: #BA7517; background: #fdf3e3; }

.sl-adv-label {
  font-size: 0.7rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
}

.sl-adv-box--blue  .sl-adv-label { color: #185FA5; }
.sl-adv-box--amber .sl-adv-label { color: #854F0B; }

.sl-adv-box p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

.sl-adv-box--blue  p { color: #0C447C; }
.sl-adv-box--amber p { color: #633806; }

/* Pills */
.sl-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sl-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid;
}

.sl-pill svg { width: 0.85rem; height: 0.85rem; flex-shrink: 0; }

.sl-pill--green { background: #fff; border-color: #b5d4be; color: #1a3325; }
.sl-pill--amber { background: #fff; border-color: #e8d0a0; color: #633806; }

/* Services section heading */
.services-heading-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.services-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--color-accent-dark);
  margin: 0;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.services-heading-line {
  flex: 1;
  height: 1px;
  background: var(--color-accent-dark);
  opacity: 0.15;
}

/* CTA on services */
.services-next__lede {
  text-align: center;
  color: var(--color-ink-muted);
  line-height: 1.6;
  max-width: 28rem;
  margin: 0 auto;
  font-size: 0.98rem;
}

.services-next {
  background: linear-gradient(180deg, #f2f0ea 0%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-line);
}

.services-next__url a {
  color: var(--color-accent);
  font-weight: 500;
}

/* =============================================
   Redesigned Hero — two column + dashboard
   ============================================= */

/* Override centered layout */
.hero-inner {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
  max-width: var(--max) !important;
  padding: 0 1rem !important;
}

/* Darker left-side overlay for text legibility */
.hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(0,18,10,0.92) 0%,
    rgba(0,22,12,0.78) 38%,
    rgba(0,15,8,0.48) 65%,
    rgba(0,10,5,0.28) 100%
  ) !important;
}

/* Left column */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #a7f3d0;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.28);
  border-radius: 999px;
  padding: 0.32rem 0.9rem 0.32rem 0.65rem;
  margin: 0 0 1.25rem;
}

.hero-badge-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #10b981;
  animation: hero-blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hero-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Override old hero title within new layout */
.hero-content .hero-title {
  font-size: clamp(2rem, 4.2vw, 3.25rem) !important;
  text-align: left !important;
  color: #fff !important;
  margin: 0 0 1rem !important;
  line-height: 1.08 !important;
  font-style: normal !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
}

.hero-em {
  font-style: italic;
  color: #4ade80;
}

.hero-content .hero-lead {
  text-align: left !important;
  max-width: 30rem !important;
  margin: 0 0 1.5rem !important;
  font-size: 1.02rem !important;
  color: rgba(255,255,255,0.85) !important;
  text-shadow: none !important;
}

.hero-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.35;
}

.hero-feat-ic {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
}

.hero-feat-ic svg {
  width: 0.95rem;
  height: 0.95rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-accent-dark);
  border: 2px solid var(--color-accent-dark);
  padding: 0.68rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.hero-btn-primary:hover {
  background: #0d2519;
  border-color: #0d2519;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.hero-btn-primary svg { width: 0.95rem; height: 0.95rem; }

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.32);
  padding: 0.68rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.hero-btn-outline:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.hero-btn-outline svg { width: 0.8rem; height: 0.8rem; }

/* Right column: dashboard screenshot */
.hero-dash-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-dash-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 14px;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.08);
  display: block;
}

/* ---- Dashboard mockup (kept for reference, unused) ---- */
.dash {
  background: #0f1923;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.06);
  width: 100%;
  max-width: 500px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: #e2e8f0;
  user-select: none;
}

.dash-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.9rem;
  background: #141e2d;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-hd-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dash-hd-logo {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

.dash-hd-name {
  font-weight: 700;
  font-size: 0.78rem;
  color: #f1f5f9;
  letter-spacing: -0.01em;
}

.dash-hd-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.dash-hd-bell {
  display: flex;
  align-items: center;
  color: #64748b;
  cursor: default;
}

.dash-hd-bell svg { width: 1rem; height: 1rem; }

.dash-hd-av {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669, #0d9488);
}

.dash-body {
  display: grid;
  grid-template-columns: 5rem 1fr 8.5rem;
  height: 15.5rem;
}

.dash-sidebar {
  background: #0d1520;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 0.4rem 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.18rem;
  padding: 0.42rem 0.2rem;
  color: #475569;
  border-radius: 7px;
  font-size: 0.56rem;
  font-weight: 500;
  text-align: center;
  cursor: default;
  transition: color 0.15s, background 0.15s;
}

.dash-nav svg { width: 0.95rem; height: 0.95rem; flex-shrink: 0; }

.dash-nav--active {
  color: #10b981;
  background: rgba(16,185,129,0.1);
}

.dash-map {
  position: relative;
  background:
    url("https://static.wixstatic.com/media/11062b_d578b9d4ffba48c68d086ec29fe9e6f0f000.jpg")
    center / cover no-repeat;
  overflow: hidden;
}

.dash-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,18,10,0.32);
  z-index: 0;
}

.dash-dot {
  position: absolute;
  z-index: 1;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #10b981;
  border: 1.5px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 6px rgba(16,185,129,0.7);
  transform: translate(-50%, -50%);
}

.dash-dot--fire {
  background: #ef4444;
  border-color: #fca5a5;
  box-shadow: 0 0 10px rgba(239,68,68,0.9), 0 0 22px rgba(239,68,68,0.45);
  width: 0.7rem;
  height: 0.7rem;
  animation: fire-pulse 1.6s ease-in-out infinite;
}

@keyframes fire-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(239,68,68,0.9), 0 0 22px rgba(239,68,68,0.4); }
  50% { box-shadow: 0 0 16px rgba(239,68,68,1), 0 0 32px rgba(239,68,68,0.6); }
}

.dash-panel {
  background: #141e2d;
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dash-risk-card {
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-risk-label {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin: 0 0 0.2rem;
  font-weight: 600;
}

.dash-risk-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ef4444;
  margin: 0 0 0.3rem;
  line-height: 1;
}

.dash-gauge-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.dash-gauge-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.dash-gauge-fill {
  height: 100%;
  width: 85%;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius: 2px;
}

.dash-gauge-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ef4444;
  white-space: nowrap;
  line-height: 1;
}

.dash-gauge-denom {
  font-size: 0.5rem;
  color: #64748b;
  font-weight: 400;
}

.dash-risk-loc,
.dash-risk-upd {
  margin: 0;
  font-size: 0.52rem;
  color: #64748b;
  line-height: 1.5;
}

.dash-env-card {
  padding: 0.5rem 0.7rem;
  flex: 1;
  overflow: hidden;
}

.dash-env-title {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.dash-env-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.dash-env-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-env-key {
  display: flex;
  align-items: center;
  gap: 0.22rem;
  color: #94a3b8;
  font-size: 0.58rem;
}

.dash-env-key svg { width: 0.6rem; height: 0.6rem; color: #64748b; flex-shrink: 0; }

.dash-env-val {
  font-size: 0.62rem;
  font-weight: 600;
  color: #e2e8f0;
}

.dash-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #0d1520;
}

.dash-stat-block {
  padding: 0.5rem 0.7rem;
}

.dash-stat-block:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.06);
}

.dash-stat-label {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin: 0 0 0.18rem;
  font-weight: 600;
}

.dash-stat-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #10b981;
  margin: 0 0 0.12rem;
  line-height: 1.1;
}

.dash-stat-val span {
  font-size: 0.55rem;
  font-weight: 400;
  color: #64748b;
}

.dash-sparkline {
  display: block;
  width: 100%;
  height: 1.1rem;
  color: #10b981;
  opacity: 0.65;
}

.dash-alert-row {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  margin: 0 0 0.08rem;
}

.dash-alert-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: fire-pulse 1.6s ease-in-out infinite;
}

.dash-alert-text {
  font-size: 0.62rem;
  font-weight: 600;
  color: #ef4444;
}

.dash-alert-meta {
  font-size: 0.5rem;
  color: #64748b;
  margin: 0;
}

/* Mobile: single column hero */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 0 0.5rem !important;
  }
  .hero-content { align-items: center; }
  .hero-content .hero-title { text-align: center !important; }
  .hero-content .hero-lead { text-align: center !important; max-width: 100% !important; }
  .hero-features { align-items: flex-start; }
  .hero-dash-wrap { display: none; }
}

/* ---- How it works — homepage ---- */
.hiw-flow {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hiw-step {
  flex: 1 1 12rem;
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.75rem 1rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.hiw-num {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-step--1 .hiw-num { background: #059669; }
.hiw-step--2 .hiw-num { background: #2563eb; }
.hiw-step--3 .hiw-num { background: #7c3aed; }
.hiw-step--4 .hiw-num { background: #ea580c; }

.hiw-ic {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-step--1 .hiw-ic { background: #d1fae5; color: #059669; }
.hiw-step--2 .hiw-ic { background: #dbeafe; color: #2563eb; }
.hiw-step--3 .hiw-ic { background: #ede9fe; color: #7c3aed; }
.hiw-step--4 .hiw-ic { background: #ffedd5; color: #ea580c; }

.hiw-ic svg { width: 1.25rem; height: 1.25rem; }

.hiw-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--color-ink);
}

.hiw-step p {
  font-size: 0.82rem;
  color: var(--color-ink-muted);
  margin: 0;
  line-height: 1.55;
}

.hiw-arrow {
  display: none;
  color: var(--color-ink-muted);
  opacity: 0.4;
  flex-shrink: 0;
  align-self: center;
}

.hiw-arrow svg { width: 1.4rem; height: 1.4rem; }

@media (min-width: 900px) {
  .hiw-arrow { display: block; }
}

/* ---- Stats bar ---- */
.stats-bar {
  background: var(--color-accent-dark);
  padding: 2.25rem 0;
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

@media (min-width: 700px) {
  .stats-bar__inner { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

.stat-ic {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a7f3d0;
  margin-bottom: 0.2rem;
}

.stat-ic svg { width: 1.1rem; height: 1.1rem; }

.stat-val {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(200,220,200,0.75);
  margin: 0;
}

/* Trust / partners bar */
.trust-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 2.5rem 0;
}

.trust-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.trust-bar__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--color-accent);
  text-align: center;
  margin: 0;
}

.trust-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 2.5rem;
}

.trust-bar__divider {
  width: 1px;
  height: 2rem;
  background: var(--color-line);
  flex-shrink: 0;
  align-self: center;
}

.trust-logo-wrap {
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-logo-wrap--wide {
  height: 2rem;
}

.trust-logo-img {
  height: 2.5rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.trust-bar__item:hover .trust-logo-img {
  opacity: 1;
}

.trust-logo-img--ei {
  height: 2.2rem;
  width: auto;
}

.trust-logo-img--sbc {
  height: 2rem;
}

.trust-logo-img--ndrc {
  height: 2rem;
  filter: invert(1);
}

.trust-logo-img--fc {
  height: 2.2rem;
  filter: invert(1);
}

.trust-logo-img--itu {
  height: 2.2rem;
}

.trust-bar__item:hover .trust-logo-img {
  opacity: 1;
}

.trust-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: 0.01em;
}

.trust-sub {
  font-size: 0.65rem;
  color: var(--color-ink-muted);
  letter-spacing: 0.01em;
}

@media (max-width: 700px) {
  .trust-bar__divider { display: none; }
  .trust-bar__item { padding: 0.5rem 1rem; }
}

/* LinkedIn button for team */
.team-links {
  margin: 1rem 0 0;
  text-align: center;
}

.team-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0077b5;
  text-decoration: none;
  border: 1.5px solid #0077b5;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  transition: background 0.2s, color 0.2s;
}

.team-linkedin-btn:hover {
  background: #0077b5;
  color: #fff;
  text-decoration: none;
}

.team-linkedin-btn svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

/* Scroll fade-in animations */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Footer nav links */
.footer-tagline {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 217, 200, 0.75);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1rem;
  margin: 0 0 1rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: #c8d9c8;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.footer-nav a:hover {
  opacity: 1;
  color: #fff;
}
