/* =========================================================================
   UMA — Landing page styles
   Built from Figma export "SS | UI Design | Web"
   ========================================================================= */

/* ----------------------------- Design tokens ---------------------------- */
:root {
  /* Brand — UMA palette */
  --green:        #005430;          /* UMA Green — primary */
  --green-dark:   #003D2A;          /* Deep Enterprise Green */
  --gold:         #b78a4a;          /* Premium Bronze accent */
  --gold-dark:    #9c7339;          /* Bronze hover */

  /* Neutrals — green-tinted for the enterprise feel */
  --ink:          #1F2F2A;          /* Charcoal — headings, not pure black */
  --text:         #3F4F49;          /* Body text */
  --muted:        #66736D;          /* Muted gray — helper/secondary text */
  --muted-2:      #66736D;

  /* Surfaces & lines */
  --mint:         #EAF4EF;          /* Soft mint — calm section backgrounds */
  --line:         #f4e8d2;          /* soft-gold dashed framing */
  --line-gray:    #DDE7E2;          /* Light border — green-tinted */
  --card:         #FFFFFF;          /* Card / surface — pure white */
  --bg:           #F7FAF8;          /* Off-white page base */
  --bg-soft:      #EAF4EF;          /* Mint soft sections */
  --bg-soft-2:    #EAF4EF;          /* Mint calm CTA areas */
  --shadow-green: 0 61 42;          /* green-tint base for card shadows */

  /* Status — use only when carrying operational meaning */
  --success:      #16A34A;
  --warning:      #F59E0B;
  --danger:       #DC2626;
  --info:         #2563EB;

  --radius:       8px;
  --radius-lg:    24px;

  --maxw:         1440px;
  --pad:          84px;
}

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

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.1; }

/* ----------------------------- Layout helpers --------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: 64px; }
.section--soft { background: var(--bg-soft); }
.center { display: flex; justify-content: center; margin-top: 40px; }
.accent { color: var(--gold); }

/* Dashed "blueprint" framing used across heading blocks */
.framed {
  border-inline: 1px dashed var(--line);
  position: relative;
}
.framed::before,
.framed::after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 1px;
}
.framed::before { left: -3px; }
.framed::after  { right: -3px; }

/* ----------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-1px); }

/* Animated skew-wipe fill that sweeps across on hover */
.btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  bottom: -1px;
  left: -20%;
  right: -20%;
  transform: skewX(-45deg) scale(0, 1);
  transition: transform .5s ease;
}
.btn:hover::after { transform: skewX(-45deg) scale(1, 1); }

.btn-primary { background: var(--green); color: #fff; }
.btn-primary::after { background: #fff; }
.btn-primary:hover { background: var(--green); color: var(--green); }

.btn-light {
  background: #fff;
  color: var(--green);
  border-color: var(--line-gray);
}
.btn-light::after { background: var(--green); }
.btn-light:hover { background: #fff; color: #fff; }

.btn-outline {                              /* ghost button over the dark hero */
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}
.btn-outline::after { background: #fff; }
.btn-outline:hover { background: transparent; color: var(--green-dark); border-color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .btn::after { transition-duration: 0s; }
}

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ----------------------------- Header / nav ----------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;                 /* transparent over the hero */
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {                  /* solid once the page scrolls */
  background: #fff;
  border-bottom-color: var(--line-gray);
  box-shadow: 0 2px 12px rgb(var(--shadow-green) / .06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--green);
}
.logo-mark {
  width: 20px;
  height: 26px;
  border-radius: 4px 4px 10px 10px;
  background: linear-gradient(180deg, var(--green), #0a7a47);
}
.logo img { height: 30px; width: auto; display: block; }
.logo-light { color: #fff; }
.logo-light .logo-mark { background: linear-gradient(180deg, #fff, #cfe6da); }

/* Header logo swaps with the header state: white over the hero, colour when solid.
   Both <img> use the same logo.png (sized by the generic `.logo img` rule); the
   white one is just that file inverted via filter, so the two states are always
   identical in size. */
.logo .logo-white { filter: brightness(0) invert(1); }
.logo .logo-color { display: none; }
.site-header.is-scrolled .logo .logo-color { display: block; }
.site-header.is-scrolled .logo .logo-white { display: none; }

/* Footer uses the same white file; match the header wordmark size (~27px) */
.site-footer .logo img { height: 27px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 40px; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 14px;
  letter-spacing: -.14px;
  color: #fff;                              /* white over the transparent hero header */
  padding: 4px 8px;
  transition: color .2s ease;
}
.site-header.is-scrolled .nav-links a { color: var(--text); }
.nav-links a:hover,
.nav-links a.is-active,
.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a.is-active { color: var(--gold); }

/* Ghost CTA in the bar: white over the hero, green once the bar turns solid */
.site-header.is-scrolled .nav-cta .btn-outline { color: var(--green); border-color: var(--line-gray); }
.site-header.is-scrolled .nav-cta .btn-outline:hover { background: var(--mint); border-color: var(--green); }

/* Mobile burger (pure CSS toggle) */
.nav-burger { display: none; cursor: pointer; padding: 8px; }
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;                         /* white over the transparent hero header */
  border-radius: 2px;
  transition: .25s;
}
.site-header.is-scrolled .nav-burger span,
.site-header.is-scrolled .nav-burger span::before,
.site-header.is-scrolled .nav-burger span::after { background: var(--green); }
.nav-burger span::before { transform: translateY(-7px); }
.nav-burger span::after  { transform: translateY(5px); }

/* ----------------------------- Hero ------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: left;
  background-color: var(--green-dark);   /* deep-green fallback while the video loads */
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* darker on the left so the left-aligned copy stays readable over the video */
  background: linear-gradient(90deg, rgba(0, 40, 28, .85) 0%, rgba(0, 40, 28, .5) 70%, rgba(0, 40, 28, .4) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding-block: 96px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}
.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: currentColor;
}
.hero h1 {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 860px;
}
.hero p {
  max-width: 600px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  letter-spacing: -.2px;
  color: rgba(255, 255, 255, .9);
}
.hero .btn-row { justify-content: flex-start; margin-top: 8px; }

/* Operational domains strip at the foot of the hero */
.hero-domains {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}
.hero-domains li { display: flex; align-items: center; gap: 16px; }
.hero-domains li:not(:last-child)::after { content: "•"; color: rgba(255, 255, 255, .45); }

/* ----------------------------- Section heads ---------------------------- */
.section-head {
  max-width: 950px;
  margin-inline: auto;
  text-align: center;
  padding-block: 84px;
  padding-inline: 8px;
}
.section-head h2 {
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.2;
  letter-spacing: -1.32px;
  text-transform: capitalize;
}
.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

/* ----------------------------- Intro ------------------------------------ */
.intro-inner {
  text-align: center;
  padding: 84px 24px;
  max-width: 980px;
  margin-inline: auto;
}
.intro h2 {
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.2;
  letter-spacing: -1.32px;
  text-transform: capitalize;
}
.intro .lead {
  margin-top: 16px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.78;
}
/* Callout that introduces the value cards (sits top-right, above the grid) */
.value-callout {
  display: flex;
  flex-direction: column;
  align-items: flex-end;          /* right-align text + arrow */
  max-width: 460px;
  margin: 0 9% 28px auto;         /* push toward the right edge */
}
.annotation {
  text-align: right;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--ink);
  font-size: 17px;
}
.annotation-arrow {
  width: 84px;
  height: auto;
  margin-top: 8px;
  margin-right: 40px;             /* nudge arrow under the text, pointing to the cards */
}

/* ----------------------------- Value cards ------------------------------ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  border: 1px dashed #d6c5a4;
;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.value-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;   /* spreads image & text → staggered look */
  gap: 28px;
  min-height: 520px;
}
/* dashed divider between the three items (centered in the column gap) */
.value-card:not(:first-child)::before {
  content: "";
  position: absolute;
  inset-block: 4px;
  inset-inline-start: -12px;
  border-inline-start: 1px dashed #d6c5a4;
;
}
.value-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -1px;
  color: rgba(183, 138, 74, .18);          /* faint gold fill (graceful fallback) */
  -webkit-text-stroke: 1.4px var(--gold);  /* crisp 'ghost' gold outline */
}
.value-text { display: flex; flex-direction: column; gap: 8px; }
.value-card .thumb {
  aspect-ratio: 4 / 3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;          /* illustrations — show the whole graphic */
  transition: transform .4s ease;
}
.value-card:hover .thumb { transform: translateY(-8px); }   /* gentle float on hover */
.value-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.6px;
  transition: color .2s ease;
}
.value-card:hover h3 { color: var(--green); }
.value-card p { color: var(--muted); font-size: 16px; line-height: 1.5; }

.thumb-a { background-image: url('../assets/images/home/Modular Product Suites.png'); }
.thumb-b { background-image: url('../assets/images/home/Shared Operational Core.png'); }
.thumb-c { background-image: url('../assets/images/home/Start Small, Expand Over Time.png'); }

/* ----------------------------- Suite cards ------------------------------ */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.suite-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-lg);
  padding: 16px 16px 24px;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.suite-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 138, 74, .55);
  box-shadow: 0 24px 50px rgb(var(--shadow-green) / .14);
}
.suite-thumb {
  aspect-ratio: 384 / 273;
  border-radius: var(--radius);
  background: var(--mint) center / cover no-repeat;
}
.suite-thumb-1 { background-image: url('../assets/images/home/products/UMA Fleet.jpg'); }
.suite-thumb-2 { background-image: url('../assets/images/home/products/UMA Service Operations.png'); }
.suite-thumb-3 { background-image: url('../assets/images/home/products/UMA Projects.png'); }
.suite-thumb-4 { background-image: url('../assets/images/home/products/UMA Assets.jpg'); }
.suite-thumb-5 { background-image: url('../assets/images/home/products/UMA PSIM.png'); }
.suite-thumb-6 { background-image: url('../assets/images/home/products/UMA Business Layer.png'); }
.suite-body { padding-inline: 8px; }
.suite-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.6px;
  transition: color .2s ease;
}
.suite-card:hover h3 { color: var(--green); }
.suite-card p {
  margin-top: 16px;
  color: var(--muted);
  font-family: 'Geist', 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
.suite-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-inline: 8px;
  color: var(--gold);
  font-weight: 500;
  font-size: 15px;
}
.suite-link .arrow {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  transition: transform .2s ease;
}
.suite-link:hover .arrow { transform: translate(2px, -2px); }

/* ----------------------------- Industry cards --------------------------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--card);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  /* subtle green-tinted lift so white cards read on the off-white section */
  box-shadow: 0 1px 2px rgb(var(--shadow-green) / .04), 0 10px 28px rgb(var(--shadow-green) / .06);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 138, 74, .55);
  box-shadow: 0 22px 48px rgb(var(--shadow-green) / .14);
}
.industry-ico {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid var(--line-gray);
  background: white;
  display: grid;
  place-items: center;
  color: var(--green);
  transition: background .25s ease, border-color .25s ease;
}
.industry-ico svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #b78a5b;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .25s ease;
}
.industry-card:hover .industry-ico { background: var(--green); border-color: var(--green); }
.industry-card:hover .industry-ico svg { stroke: #fff; }
.industry-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.6px;
  transition: color .2s ease;
}
.industry-card:hover h3 { color: var(--green); }
.industry-card p {
  color: var(--muted);
  font-family: 'Geist', 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* ----------------------------- Integrations ----------------------------- */
.section--framed .container { position: relative; }
.integrations-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.integrations-copy .pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  background: var(--mint);
  border: 1px solid #beddc5;
  color: var(--green);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .5px;
  margin-bottom: 24px;
}
.integrations-copy h2 {
  font-weight: 700;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.25;
  letter-spacing: -1px;
}
.integrations-copy p {
  margin-block: 20px 32px;
  color: var(--muted);
  font-family: 'Geist', 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  max-width: 520px;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius);
  overflow: hidden;
}
.logo-tile {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: .5px solid var(--line-gray);
}
.logo-tile:nth-child(even) { background: var(--mint); }
.logo-tile img {
  max-width: 62%;
  max-height: 46%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ----------------------------- Explore UMA ------------------------------ */
.explore-grid {
  display: grid;
  grid-template-columns: minmax(0, 550px) minmax(0, 1fr);
  gap: 71px;
  align-items: center;
}
.explore-media {
  aspect-ratio: 550 / 466;
  background: url('../assets/images/home/One Platform - Multiple Operational Suites.png') center / contain no-repeat;
}
.explore-copy h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -2px;
}
.explore-copy > p {
  margin-block: 16px 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.feature-list .check {
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.feature-list .check svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.explore-copy .btn { margin-top: 40px; }

/* ----------------------------- Download apps ---------------------------- */
.download { background: var(--bg-soft-2); }
.download-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.download-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
}
.download-copy h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -1.6px;
}
.download-copy > p {
  margin-block: 16px 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  max-width: 560px;
}
.store-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: 12px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgb(var(--shadow-green) / .08); }
.store-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-text small { font-size: 11px; color: var(--muted); }
.store-text strong { font-size: 17px; color: var(--ink); }

/* Phone mockups */
.download-media {
  width: 100%;
  display: flex;
  justify-content: center;
}
.download-media img {
  width: 100%;
  height: auto;
  max-width: 1000px;
}
.phone {
  position: relative;
  width: 240px;
  aspect-ratio: 240 / 500;
  background: #1c1c1e;
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(160deg, #eef2f5, #d7e0e6);
}
.phone-front .phone-screen { background: linear-gradient(160deg, #e9f3ee, #c7ddcf); }
.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #1c1c1e;
  border-radius: 12px;
  z-index: 2;
}
.phone-back  { transform: rotate(-8deg) translateX(28px); }
.phone-front { transform: rotate(6deg) translateX(-28px); z-index: 1; }

/* ----------------------------- CTA -------------------------------------- */
.cta { background: var(--bg-soft-2); }
.cta-inner {
  text-align: center;
  max-width: 1028px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-block: 24px;
}
.cta-inner h2 {
  font-weight: 700;
  font-size: clamp(26px, 3vw, 31px);
  letter-spacing: -.62px;
}
.cta-inner p { color: var(--muted); font-size: 18px; line-height: 1.6; max-width: 646px; }
.cta-inner .btn-row { margin-top: 24px; justify-content: center; }

/* ----------------------------- Footer ----------------------------------- */
.site-footer { background: var(--green-dark); color: #fafafa; }
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  padding-block: 56px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.footer-brand p {
  margin-top: 20px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.footer-contact svg {
  flex: none;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact a { color: rgba(255, 255, 255, .9); transition: color .2s ease; }
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 {
  color: rgba(255, 255, 255, .55);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 16px; color: rgba(255, 255, 255, .92); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}
.contact-list svg {
  flex: none;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-block: 32px;
}
.footer-bottom p { font-size: 12px; color: rgba(255, 255, 255, .92); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: rgba(255, 255, 255, .92); }
.footer-legal a:hover { color: var(--gold); }
.socials { display: flex; gap: 6px; }
.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background .2s ease;
}
.socials a:hover { background: rgba(255, 255, 255, .12); }
.socials svg { width: 18px; height: 18px; fill: #fff; }

/* Desktop: logo + nav links grouped on the left, the two CTAs on the right
   (matches the reference). True bar-centering would collide with the buttons at
   common laptop widths, so the links sit beside the logo with breathing room. */
@media (min-width: 1024px) {
  .nav-menu { flex: 1; justify-content: space-between; }
  .nav-links { margin-inline-start: 40px; }
}

/* ============================ Responsive =============================== */
@media (max-width: 1100px) {
  :root { --pad: 48px; }
  .explore-grid,
  .integrations-grid { grid-template-columns: 1fr; }
  .integrations-grid { gap: 36px; }
  .explore-media { max-width: 560px; margin-inline: auto; width: 100%; }
}

@media (max-width: 900px) {
  /* Collapsing nav */
  .nav-burger { display: block; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: #fff;
    border-bottom: 1px solid var(--line-gray);
    padding: 16px var(--pad) 24px;
    box-shadow: 0 12px 24px rgb(var(--shadow-green) / .07);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .nav-links { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-links a { padding: 10px 8px; color: var(--text); }   /* dark on the white dropdown */
  .nav-cta { align-self: flex-start; }
  .nav-cta .btn-outline { color: var(--green); border-color: var(--line-gray); }   /* green on the white dropdown */
  .nav-toggle:checked ~ .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .value-grid,
  .suite-grid,
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card { min-height: 0; justify-content: flex-start; }
  .value-card::before { display: none; }   /* no column dividers once cards stack */
  /* once stacked, every card reads text → image (overrides the staggered source order of the mid card) */
  .value-card .value-text { order: 1; }
  .value-card .thumb { order: 2; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .section-head, .intro-inner { padding-block: 56px; }
  .value-callout { align-items: center; margin-inline: auto; }
  .annotation { text-align: center; }
  .annotation-arrow { margin-right: 0; }
}

@media (max-width: 600px) {
  :root { --pad: 20px; }
  .section { padding-block: 44px; }
  .value-grid,
  .suite-grid,
  .industry-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { min-height: 560px; padding-block: 72px; }
  .integrations-grid { padding: 28px; }
  .annotation-arrow { display: none; }
  .download-media { min-height: 440px; }
  .phone { width: 190px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { justify-content: flex-start; }
}

/* =========================================================================
   PRODUCTS PAGE  (products.html)
   ========================================================================= */

/* ----------------------------- Breadcrumb band -------------------------- */
.page-hero {
  position: relative;
  min-height: 387px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 104px 56px;            /* top clears the fixed transparent header */
  background: var(--green-dark);
  overflow: hidden;
  --ph-img: url('../assets/images/products/products-band.png');   /* default band texture */
}
.page-hero.ph-support { --ph-img: url('../assets/images/pages/support-band.png'); }
.page-hero.ph-integrations { --ph-img: url('../assets/images/integrations/hub.png'); }
.page-hero::before {                     /* faint texture behind the green wash */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ph-img) center / cover no-repeat;
}
.page-hero-overlay {                      /* UMA green wash over the screens (matches Figma) */
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 84, 48, .88);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.page-hero h1 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 5.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -2.24px;
  text-transform: capitalize;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .14);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: -.96px;
  text-transform: capitalize;
}
.breadcrumb a { color: #fff; transition: color .2s ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep,
.breadcrumb-current { color: var(--gold); }

/* ----------------------------- Intro + 3-phone cover -------------------- */
.product-hero { padding-block: 80px; }
.product-hero-head {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  padding: 8px 8px 0;
}
.product-hero-head h2 {
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.2;
  letter-spacing: -1.32px;
  text-transform: capitalize;
}
.product-hero-head .grad {                /* second line fades from ink to UMA green */
  background: linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(7, 107, 64, .88) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-hero-head p {
  margin-top: 16px;
  margin-inline: auto;
  max-width: 880px;
  color: #333;
  font-size: 18px;
  line-height: 1.78;
  letter-spacing: -.18px;
}
.product-hero-media {
  margin-top: 32px;
  position: relative;
  display: flex;
  justify-content: center;
}
.product-hero-media::before {            /* soft green halo behind the phone mockups */
  content: "";
  position: absolute;
  inset: 4% 12% 2%;
  z-index: 0;
  background: radial-gradient(50% 56% at 50% 46%, rgba(0, 84, 48, .14), rgba(0, 84, 48, 0) 70%);
}
.product-hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1090px;
  height: auto;
}

/* ----------------------------- Cards + CTA (reuse .suite-grid / .cta-inner) */
.product-cards {                          /* soft mint band so the white cards pop */
  padding-block: 48px 64px;
  background: var(--bg-soft);
}
.product-cta { background: var(--bg); }

/* Card interaction polish — scoped to the products page so home suites stay as-is */
.product-cards .suite-thumb { position: relative; overflow: hidden; }
.product-cards .suite-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.product-cards .suite-card { transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease; }
.product-cards .suite-card h3 { transition: color .2s ease; }
.product-cards .suite-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 138, 74, .55);
  box-shadow: 0 24px 50px rgb(var(--shadow-green) / .14);
}
.product-cards .suite-card:hover .suite-thumb img { transform: scale(1.06); }
.product-cards .suite-card:hover h3 { color: var(--green); }

@media (max-width: 900px) {
  .page-hero { min-height: 300px; padding-block: 96px 48px; }
  .product-hero { padding-block: 56px; }
}

/* =========================================================================
   INNER PAGES — shared chrome (contact, about, industries, etc.)
   ========================================================================= */

/* Extra contact info inside the green breadcrumb band */
.page-hero-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 30px;
}
.page-hero-info .row { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.page-hero-info .muted { color: #c9c9c9; }

/* ----------------------------- Contact page ----------------------------- */
.form-section { padding-block: 64px; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
  max-width: 1140px;
  margin-inline: auto;
}

/* Left — value proposition column */
.contact-aside { padding-top: 6px; }
.contact-aside .eyebrow { margin-bottom: 14px; }
.contact-aside h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -1px;
}
.contact-aside > p {
  margin-block: 16px 28px;
  max-width: 460px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.contact-points { display: flex; flex-direction: column; gap: 20px; }
.contact-points li { display: flex; gap: 14px; align-items: flex-start; }
.cp-ico {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid #d3e6da;
  color: #B78A4A;
}
.cp-ico svg { width: 22px; height: 22px; fill: none; stroke: #B78A4A; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-points h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.3; color: var(--ink); margin-bottom: 3px; }
.contact-points p { color: var(--muted); font-size: 15px; line-height: 1.5; }

/* Right — form card */
.form-card {
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 1px 2px rgb(var(--shadow-green) / .04), 0 14px 40px rgb(var(--shadow-green) / .07);
}
.form-card > h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -.4px;
  margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.form-field label {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #42526e;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  height: 36px;
  padding: 8px 12px;
  border: 1px solid #dfe1e6;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #b3bac5; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(var(--shadow-green) / .10);
}
.form-field textarea { height: 120px; padding-top: 8px; resize: vertical; }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-inline-end: 36px;
  color: #b3bac5;                              /* placeholder-style until a value is chosen */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667085' 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 12px center;
}
[dir="rtl"] .form-field select { background-position: left 12px center; }
.form-field select:valid { color: var(--text); }
.form-submit { width: 100%; margin-top: 16px; }

/* Submit feedback */
.form-status { margin-top: 4px; color: var(--error); font-size: 14px; line-height: 1.4; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 8px;
}
.form-success-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  border: 1px solid #cfe6d9;
  color: var(--green);
}
.form-success-ico svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; line-height: 1.3; color: var(--ink); }
.form-success p { color: var(--muted); font-size: 16px; line-height: 1.5; max-width: 420px; }

/* `hidden` guards (class display rules would otherwise override the attribute) */
.contact-form[hidden],
.form-success[hidden],
.form-status[hidden] { display: none; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; max-width: 640px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
}

/* ----------------------------- About page ------------------------------ */
.about-hero { background: #fff; }
.about-hero .container { display: flex; flex-direction: column; gap: 56px; }
.about-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 571px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.about-hero-copy h2 {
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -.5px;
  text-transform: capitalize;
}
.about-hero-copy p {
  margin-top: 24px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -.32px;
}
/* .about-hero-copy p + p { margin-top: 16px; }
.about-hero-media { position: relative; }
.about-hero-media::before {            
  content: "";
  position: absolute;
  inset: -12px -12px -12px -12px;
  border: 1.5px dashed rgba(183, 138, 74, .45);
  border-radius: var(--radius-lg);
  z-index: 0;
} */
.about-hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgb(var(--shadow-green) / .16);
}

/* Stats strip — polished gradient panel with dashed dividers + gold figures */
.about-stats {
  display: flex;
  gap: 0;
  background: linear-gradient(180deg, #fff, var(--mint));
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  box-shadow: 0 10px 30px rgb(var(--shadow-green) / .06);
}
.about-stat {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding-inline: 24px;
}
.about-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 56px;
  border-inline-end: 1px dashed var(--line-gray);
}
.about-stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}
.about-stat .lbl { font-size: 16px; font-weight: 500; color: var(--text); }

.stats-band { background: var(--green); color: #fff; padding-block: 72px; }
.stats-band .container { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
.stats-band-item { flex: 1 1 200px; max-width: 280px; display: flex; flex-direction: column; gap: 8px; }
.stats-band-item .num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stats-band-item p { font-size: 16px; line-height: 1.4; color: rgba(255, 255, 255, .92); }

/* Vision / Mission — elevated cards on a soft canvas */
.vision-section { background: var(--bg); }
.vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 644px);
  gap: 48px;
  align-items: center;
}
.vision-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 60px rgb(var(--shadow-green) / .14); }
.vision-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vision-copy { display: flex; flex-direction: column; gap: 20px; }
.vision-block {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-lg);
  padding: 24px 28px 24px 32px;
  box-shadow: 0 1px 2px rgb(var(--shadow-green) / .04), 0 10px 28px rgb(var(--shadow-green) / .06);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.vision-block:hover { transform: translateY(-6px); border-color: rgba(183, 138, 74, .55); box-shadow: 0 22px 48px rgb(var(--shadow-green) / .14); }
.vision-block::before {                  /* gold→green accent rail */
  content: "";
  position: absolute;
  inset-block: 24px;
  inset-inline-start: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--gold), var(--green));
}
.vision-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.vision-ico {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid #d3e6da;
  color: #B78A4A;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.vision-ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.vision-block:hover .vision-ico { background: var(--green); border-color: var(--green); color: #fff; }
.vision-block h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.3; color: var(--ink); margin: 0; transition: color .2s ease; }
.vision-block:hover h3 { color: var(--green); }
.vision-block p { color: #333; font-size: 16px; line-height: 1.56; }
.vision-block p + p { margin-top: 12px; }

@media (max-width: 1100px) {
  .about-hero-row,
  .vision-grid { grid-template-columns: 1fr; }
  .about-hero-media,
  .vision-media { max-width: 640px; margin-inline: auto; }
}
@media (max-width: 900px) {
  .stats-band-item { flex: 1 1 40%; }
}
@media (max-width: 600px) {
  .about-stats { flex-direction: column; gap: 4px; padding: 24px 16px; }
  .about-stat { padding: 18px 8px; }
  .about-stat:not(:last-child)::after {
    inset-inline: 12%;
    top: auto;
    bottom: 0;
    transform: none;
    height: 0;
    border-inline-end: 0;
    border-bottom: 1px dashed var(--line-gray);
  }
  .stats-band-item { flex: 1 1 100%; max-width: none; }
}

/* ----------------------------- Industries page -------------------------- */
.page-hero.ph-industry { --ph-img: url('../assets/images/pages/industries-band.jpg'); }

.ind-intro { padding-block: 72px 8px; }
.uc-intro { padding-block: 64px 8px; }
.ind-cards,
.uc-cards { padding-top: 16px; }

/* Soft mint band behind the whole "Enterprise Use Cases" group for rhythm */
.uc-intro,
.uc-cards { background: var(--bg-soft); }

/* Cards — shared structure + interaction polish */
.ind-grid,
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ind-card,
.uc-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 1px 2px rgb(var(--shadow-green) / .03), 0 1px 6px rgb(var(--shadow-green) / .03);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.ind-card:hover,
.uc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 138, 74, .55);
  box-shadow: 0 24px 50px rgb(var(--shadow-green) / .14);
}

/* Thumbnails — gentle zoom on hover (clipped to the rounded frame) */
.ind-thumb,
.uc-thumb { border-radius: var(--radius); overflow: hidden; }
.ind-thumb { aspect-ratio: 395 / 186; }
.uc-thumb { aspect-ratio: 395 / 322; }
.ind-thumb img,
.uc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.ind-card:hover .ind-thumb img,
.uc-card:hover .uc-thumb img { transform: scale(1.06); }

/* Industry cards — image + title + text */
.ind-text { display: flex; flex-direction: column; gap: 8px; padding: 0 8px 8px; }
.ind-text h3 { font-weight: 700; font-size: 20px; line-height: 1.4; letter-spacing: -.6px; color: var(--ink); transition: color .2s ease; }
.ind-text p { color: #959595; font-family: 'Poppins', sans-serif; font-size: 16px; line-height: 1.5; letter-spacing: -.48px; }
.ind-card:hover .ind-text h3 { color: var(--green); }

/* Use-case cards — taller image + Learn More link */
.uc-body { display: flex; flex-direction: column; gap: 16px; padding-inline: 4px; }
.uc-body h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.4; letter-spacing: -.6px; color: var(--ink); transition: color .2s ease; }
.uc-body p { color: #959595; font-family: 'Geist', 'Inter', sans-serif; font-size: 16px; line-height: 1.5; letter-spacing: -.48px; }
.uc-card:hover .uc-body h3 { color: var(--green); }
.uc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-inline: 4px;
  color: rgba(183, 138, 74, .87);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
}
.uc-link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.uc-link:hover { color: var(--gold-dark); }
.uc-card:hover .uc-link svg { transform: translate(3px, -3px); }

@media (max-width: 900px) {
  .ind-grid,
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ind-grid,
  .uc-grid { grid-template-columns: 1fr; }
}

/* ----------------------------- Integrations page ------------------------ */
.int-hero { padding-block: 72px 8px; }

/* Hub diagram on a soft green halo */
.int-hub {
  position: relative;
  padding-block: 8px 24px;
  background: radial-gradient(58% 72% at 50% 30%, rgba(0, 84, 48, .07), rgba(0, 84, 48, 0) 70%);
}
.int-hub img { position: relative; width: 100%; max-width: 1440px; margin-inline: auto; display: block; }

/* Alternating feature rows */
.int-section { padding-block: 56px; }
.int-section--soft { background: var(--bg-soft); }
.int-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.int-row--rev .int-media { order: -1; }
.int-copy h2 { font-weight: 700; font-size: clamp(26px, 3vw, 36px); line-height: 1.2; letter-spacing: -1px; }
.int-copy > p { margin-block: 16px 24px; color: var(--muted); font-size: 16px; line-height: 1.6; }

/* "This supports use cases such as:" → uppercase green kicker with a trailing rule */
.int-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
}
.int-sub::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--line-gray), transparent); }

.int-list { display: flex; flex-direction: column; gap: 14px; }
.int-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 16px; line-height: 1.5; }
.int-list svg {                                  /* check tucked into a mint badge */
  flex: none;
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  padding: 5px;
  background: white;
  border: 1px solid #cfe6d9;
  border-radius: 50%;
  fill: none;
  stroke: #B78A4A;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.int-section--soft .int-list svg { background: #fff; }   /* keep badges visible on the mint band */

/* Feature image — rounded + shadow + a dashed blueprint accent behind it */
.int-media { position: relative; }
.int-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgb(var(--shadow-green) / .14);
}
/* .int-media::before {
  content: "";
  position: absolute;
  inset: 24px -16px -16px 24px;
  border: 1.5px dashed rgba(183, 138, 74, .4);
  border-radius: var(--radius-lg);
  z-index: 0;
} */
.int-row--rev .int-media::before { inset: 24px 24px -16px -16px; }

@media (max-width: 1000px) {
  .int-row { grid-template-columns: 1fr; gap: 36px; }
  .int-row--rev .int-media { order: 0; }
  .int-media { max-width: 640px; margin-inline: auto; }
  .int-media::before,
  .int-row--rev .int-media::before { inset: 18px -12px -12px 18px; }
}

/* ----------------------------- UMA Platform page ------------------------ */
.plat-shot { padding-block: 0 24px; }
.plat-shot img { width: 100%; max-width: 1100px; margin-inline: auto; display: block; }
.plat-hex { padding-block: 0 8px; }
.plat-hex img { width: 100%; max-width: 1440px; margin-inline: auto; display: block; }

.plat-list { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.plat-feature { display: flex; gap: 14px; align-items: flex-start; }
.plat-ico { flex: none; width: 24px; height: 24px; color: var(--green); margin-top: 2px; }
.plat-ico svg { width: 24px; height: 24px; fill: none; stroke: #B78A4A; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.plat-feature h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; line-height: 1.3; color: var(--ink); margin-bottom: 4px; }
.plat-feature p { color: var(--muted); font-size: 16px; line-height: 1.5; }



