/*
Theme Name: Gelora Batari Nusantara
Theme URI: https://example.com
Author: AM Tech
Author URI: https://example.com
Description: Modern, professional company profile theme for PT. Gelora Batari Nusantara.
Version: 1.0.1
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gbn-company-profile
Tags: company-profile, business, professional, modern, responsive
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --surface: #f6f8f7;
  --surface-2: #eef3f1;
  --text: #0f1714;
  --muted: #5b6b64;
  --line: rgba(15, 23, 20, 0.12);
  --shadow: 0 18px 48px rgba(15, 23, 20, 0.12);
  --shadow-soft: 0 18px 80px rgba(15, 23, 20, 0.10);

  --brand: #0ea5a6;
  --brand-2: #08797a;
  --brand-rgb: 14, 165, 166;
  --brand-soft: rgba(var(--brand-rgb), 0.14);
  --gold: #f2c14b;
  --gold-rgb: 242, 193, 75;
  --gold-soft: rgba(var(--gold-rgb), 0.16);
  --bg-dark: #070a09;
  --surface-dark: rgba(255, 255, 255, 0.06);
  --line-dark: rgba(255, 255, 255, 0.14);
  --text-dark: rgba(255, 255, 255, 0.90);
  --muted-dark: rgba(255, 255, 255, 0.64);

  --radius: 20px;
  --radius-sm: 12px;
  --max: 1180px;
  --transition: 220ms ease;
  --transition-slow: 420ms ease;

  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 22px;
  --space-6: 28px;

  --font-body: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  text-rendering: geometricPrecision;
}

body.home {
  background: #050806;
  position: relative;
}

body.home::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--gbn-home-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.02);
  opacity: 0.7;
  z-index: -2;
}

body.home::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px circle at 0% 0%, rgba(var(--brand-rgb), 0.18), transparent 56%),
    radial-gradient(900px circle at 100% 0%, rgba(var(--gold-rgb), 0.14), transparent 56%),
    linear-gradient(90deg, rgba(5, 8, 6, 0.62) 0%, rgba(5, 8, 6, 0.48) 38%, rgba(5, 8, 6, 0.26) 62%, rgba(5, 8, 6, 0.58) 100%),
    linear-gradient(180deg, rgba(5, 8, 6, 0.22) 0%, rgba(5, 8, 6, 0.78) 100%);
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

a:hover {
  color: var(--brand);
}

.stack {
  display: grid;
  gap: var(--space-4);
}

.stack-lg {
  gap: var(--space-6);
}

.mt-sm { margin-top: var(--space-3); }
.mt-md { margin-top: var(--space-5); }
.mt-lg { margin-top: calc(var(--space-6) + 6px); }
.mb-sm { margin-bottom: var(--space-3); }
.mb-md { margin-bottom: var(--space-5); }
.mb-lg { margin-bottom: calc(var(--space-6) + 6px); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.site-main {
  padding-top: 84px;
}

body.home .site-main {
  padding-top: 0;
}

.gbn-nav-in-hero .site-main {
  padding-top: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  z-index: 9999;
}

.skip-link:focus {
  top: 12px;
}

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1 { font-size: clamp(2.55rem, 4.4vw, 4.1rem); }
h2 { font-size: clamp(1.95rem, 2.9vw, 2.8rem); }
h3 { font-size: 1.4rem; }

p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.section--soft {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.section--header {
  padding: 120px 0 70px;
}

.section--dark.section--header {
  background-image:
    linear-gradient(90deg, rgba(5, 8, 6, 0.52) 0%, rgba(5, 8, 6, 0.34) 38%, rgba(5, 8, 6, 0.18) 62%, rgba(5, 8, 6, 0.46) 100%),
    linear-gradient(180deg, rgba(5, 8, 6, 0.14) 0%, rgba(5, 8, 6, 0.48) 100%),
    url("https://gelorabatarinusantara.com/wp-content/uploads/2026/06/section-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section--dark.section--header::after {
  display: none;
}

.section--dark {
  position: relative;
  background: radial-gradient(900px circle at 10% 20%, rgba(var(--brand-rgb), 0.24), transparent 55%),
    radial-gradient(900px circle at 90% 10%, rgba(200, 164, 74, 0.22), transparent 55%),
    linear-gradient(180deg, #070a09 0%, #090d0b 100%);
  color: var(--text-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
}

body.home .section--dark {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.section--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.06;
  pointer-events: none;
}

.section--dark .container {
  position: relative;
  z-index: 1;
}

.section--dark .section-kicker,
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--gold);
}

.section--dark p {
  color: var(--muted-dark);
}

body.home .section--dark p {
  color: rgba(255, 255, 255, 0.88);
}

body.home .section--dark a {
  color: rgba(255, 255, 255, 0.92);
}

body.home .section--dark a:hover {
  color: #ffffff;
}

.section-title {
  display: grid;
  gap: 10px;
  max-width: 72ch;
}

.section-title h1,
.section-title h2 {
  letter-spacing: -0.04em;
}

.section-title p {
  max-width: 64ch;
}

.section-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold);
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
}

.about-hero {
  padding: 110px 0 70px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}

.about-hero__inner {
  max-width: 56ch;
}

.about-hero__eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.96rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.about-hero__title {
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin: 0 0 12px;
  text-align: left;
  text-wrap: balance;
  max-width: 14ch;
}

.about-hero__subtitle {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.74);
  max-width: 56ch;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -46px;
}

.about-card {
  position: relative;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 20, 0.10);
  box-shadow: 0 18px 70px rgba(15, 23, 20, 0.10);
  padding: 26px;
  overflow: hidden;
}

.about-card::after {
  content: "";
  position: absolute;
  left: -35%;
  right: -35%;
  bottom: -70%;
  height: 140%;
  border-radius: 999px;
  background:
    radial-gradient(closest-side, rgba(var(--brand-rgb), 0.10), transparent 70%),
    radial-gradient(closest-side, rgba(var(--gold-rgb), 0.08), transparent 70%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.about-card > * {
  position: relative;
  z-index: 1;
}

.about-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: rgba(var(--brand-rgb), 0.92);
  background: rgba(var(--brand-rgb), 0.10);
  border: 1px solid rgba(var(--brand-rgb), 0.16);
}

.about-card__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
}

.about-card__list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.about-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  transform: translateY(-50%);
}

.about-note {
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 20, 0.08);
  box-shadow: 0 12px 40px rgba(15, 23, 20, 0.08);
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(15, 23, 20, 0.70);
}

.about-note__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--brand-rgb), 0.92);
  background: rgba(var(--brand-rgb), 0.10);
  border: 1px solid rgba(var(--brand-rgb), 0.16);
}

.about-detail-section {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.about-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-detail-card {
  position: relative;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 20, 0.10);
  box-shadow: 0 18px 70px rgba(15, 23, 20, 0.10);
  padding: 26px;
  overflow: hidden;
}

.about-detail-card::after {
  content: "";
  position: absolute;
  left: -35%;
  right: -35%;
  bottom: -70%;
  height: 140%;
  border-radius: 999px;
  background:
    radial-gradient(closest-side, rgba(var(--brand-rgb), 0.10), transparent 70%),
    radial-gradient(closest-side, rgba(var(--gold-rgb), 0.08), transparent 70%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.about-detail-card > * {
  position: relative;
  z-index: 1;
}

.about-detail-card__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.10);
  border: 1px solid rgba(var(--brand-rgb), 0.16);
  color: rgba(var(--brand-rgb), 0.92);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-detail-card h3 {
  margin: 16px 0 10px;
  color: rgba(15, 23, 20, 0.94);
}

.about-detail-card__meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 20, 0.08);
}

.about-detail-card__meta span {
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--brand-rgb), 0.92);
}

.about-detail-card__meta p {
  margin-top: 8px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
}

.about-story-section {
  display: grid;
  gap: 18px;
  position: relative;
}

.about-story-section::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 8px;
  width: 112px;
  height: 56px;
  background-image: radial-gradient(rgba(var(--brand-rgb), 0.42) 1.1px, transparent 1.1px);
  background-size: 14px 14px;
  opacity: 0.4;
  pointer-events: none;
}

.about-story-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.about-story-head__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--brand-rgb), 0.92);
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.08) 0%, rgba(var(--gold-rgb), 0.10) 100%);
  border: 1px solid rgba(var(--brand-rgb), 0.10);
  box-shadow: 0 16px 40px rgba(15, 23, 20, 0.08);
}

.about-story-head__content {
  display: grid;
  gap: 10px;
}

.about-story-head__content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-story-head__line {
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand) 0%, rgba(var(--brand-rgb), 0.26) 100%);
}

.about-detail-card--story {
  background:
    radial-gradient(500px circle at 0% 0%, rgba(var(--brand-rgb), 0.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

.about-story__copy {
  display: grid;
  gap: 12px;
  max-width: 62ch;
}

.about-story__copy p {
  margin-top: 0;
}

.about-story__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 20, 0.08);
}

.about-story__highlight {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 18px;
}

.about-story__highlight + .about-story__highlight {
  border-left: 1px solid rgba(15, 23, 20, 0.08);
}

.about-story__highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.10) 0%, rgba(var(--gold-rgb), 0.08) 100%);
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  color: rgba(var(--brand-rgb), 0.92);
}

.about-story__highlight h4 {
  margin: 0;
  font-size: 1rem;
  color: rgba(15, 23, 20, 0.92);
}

.about-story__highlight p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(15, 23, 20, 0.64);
}

.about-detail-card--founder {
  background:
    radial-gradient(500px circle at 100% 0%, rgba(var(--gold-rgb), 0.14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.about-founder__identity {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.about-founder__avatar {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 20px 50px rgba(var(--brand-rgb), 0.22);
}

.about-founder__intro h3 {
  margin-bottom: 6px;
}

.about-founder__role {
  margin-top: 0;
  font-weight: 800;
  color: rgba(var(--brand-rgb), 0.92);
}

.about-founder__body {
  display: grid;
  grid-template-columns: 156px 1fr;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 20, 0.08);
  align-items: start;
}

.about-founder__media {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 23, 20, 0.04) 0%, rgba(var(--brand-rgb), 0.08) 100%);
  border: 1px solid rgba(15, 23, 20, 0.08);
  min-height: 228px;
}

.about-founder__media img,
.about-founder__media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 228px;
}

.about-founder__media img {
  display: block;
  object-fit: cover;
}

.about-founder__media-placeholder {
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 18px;
  text-align: center;
  color: rgba(15, 23, 20, 0.64);
}

.about-founder__media-placeholder-badge {
  display: inline-flex;
  justify-self: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(var(--brand-rgb), 0.14);
  color: rgba(var(--brand-rgb), 0.92);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-founder__media-placeholder-text {
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-founder__bio {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.about-founder__link {
  margin-top: 18px;
}

.contact-hero {
  padding: 110px 0 70px;
}

.contact-hero__inner {
  max-width: 62ch;
}

.contact-hero__eyebrow {
  display: inline-flex;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.contact-hero__title {
  color: #ffffff;
  font-size: clamp(2.25rem, 4.3vw, 3.5rem);
  margin: 0 0 12px;
}

.contact-hero__subtitle {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.74);
  max-width: 56ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 18px;
}

.contact-panel {
  position: relative;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 20, 0.10);
  box-shadow: 0 18px 70px rgba(15, 23, 20, 0.10);
  padding: 26px;
  overflow: hidden;
}

.contact-panel--details::after {
  content: "";
  position: absolute;
  left: -35%;
  right: -35%;
  bottom: -70%;
  height: 140%;
  border-radius: 999px;
  background:
    radial-gradient(closest-side, rgba(var(--brand-rgb), 0.10), transparent 70%),
    radial-gradient(closest-side, rgba(var(--gold-rgb), 0.08), transparent 70%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel__header {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-panel__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--brand-rgb), 0.92);
  background: rgba(var(--brand-rgb), 0.10);
  border: 1px solid rgba(var(--brand-rgb), 0.16);
}

.contact-panel__header h3 {
  margin: 0;
  color: rgba(15, 23, 20, 0.92);
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--brand-rgb), 0.92);
  background: rgba(15, 23, 20, 0.04);
  border: 1px solid rgba(15, 23, 20, 0.08);
}

.contact-item__label {
  font-weight: 900;
  color: rgba(15, 23, 20, 0.84);
  margin-bottom: 4px;
}

.contact-item__value {
  color: rgba(15, 23, 20, 0.70);
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-item__value a {
  color: inherit;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .about-cards {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .about-ecosystem-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-story__highlights {
    grid-template-columns: 1fr;
  }

  .about-story__highlight {
    justify-items: start;
    text-align: left;
    padding: 0;
  }

  .about-story__highlight + .about-story__highlight {
    border-left: 0;
    border-top: 1px solid rgba(15, 23, 20, 0.08);
    padding-top: 16px;
    margin-top: 16px;
  }

  .about-founder__identity {
    grid-template-columns: 1fr;
  }

  .about-founder__body {
    grid-template-columns: 1fr;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(var(--brand-rgb), 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(var(--brand-rgb), 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: rgba(15, 23, 20, 0.12);
  box-shadow: 0 14px 34px rgba(15, 23, 20, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.section--dark .btn-secondary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(var(--brand-rgb), 0.25);
}

.section--dark .btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(var(--brand-rgb), 0.34);
}

.hero--dark {
  position: relative;
  background: radial-gradient(900px circle at 10% 20%, rgba(var(--brand-rgb), 0.26), transparent 55%),
    radial-gradient(900px circle at 90% 10%, rgba(200, 164, 74, 0.22), transparent 55%),
    linear-gradient(180deg, #070a09 0%, #090d0b 100%);
  color: var(--text-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.hero--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.06;
  pointer-events: none;
}

.hero--dark .hero-grid {
  position: relative;
  z-index: 1;
}

.hero--dark .hero-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 90px rgba(0, 0, 0, 0.45);
}

.hero--dark .hero-title {
  color: #ffffff;
}

.hero--dark .hero-subtitle {
  color: rgba(255, 255, 255, 0.70);
}

.hero--dark .hero-eyebrow {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.hero--dark .btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
}

.hero--dark .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero--dark .hero-visual {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.45);
}

.section--dark .chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
}

.section--dark .chip--brand {
  background: rgba(var(--brand-rgb), 0.18);
  border-color: rgba(var(--brand-rgb), 0.26);
  color: #ffffff;
}

.section--dark a:hover {
  color: #ffffff;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 20, 0.14);
  background: #ffffff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(var(--brand-rgb), 0.42);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.16);
}

.section--dark input[type="text"],
.section--dark input[type="email"],
.section--dark input[type="tel"],
.section--dark input[type="url"],
.section--dark textarea,
.section--dark select {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.section--dark input::placeholder,
.section--dark textarea::placeholder {
  color: rgba(255, 255, 255, 0.50);
}

input[type="submit"],
button[type="submit"],
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(12, 122, 75, 0.25);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

input[type="submit"]:hover,
button[type="submit"]:hover,
.wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(12, 122, 75, 0.34);
}

.notice {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 20, 0.10);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(15, 23, 20, 0.86);
  font-weight: 700;
}

.notice--success {
  border-color: rgba(12, 122, 75, 0.25);
  background: rgba(12, 122, 75, 0.10);
  color: rgba(7, 82, 53, 0.96);
}

.gbn-form {
  display: grid;
  gap: 12px;
}

.gbn-form__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gbn-field label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
  color: rgba(15, 23, 20, 0.82);
}

.gbn-field input,
.gbn-field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 20, 0.14);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  color: rgba(15, 23, 20, 0.86);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.gbn-field input:focus,
.gbn-field textarea:focus {
  outline: none;
  border-color: rgba(12, 122, 75, 0.35);
  box-shadow: 0 0 0 4px rgba(12, 122, 75, 0.14);
}

.gbn-form__actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 6px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 50px rgba(15, 23, 20, 0.12);
}

body.home .nav {
  position: absolute;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  padding: 18px 0;
}

.gbn-nav-in-hero .nav {
  position: absolute;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  padding: 18px 0;
}

.gbn-nav-in-hero .nav-brand .custom-logo,
.gbn-nav-in-hero .nav-brand__logo {
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

.gbn-nav-in-hero .nav-links a {
  color: rgba(255, 255, 255, 0.92);
}

body.page-template-template-pillar.gbn-nav-in-hero .nav-links a {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.48);
}

.gbn-nav-in-hero .nav-links a:hover,
.gbn-nav-in-hero .nav-links .current-menu-item > a,
.gbn-nav-in-hero .nav-links a[aria-current="page"] {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
}

body.page-template-template-pillar.gbn-nav-in-hero .nav-links a:hover,
body.page-template-template-pillar.gbn-nav-in-hero .nav-links .current-menu-item > a,
body.page-template-template-pillar.gbn-nav-in-hero .nav-links a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.96);
}

.gbn-nav-in-hero .nav-links a::after {
  background: rgba(200, 164, 74, 0.96);
}

.gbn-nav-in-hero .nav-toggle {
  background: rgba(255, 255, 255, 0.10);
  border: 0;
}

body.page-template-template-pillar.gbn-nav-in-hero .nav-toggle {
  background: rgba(15, 23, 20, 0.06);
}

.gbn-nav-in-hero .nav-toggle-lines,
.gbn-nav-in-hero .nav-toggle-lines::before,
.gbn-nav-in-hero .nav-toggle-lines::after {
  background: rgba(255, 255, 255, 0.92);
}

body.page-template-template-pillar.gbn-nav-in-hero .nav-toggle-lines,
body.page-template-template-pillar.gbn-nav-in-hero .nav-toggle-lines::before,
body.page-template-template-pillar.gbn-nav-in-hero .nav-toggle-lines::after {
  background: rgba(15, 23, 20, 0.72);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-radius: 0;
}

.nav-brand .custom-logo {
  height: 34px;
  width: auto;
}

.nav-brand__logo {
  height: 42px;
  width: auto;
  display: block;
}

.nav-brand__label {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(15, 23, 20, 0.92);
  white-space: nowrap;
}

body.home .nav-brand__label,
.gbn-nav-in-hero .nav-brand__label {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

body.home .nav.is-scrolled .nav-brand__label,
.nav.is-scrolled .nav-brand__label {
  color: rgba(15, 23, 20, 0.92);
  text-shadow: none;
}

.nav-brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-links .menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 0;
  font-weight: 800;
  font-size: 1.05rem;
  color: rgba(15, 23, 20, 0.82);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.92), rgba(var(--gold-rgb), 0.92));
  box-shadow:
    0 0 0 rgba(var(--brand-rgb), 0),
    0 0 0 rgba(var(--gold-rgb), 0);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity var(--transition), transform var(--transition);
}

body.home .nav-shell {
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.home .nav-brand__name {
  color: rgba(255, 255, 255, 0.96);
}

body.home .nav-links a {
  color: rgba(255, 255, 255, 0.92);
}

body.home .nav-links a:hover,
body.home .nav-links .current-menu-item > a,
body.home .nav-links a[aria-current="page"] {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
}

body.home .nav-links a::after {
  background: rgba(200, 164, 74, 0.96);
}

body.home .nav-toggle {
  background: rgba(255, 255, 255, 0.10);
  border: 0;
}

body.home .nav-toggle-lines,
body.home .nav-toggle-lines::before,
body.home .nav-toggle-lines::after {
  background: rgba(255, 255, 255, 0.92);
}

body.home .nav.is-scrolled .nav-shell {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  border-radius: 0;
}

body.home .nav.is-scrolled .nav-brand__name {
  color: rgba(15, 23, 20, 0.90);
}

body.home .nav.is-scrolled .nav-links a {
  color: rgba(15, 23, 20, 0.82);
}

body.home .nav.is-scrolled .nav-links a:hover,
body.home .nav.is-scrolled .nav-links .current-menu-item > a,
body.home .nav.is-scrolled .nav-links a[aria-current="page"] {
  background: transparent;
  color: var(--text);
}

body.home .nav.is-scrolled .nav-toggle {
  background: rgba(255, 255, 255, 0.9);
  border: 0;
}

body.home .nav.is-scrolled .nav-toggle-lines,
body.home .nav.is-scrolled .nav-toggle-lines::before,
body.home .nav.is-scrolled .nav-toggle-lines::after {
  background: var(--text);
}

.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links a[aria-current="page"] {
  background: transparent;
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links .current-menu-item > a::after,
.nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
  box-shadow:
    0 0 14px rgba(var(--brand-rgb), 0.55),
    0 0 18px rgba(var(--gold-rgb), 0.38);
}

.nav.is-scrolled .nav-shell {
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  margin: 0 auto;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.nav.nav-open .nav-toggle-lines {
  opacity: 0;
}

.nav.nav-open .nav-toggle-lines::before {
  transform: translateY(0) rotate(45deg);
  opacity: 1;
}

.nav.nav-open .nav-toggle-lines::after {
  transform: translateY(-2px) rotate(-45deg);
  opacity: 1;
}

.hero {
  position: relative;
  padding: 140px 0 86px;
  overflow: hidden;
  background:
    radial-gradient(900px circle at 12% 10%, rgba(12, 122, 75, 0.24), transparent 55%),
    radial-gradient(720px circle at 88% 12%, rgba(200, 164, 74, 0.20), transparent 60%),
    linear-gradient(180deg, #f3fbf6 0%, #ffffff 58%, #ffffff 100%);
  border-bottom: 1px solid rgba(15, 23, 20, 0.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 20, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.08;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.hero-card {
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 23, 20, 0.10);
  box-shadow: var(--shadow-soft);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--gold-soft);
  border: 1px solid rgba(200, 164, 74, 0.22);
  font-weight: 800;
  color: var(--brand-2);
  margin-bottom: 14px;
}

.hero-title {
  margin: 0;
}

.hero-subtitle {
  margin-top: 12px;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-fallback {
  padding: 22px;
}

.hero-meta {
  margin-top: 16px;
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 20, 0.10);
  background: linear-gradient(135deg, rgba(12, 122, 75, 0.12), rgba(7, 82, 53, 0.06));
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.cols-5 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 20, 0.10);
  box-shadow: 0 10px 30px rgba(15, 23, 20, 0.06);
  padding: 22px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 99px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, rgba(12, 122, 75, 0.70), rgba(200, 164, 74, 0.70));
  opacity: 0.35;
}

.card.card--dark::before {
  opacity: 0.65;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(15, 23, 20, 0.10);
  border-color: rgba(12, 122, 75, 0.22);
}

body.page-template-template-services {
  background:
    radial-gradient(900px circle at 14% 8%, rgba(var(--brand-rgb), 0.22), transparent 48%),
    radial-gradient(1000px circle at 100% 0%, rgba(var(--gold-rgb), 0.18), transparent 48%),
    linear-gradient(180deg, #05110f 0%, #071412 56%, #0b1916 100%);
}

.services-page {
  padding: 126px 0 88px;
}

.services-hero {
  display: block;
  margin-bottom: 28px;
}

.services-hero__copy {
  padding: 6px 4px 6px 0;
  max-width: 720px;
}

.services-hero__eyebrow {
  margin-bottom: 12px;
  color: rgba(var(--gold-rgb), 0.92);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.services-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.services-hero__title span {
  display: block;
  color: rgba(var(--gold-rgb), 0.96);
}

.services-hero__subtitle {
  margin: 18px 0 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.services-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.services-stat {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.services-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(122, 193, 74, 0.24);
  background: rgba(122, 193, 74, 0.08);
  color: rgba(122, 193, 74, 0.92);
}

.services-stat__label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
}

.services-list {
  display: grid;
  gap: 18px;
}

.services-card--showcase {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(73, 166, 145, 0.26);
  background: linear-gradient(180deg, rgba(4, 12, 11, 0.98) 0%, rgba(5, 15, 13, 0.98) 100%);
}

.services-showcase__top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.15fr);
  gap: 0;
  min-height: 420px;
}

.services-showcase__copy {
  padding: 26px 34px 22px;
  background: linear-gradient(90deg, rgba(2, 12, 11, 0.98) 0%, rgba(2, 12, 11, 0.92) 100%);
  display: grid;
  align-content: center;
  gap: 18px;
}

.services-showcase__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.services-showcase__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(6, 83, 58, 0.90) 0%, rgba(4, 58, 41, 0.90) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #dcfff2;
  font-weight: 900;
  letter-spacing: 0.02em;
  width: fit-content;
}

.services-showcase__pill-icon {
  display: inline-flex;
  color: #6cffd0;
}

.services-showcase__category {
  color: rgba(233, 242, 238, 0.62);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-showcase__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 18ch;
  text-wrap: balance;
}

.services-showcase__title-highlight {
  color: var(--gold);
}

.services-showcase__subtitle {
  margin: 0;
  color: rgba(239, 248, 244, 0.82);
  font-size: 0.98rem;
  line-height: 1.85;
  max-width: 46ch;
  padding-left: 16px;
  border-left: 3px solid rgba(31, 224, 164, 0.72);
}

.services-showcase__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.services-showcase__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(var(--gold-rgb), 0.34);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.services-showcase__btn:hover {
  color: #ffffff;
  border-color: rgba(var(--gold-rgb), 0.52);
  background: rgba(var(--gold-rgb), 0.10);
  transform: translateY(-1px);
}

.services-showcase__btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #c88c13 100%);
  border-color: rgba(255, 255, 255, 0.10);
  color: #fffdf6;
}

.services-showcase__btn--primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #ffd46b 0%, #c88c13 100%);
}

.services-showcase__btn-icon {
  display: inline-flex;
}

.services-showcase__hero {
  position: relative;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 16px;
  background: radial-gradient(900px circle at 0% 0%, rgba(0, 210, 255, 0.08), transparent 54%);
}

.services-showcase__hero-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid rgba(90, 200, 170, 0.16);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  display: block;
}

.services-showcase__hero-media--image {
  background-size: cover;
  background-position: center;
}

.services-showcase__hero-media--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 11, 0.10) 0%, rgba(4, 12, 11, 0.54) 100%);
}

.services-showcase__hero-media--video {
  background: #050809;
}

.services-showcase__hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.services-showcase__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
}

.services-showcase-feature {
  position: relative;
  display: block;
  min-height: 100%;
  padding: 18px 16px 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(90, 200, 170, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.services-showcase-feature::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 1), rgba(76, 255, 194, 0.92));
}

.services-showcase-feature__body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.services-showcase-feature__title {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
}

.services-showcase-feature__meta {
  color: rgba(233, 242, 238, 0.72);
  font-size: 0.84rem;
  line-height: 1.5;
}

.services-showcase__gallery {
  padding: 18px 22px 14px;
}

.services-showcase-carousel {
  max-width: 100%;
  margin: 0 auto;
  padding-inline: 32px;
}

.services-showcase-carousel .pillar-carousel__viewport {
  border-radius: 18px;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.services-showcase-carousel .pillar-carousel__track {
  gap: 12px;
}

.services-showcase-carousel .pillar-carousel__slide {
  flex: 0 0 calc((100% - 48px) / 5);
}

.services-showcase-carousel .pillar-carousel__slide img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 520ms ease;
}

.services-showcase-carousel .pillar-carousel__slide:hover img {
  transform: scale(1.04);
}

.services-showcase__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 22px 22px;
}

.services-showcase-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.services-showcase-action:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--gold-rgb), 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.services-showcase-action__icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.16) 0%, rgba(var(--gold-rgb), 0.10) 100%);
  border: 1px solid rgba(var(--brand-rgb), 0.14);
  color: rgba(var(--brand-rgb), 0.96);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.services-showcase-action__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.services-showcase-action__title {
  color: #ffffff;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.15;
}

.services-showcase-action__meta {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.4;
}

.services-showcase-action__arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
}

.services-showcase__trade {
  padding: 20px 22px 0;
  display: grid;
  gap: 14px;
}

.services-showcase__trade-head {
  display: grid;
  gap: 8px;
}

.services-showcase__trade-kicker {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(var(--gold-rgb), 1);
  border: 1px solid rgba(var(--gold-rgb), 0.24);
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 0.12), rgba(var(--gold-rgb), 0.04));
}

.services-showcase__trade-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.44rem;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.services-biz-profile,
.services-biz-products {
  display: grid;
  gap: 14px;
}

.services-biz-profile__panel,
.services-biz-products,
.services-biz-product-card {
  position: relative;
  isolation: isolate;
}

.services-biz-profile__panel {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(90, 200, 170, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  overflow: hidden;
}

.services-biz-profile__panel::before,
.services-biz-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 320px at 0% 0%, rgba(var(--gold-rgb), 0.12), transparent 60%),
    radial-gradient(520px 280px at 100% 100%, rgba(var(--brand-rgb), 0.12), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.services-biz-profile__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.services-biz-profile__title,
.services-biz-products__title {
  margin: 0;
  color: #ffffff;
  font-size: 1.26rem;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.005em;
}

.services-biz-profile__summary {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.58;
}

.services-biz-profile__view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
  flex: 0 0 auto;
}

.services-biz-profile__view:hover,
.services-biz-profile__view:focus-visible {
  transform: translateY(-1px);
  background: rgba(var(--gold-rgb), 0.10);
  border-color: rgba(var(--gold-rgb), 0.30);
}

.services-biz-profile__view-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--gold-rgb), 1);
}

.services-biz-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.services-biz-fact {
  display: grid;
  gap: 6px;
  padding: 14px 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
  position: relative;
  overflow: hidden;
}

.services-biz-fact::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 3px;
  height: calc(100% - 28px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 1), rgba(76, 255, 194, 0.8));
}

.services-biz-fact__label {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 800;
}

.services-biz-fact__value {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 900;
}

.services-biz-products {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(90, 200, 170, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  overflow: hidden;
}

.services-biz-products__head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.services-biz-products__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.services-biz-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.services-biz-product-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.services-biz-product-card:hover,
.services-biz-product-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(var(--gold-rgb), 0.24);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.services-biz-product-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #050809;
}

.services-biz-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms ease;
}

.services-biz-product-card:hover .services-biz-product-card__media img {
  transform: scale(1.04);
}

.services-biz-product-card__body {
  display: grid;
  gap: 10px;
  padding: 0 12px 14px;
}

.services-biz-product-card__title {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.25;
  font-weight: 900;
}

.services-biz-product-card__title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 220ms ease;
}

.services-biz-product-card__title a:hover,
.services-biz-product-card__title a:focus-visible {
  color: rgba(var(--gold-rgb), 1);
}

.services-biz-product-card__price {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(var(--gold-rgb), 1);
  border: 1px solid rgba(var(--gold-rgb), 0.26);
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 0.14), rgba(var(--gold-rgb), 0.04));
}

.services-biz-product-card__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.services-biz-product-card__specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  line-height: 1.2;
}

.services-biz-product-card__specs li span {
  color: rgba(255, 255, 255, 0.54);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.services-biz-product-card__specs li strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.services-biz-product-card__spec--ok {
  border-color: rgba(76, 255, 194, 0.20) !important;
  background: rgba(76, 255, 194, 0.06) !important;
}

.services-biz-product-card__spec--ok strong {
  color: rgba(76, 255, 194, 0.92) !important;
}

.services-biz-product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.services-biz-product-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
  white-space: nowrap;
}

.services-biz-product-card__btn--primary {
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 0.92), rgba(var(--gold-rgb), 0.72));
  color: #081111;
  border: 1px solid rgba(var(--gold-rgb), 0.36);
}

.services-biz-product-card__btn--primary:hover,
.services-biz-product-card__btn--primary:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 1), rgba(var(--gold-rgb), 0.78));
}

.services-biz-product-card__btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.services-biz-product-card__btn--ghost:hover,
.services-biz-product-card__btn--ghost:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(var(--brand-rgb), 0.30);
  background: rgba(var(--brand-rgb), 0.12);
}

.services-biz-products__footer {
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.services-biz-products__footer-copy-wrap {
  display: grid;
  gap: 10px;
  align-content: start;
}

.services-biz-products__footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  line-height: 1.55;
}

.services-biz-products__footer-copy strong {
  color: #ffffff;
  font-weight: 900;
}

.services-biz-products__footer-email {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.45;
}

.services-biz-products__footer-email-link {
  color: rgba(var(--gold-rgb), 1);
  font-weight: 900;
  text-decoration: none;
  transition: color 220ms ease, filter 220ms ease;
  word-break: break-word;
}

.services-biz-products__footer-email-link:hover,
.services-biz-products__footer-email-link:focus-visible {
  color: #ffffff;
  filter: drop-shadow(0 0 6px rgba(var(--gold-rgb), 0.35));
}

.services-biz-products__footer-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-items: end;
  align-content: start;
}

.services-biz-products__footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 360px;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(var(--brand-rgb), 0.10);
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.services-biz-products__footer-btn:hover,
.services-biz-products__footer-btn:focus-visible {
  background: rgba(var(--brand-rgb), 0.16);
  border-color: rgba(var(--brand-rgb), 0.28);
  transform: translateY(-1px);
}

.services-biz-products__footer-btn--gold {
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 0.18), rgba(var(--gold-rgb), 0.06));
  border: 1px solid rgba(var(--gold-rgb), 0.28);
  color: #ffffff;
}

.services-biz-products__footer-btn--gold:hover,
.services-biz-products__footer-btn--gold:focus-visible {
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 0.24), rgba(var(--gold-rgb), 0.08));
  border-color: rgba(var(--gold-rgb), 0.42);
}

.services-biz-products__footer-arrow {
  color: rgba(var(--gold-rgb), 1);
  display: inline-flex;
  flex: 0 0 auto;
}

.services-biz-products__footer-open-icon {
  color: rgba(var(--gold-rgb), 1);
  display: inline-flex;
  flex: 0 0 auto;
}

.services-showcase-action--inquiry .services-showcase-action__icon {
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 0.22) 0%, rgba(var(--brand-rgb), 0.10) 100%);
  border: 1px solid rgba(var(--gold-rgb), 0.24);
  color: rgba(var(--gold-rgb), 1);
}

.services-showcase-action--inquiry .services-showcase-action__title {
  color: #ffffff;
}

.services-showcase-action--inquiry .services-showcase-action__meta {
  color: rgba(255, 255, 255, 0.72);
}

.services-showcase__video {
  padding: 0 22px 22px;
}

.services-showcase__video iframe {
  width: 100%;
  border: 0;
  border-radius: 20px;
  display: block;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.04);
}

.services-card {
  display: grid;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(73, 166, 145, 0.26);
  background:
    linear-gradient(180deg, rgba(4, 12, 11, 0.98) 0%, rgba(5, 15, 13, 0.98) 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  position: relative;
  isolation: isolate;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.services-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(115deg, transparent 22%, rgba(var(--gold-rgb), 0.16) 48%, rgba(var(--brand-rgb), 0.18) 52%, transparent 78%);
  opacity: 0;
  transform: translateX(-24%) skewX(-14deg);
  transition: opacity var(--transition-slow), transform 760ms ease;
  pointer-events: none;
  z-index: 0;
}

.services-card:hover,
.services-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(var(--gold-rgb), 0.34);
  box-shadow: 0 36px 96px rgba(0, 0, 0, 0.34);
}

.services-card:hover::before,
.services-card:focus-within::before {
  opacity: 1;
  transform: translateX(24%) skewX(-14deg);
}

.services-card__main {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.15fr);
  min-height: 410px;
  position: relative;
  z-index: 1;
}

.services-card__copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 22px 34px 10px;
  background:
    linear-gradient(90deg, rgba(2, 12, 11, 0.98) 0%, rgba(2, 12, 11, 0.92) 100%);
  transition: transform var(--transition-slow);
}

.services-card__content {
  min-width: 0;
}

.services-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(6, 83, 58, 0.90) 0%, rgba(4, 58, 41, 0.90) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #dcfff2;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  width: fit-content;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.services-card__badge-icon {
  display: inline-flex;
  color: #6cffd0;
}

.services-card__title {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 11ch;
  text-wrap: balance;
  transition: color var(--transition), text-shadow var(--transition), transform var(--transition-slow);
}

.services-card__title--gold {
  color: var(--gold);
}

.services-card__subtitle {
  margin: 22px 0 0;
  color: rgba(239, 248, 244, 0.82);
  font-size: 0.98rem;
  line-height: 1.85;
  max-width: 36ch;
  padding-left: 16px;
  border-left: 3px solid rgba(31, 224, 164, 0.72);
}

.services-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.services-card__brochures {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  max-width: 520px;
}

.services-card-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(90, 200, 170, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.services-card-stat__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(15, 193, 139, 0.12);
  color: rgba(76, 255, 194, 0.98);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.services-card-stat__body {
  display: grid;
  gap: 4px;
}

.services-card-stat__label {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.services-card-stat__meta {
  color: rgba(233, 242, 238, 0.62);
  font-size: 0.78rem;
  line-height: 1.35;
}

.services-card__media {
  position: relative;
  min-height: 100%;
  display: grid;
  gap: 16px;
  padding: 22px;
  align-content: start;
  transition: transform var(--transition-slow);
}

.services-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px circle at 0% 0%, rgba(0, 210, 255, 0.10), transparent 50%),
    linear-gradient(90deg, rgba(4, 12, 11, 0.06) 0%, rgba(4, 12, 11, 0.02) 24%, rgba(4, 12, 11, 0.22) 100%);
  pointer-events: none;
}

.services-media-box {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(90, 200, 170, 0.16);
  background: linear-gradient(180deg, rgba(7, 24, 22, 0.92) 0%, rgba(5, 16, 15, 0.96) 100%);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition-slow), border-color var(--transition), box-shadow var(--transition);
}

.services-media-box__head {
  display: grid;
  gap: 4px;
  padding: 16px 18px 0;
}

.services-media-box__eyebrow {
  color: rgba(108, 255, 208, 0.8);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-media-box__title {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.services-media-box__body {
  padding: 16px 18px 18px;
}

.services-media-box__body--video iframe {
  width: 100%;
  border: 0;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.36);
}

.services-gallery-carousel {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
}

.services-gallery-carousel .pillar-carousel__viewport,
.services-gallery-carousel .pillar-carousel__track,
.services-gallery-carousel .pillar-carousel__slide {
  height: 100%;
}

.services-gallery-carousel .pillar-carousel__slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 900ms ease, filter 900ms ease;
}

.services-action {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(90, 200, 170, 0.14);
  background: linear-gradient(180deg, rgba(7, 24, 22, 0.96) 0%, rgba(5, 16, 15, 0.96) 100%);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.services-card:hover .services-card__copy,
.services-card:focus-within .services-card__copy {
  transform: translateX(4px);
}

.services-card:hover .services-card__media,
.services-card:focus-within .services-card__media {
  transform: translateX(-4px);
}

.services-card:hover .services-card__badge,
.services-card:focus-within .services-card__badge {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 34px rgba(7, 122, 101, 0.22);
}

.services-card:hover .services-card__title,
.services-card:focus-within .services-card__title {
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.services-card:hover .services-card-stat,
.services-card:focus-within .services-card-stat {
  transform: translateY(-3px);
  border-color: rgba(108, 255, 208, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.services-card:hover .services-card-stat:nth-child(1),
.services-card:focus-within .services-card-stat:nth-child(1) {
  transition-delay: 40ms;
}

.services-card:hover .services-card-stat:nth-child(2),
.services-card:focus-within .services-card-stat:nth-child(2) {
  transition-delay: 90ms;
}

.services-card:hover .services-card-stat:nth-child(3),
.services-card:focus-within .services-card-stat:nth-child(3) {
  transition-delay: 140ms;
}

.services-card:hover .services-media-box,
.services-card:focus-within .services-media-box {
  border-color: rgba(var(--gold-rgb), 0.24);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.28);
}

.services-card:hover .services-media-box--video,
.services-card:focus-within .services-media-box--video {
  transform: translateY(-6px);
}

.services-card:hover .services-media-box--gallery,
.services-card:focus-within .services-media-box--gallery {
  transform: translateY(-2px);
}

.services-card:hover .services-gallery-carousel .pillar-carousel__slide img,
.services-card:focus-within .services-gallery-carousel .pillar-carousel__slide img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.services-action:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 255, 208, 0.32);
  background: linear-gradient(180deg, rgba(8, 32, 29, 0.98) 0%, rgba(6, 22, 20, 0.98) 100%);
  color: inherit;
}

@keyframes services-card-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.services-card.is-inview .services-media-box--video {
  animation: services-card-float 6s ease-in-out infinite;
}

.services-card.is-inview .services-media-box--gallery {
  animation: services-card-float 7.5s ease-in-out infinite 400ms;
}

.services-action__icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #effff8;
  background: linear-gradient(180deg, rgba(9, 173, 136, 0.92) 0%, rgba(7, 122, 101, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
}

.services-action__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.services-action__title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.services-action__meta {
  color: rgba(230, 239, 235, 0.66);
  font-size: 0.86rem;
  line-height: 1.3;
}

.services-action__arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.pillar-showcase {
  display: grid;
  gap: 18px;
}

.pillar {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 20, 0.10);
  background: #ffffff;
  box-shadow: 0 18px 70px rgba(15, 23, 20, 0.10);
  min-height: 260px;
}

.pillar--hero {
  min-height: 360px;
}

.pillar-media {
  position: absolute;
  inset: 0;
}

.pillar-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px circle at 0% 0%, rgba(var(--brand-rgb), 0.22), transparent 52%),
    radial-gradient(900px circle at 100% 0%, rgba(var(--gold-rgb), 0.18), transparent 52%),
    linear-gradient(90deg, rgba(7, 10, 9, 0.82) 0%, rgba(7, 10, 9, 0.42) 48%, rgba(7, 10, 9, 0.18) 100%);
}

.pillar-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.pillar-hit:focus-visible {
  outline: 3px solid rgba(var(--gold-rgb), 0.92);
  outline-offset: 4px;
}

.pillar:hover .pillar-hit {
  cursor: pointer;
}

.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.02);
}

.pillar-body {
  position: relative;
  z-index: 1;
  padding: 26px;
  max-width: 720px;
}

.pillar--hero .pillar-body {
  padding: 32px;
  max-width: 780px;
}

.pillar-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.pillar-badge svg {
  opacity: 0.92;
}

.pillar h2,
.pillar h3 {
  margin-top: 14px;
  color: #ffffff;
}

.pillar h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
}

.pillar h3 {
  font-size: 1.35rem;
}

.pillar-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
  max-width: 54ch;
}

.pillar-features li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
}

.pillar-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  flex: 0 0 auto;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pillar-grid .pillar {
  min-height: 300px;
}

.pillar-grid .pillar-body {
  max-width: 520px;
}

.pillar:hover .pillar-media img {
  transform: scale(1.06);
}

.pillar-hero {
  position: relative;
  overflow: hidden;
}

.pillar-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pillar-hero-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.03);
  z-index: 0;
}

.pillar-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px circle at 0% 0%, rgba(var(--brand-rgb), 0.22), transparent 52%),
    radial-gradient(900px circle at 100% 0%, rgba(var(--gold-rgb), 0.18), transparent 52%),
    linear-gradient(90deg, rgba(7, 10, 9, 0.86) 0%, rgba(7, 10, 9, 0.62) 42%, rgba(7, 10, 9, 0.26) 100%);
  z-index: 1;
}

.pillar-hero .container {
  position: relative;
  z-index: 2;
}

.pillar-hero__inner {
  max-width: 62ch;
}

.pillar-hero__eyebrow {
  display: inline-flex;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.pillar-hero__title {
  color: #ffffff;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  margin: 0 0 12px;
}

.pillar-hero__subtitle {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.74);
  max-width: 56ch;
}

.pillar-detail-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.pillar-detail-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.pillar-detail-image {
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  margin-bottom: 16px;
}

.pillar-detail-image img {
  width: 100%;
  height: auto;
}

.pillar-media-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.pillar-media-item {
  grid-column: span 12;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  background: rgba(15, 23, 20, 0.04);
}

.pillar-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  display: block;
}

.pillar-media-grid--videos .pillar-media-item {
  background: transparent;
}

.pillar-brochure-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-brochure-btn {
  width: 100%;
  justify-content: center;
}

.pillar-media-wall {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.pillar-media-section {
  position: relative;
  padding: clamp(38px, 6vw, 78px) 0 clamp(40px, 7vw, 92px);
  overflow: hidden;
  background: transparent;
}

body.page-template-template-pillar {
  background-image:
    radial-gradient(1100px circle at 12% 10%, rgba(var(--brand-rgb), 0.28), transparent 62%),
    radial-gradient(1100px circle at 88% 0%, rgba(var(--gold-rgb), 0.22), transparent 62%),
    linear-gradient(180deg, rgb(7 10 9 / var(--pillar-bg-overlay-a, 0.92)) 0%, rgb(7 10 9 / var(--pillar-bg-overlay-b, 0.98)) 100%),
    var(--pillar-page-bg);
  background-size: cover, cover, cover, var(--pillar-page-bg-size, 100% auto);
  background-position: center, center, center, top center;
  background-repeat: no-repeat;
  background-attachment: scroll, scroll, scroll, fixed;
}

.pillar-hero2 {
  position: relative;
  padding: 132px 0 34px;
}

.pillar-hero2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.08;
  pointer-events: none;
}

.pillar-hero2::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px circle at 22% 28%, rgba(var(--brand-rgb), 0.28), transparent 55%),
    radial-gradient(900px circle at 70% 8%, rgba(var(--gold-rgb), 0.22), transparent 55%),
    linear-gradient(90deg, rgba(7, 10, 9, 0.92) 0%, rgba(7, 10, 9, 0.66) 44%, rgba(7, 10, 9, 0.18) 100%);
  opacity: var(--pillar-hero-overlay-opacity, 0.9);
  pointer-events: none;
}

.pillar-hero2__content,
.pillar-hero2__stats {
  position: relative;
  z-index: 1;
}

.pillar-hero2 .container {
  position: relative;
  z-index: 1;
}

.pillar-hero2__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 22px;
  align-items: start;
}

.pillar-hero2__tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--pillar-panel-bg, rgba(255, 255, 255, 0.06));
  color: rgba(var(--gold-rgb), 0.92);
  font-weight: 900;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pillar-hero2__title {
  margin: 18px 0 12px;
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: rgba(255, 255, 255, 0.96);
}

.pillar-hero2__title-line {
  display: block;
}

.pillar-hero2__title-line--gold {
  color: rgba(var(--gold-rgb), 0.98);
}

.pillar-hero2__subtitle {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.72);
}

.pillar-hero2__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pillar-hero2__stats {
  display: grid;
  gap: 12px;
  align-content: start;
}

.pillar-stat {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: var(--pillar-panel-bg, rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

.pillar-stat__icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--gold-rgb), 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.pillar-stat__label {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.70);
}

.pillar-stat__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.96);
  margin-top: 3px;
}

.pillar-stat__meta {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.62);
}

.pillar-hero2__cta {
  margin-top: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(var(--brand-rgb), 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.pillar-hero2__cta:hover {
  background: rgba(var(--brand-rgb), 0.26);
  color: #ffffff;
}

.pillar-products {
  padding: 34px 20px 84px;
  display: flex;
  justify-content: center;
}

.pillar-products__panel {
  width: min(1320px, 100%);
  margin-top: 0;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--pillar-panel-bg, rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  overflow: hidden;
}

.pillar-products__panel,
.pillar-stat,
.pillar-hero2__tag {
  outline: 1px solid rgba(0, 0, 0, 0);
}

.pillar-hero2 + .pillar-products {
  margin-top: 0;
}

.pillar-products__head {
  padding: 18px 22px 0;
}

.pillar-products__head h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.pillar-products__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 14px;
  padding: 18px 22px 22px;
}

.pillar-products__grid--single {
  grid-template-columns: 1fr;
}

.pillar-products__video {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.pillar-products__video iframe,
.pillar-products__video video,
.pillar-products__video img {
  width: 100%;
  display: block;
}

.pillar-products__video iframe,
.pillar-products__video video {
  aspect-ratio: 16 / 9;
}

.pillar-carousel {
  position: relative;
  width: 100%;
}

.pillar-carousel__viewport {
  width: 100%;
  overflow: hidden;
}

.pillar-carousel__track {
  display: flex;
  transition: transform var(--transition);
  will-change: transform;
}

.pillar-carousel__slide {
  flex: 0 0 100%;
}

.pillar-carousel__slide iframe,
.pillar-carousel__slide img,
.pillar-carousel__slide video {
  width: 100%;
  height: 100%;
  display: block;
}

.pillar-carousel__slide iframe {
  border: 0;
  aspect-ratio: 16 / 9;
}

.pillar-carousel--doc .pillar-carousel__slide iframe {
  aspect-ratio: auto;
  min-height: 0;
}

.pillar-carousel__slide img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.22);
}

.pillar-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 9, 0.58);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  z-index: 2;
}

.pillar-carousel__btn:hover {
  background: rgba(7, 10, 9, 0.74);
  border-color: rgba(var(--gold-rgb), 0.26);
  transform: translateY(-50%) scale(1.02);
}

.pillar-carousel__btn--prev {
  left: 10px;
}

.pillar-carousel__btn--next {
  right: 10px;
}

.pillar-carousel__btn[disabled] {
  opacity: 0.4;
  cursor: default;
}

.pillar-duo {
  padding: 0 20px 84px;
  display: flex;
  justify-content: center;
}

.pillar-duo__panel {
  width: min(1560px, 100%);
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--pillar-panel-bg, rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  overflow: hidden;
  padding: 26px;
}

.pillar-duo__title {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
}

.pillar-duo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pillar-duo__box {
  height: clamp(460px, 68vh, 820px);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
}

.pillar-duo__box > .pillar-carousel {
  flex: 1;
}

.pillar-duo__box .pillar-carousel__viewport,
.pillar-duo__box .pillar-carousel__track,
.pillar-duo__box .pillar-carousel__slide {
  height: 100%;
}

.pillar-duo__box .pillar-carousel__slide img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}

.pillar-duo__box .pillar-carousel__slide iframe {
  height: 100%;
  aspect-ratio: auto;
}

.pillar-products__cards {
  display: grid;
  gap: 14px;
  align-content: start;
}

.pillar-product-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: var(--pillar-panel-bg, rgba(0, 0, 0, 0.28));
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.pillar-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--gold-rgb), 0.26);
  background: rgba(0, 0, 0, 0.18);
}

.pillar-product-card__media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.pillar-product-card__body {
  padding: 12px 12px 14px;
  display: grid;
  gap: 6px;
}

.pillar-product-card__badge {
  display: inline-flex;
  align-self: start;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(var(--gold-rgb), 0.92);
  font-weight: 900;
  font-size: 0.72rem;
}

.pillar-product-card__title {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pillar-product-card__cta {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .pillar-hero2__grid {
    grid-template-columns: 1fr;
  }

  .pillar-products__grid {
    grid-template-columns: 1fr;
  }

  .pillar-products__panel {
    width: 100%;
  }

  .pillar-duo__grid {
    grid-template-columns: 1fr;
  }
}

.pillar-media-header {
  max-width: 60ch;
  margin-bottom: 18px;
}

.pillar-media-kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(var(--gold-rgb), 0.92);
}

.pillar-media-title {
  margin: 14px 0 0;
  color: rgba(var(--gold-rgb), 0.98);
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  letter-spacing: -0.03em;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.55);
}

.pillar-media-section .pillar-media-wall {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px;
  gap: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.pillar-media-wall__video,
.pillar-media-wall__image {
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  background: rgba(15, 23, 20, 0.06);
}

.pillar-media-wall__video iframe,
.pillar-media-wall__video video {
  width: 100%;
  border: 0;
  border-radius: 0;
  display: block;
  aspect-ratio: 16 / 9;
}

.pillar-media-wall__video img,
.pillar-media-wall__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pillar-media-wall__video img {
  aspect-ratio: 16 / 9;
}

.pillar-media-wall__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pillar-media-wall__image img {
  aspect-ratio: 1 / 1;
}

.pillar-video {
  margin-top: 14px;
}

.pillar-video iframe,
.pillar-video video {
  width: 100%;
  border: 0;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
}

.pillar-video iframe {
  aspect-ratio: 16 / 9;
}

@media (min-width: 760px) {
  .pillar-media-wall {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: stretch;
  }

  .pillar-media-wall__images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    height: 100%;
  }

  .pillar-media-wall__image img {
    height: 100%;
  }

  .pillar-media-grid .pillar-media-item {
    grid-column: span 6;
  }

  .pillar-media-grid .pillar-media-item:first-child {
    grid-column: span 12;
  }

  .pillar-media-grid--videos .pillar-media-item {
    grid-column: span 6;
  }
}

body.page-template-template-pillar .footer {
  background: transparent;
}

body.page-template-template-pillar .footer::before,
body.page-template-template-pillar .footer::after {
  display: none;
}

body.page-template-template-pillar .footer-shell {
  background: rgba(0, 0, 0, 0.30);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
}

@media (max-width: 900px) {
  .pillar-detail-grid {
    grid-template-columns: 1fr;
  }
}

.gbn-banner {
  position: relative;
  padding: clamp(48px, 6vw, 92px) 0 clamp(28px, 5vw, 62px);
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  overflow: hidden;
}

.gbn-banner::before {
  display: none;
}

.gbn-banner::after {
  display: none;
}

.gbn-banner .container {
  position: relative;
  z-index: 1;
}

.gbn-banner__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(22px, 4vw, 40px);
}

.gbn-banner__label {
  font-size: 0.86rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.gbn-banner__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.gbn-banner__brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 164, 74, 0.95), rgba(200, 164, 74, 0.12) 55%, transparent 56%),
    radial-gradient(circle at 55% 65%, rgba(12, 122, 75, 0.92), rgba(12, 122, 75, 0.12) 55%, transparent 56%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.gbn-banner__brand-text {
  display: grid;
  gap: 2px;
}

.gbn-banner__brand-code {
  font-weight: 950;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
}

.gbn-banner__brand-name {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.1;
}

.gbn-banner__content {
  max-width: 640px;
}

.gbn-banner__title {
  font-size: clamp(2.2rem, 5vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--gold);
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  margin: 0 0 14px;
}

.gbn-banner__lead {
  display: grid;
  gap: 12px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 58ch;
}

.gbn-banner__lead p {
  margin: 0;
  color: #ffffff;
}

body.home .gbn-banner__lead {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.92);
}

.gbn-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.gbn-pillars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(26px, 4.5vw, 44px);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
}

.gbn-pillar {
  display: block;
  border-radius: 0;
  padding: 22px 18px;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
  transform: translateY(0);
  transition: transform 180ms ease, background 180ms ease;
  text-align: center;
  min-height: 220px;
  --gbn-pillar-accent: rgba(14, 165, 166, 0.92);
}

.gbn-pillar + .gbn-pillar {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.gbn-pillar:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
}

.gbn-pillar:nth-child(1) { --gbn-pillar-accent: rgba(14, 165, 166, 0.95); }
.gbn-pillar:nth-child(2) { --gbn-pillar-accent: rgba(242, 193, 75, 0.95); }
.gbn-pillar:nth-child(3) { --gbn-pillar-accent: rgba(200, 164, 74, 0.95); }
.gbn-pillar:nth-child(4) { --gbn-pillar-accent: rgba(130, 190, 255, 0.95); }
.gbn-pillar:nth-child(5) { --gbn-pillar-accent: rgba(12, 200, 140, 0.95); }

.gbn-pillar__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gbn-pillar-accent);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid color-mix(in srgb, var(--gbn-pillar-accent) 44%, rgba(255, 255, 255, 0.10));
  margin: 0 auto 12px;
}

.gbn-pillar__icon svg {
  width: 28px;
  height: 28px;
}

.gbn-pillar__title {
  font-weight: 900;
  color: var(--gbn-pillar-accent);
  margin-bottom: 8px;
  line-height: 1.15;
}

.gbn-pillar__desc {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  margin: 0 auto;
  max-width: 28ch;
}

.gbn-pillar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 800;
  color: var(--gbn-pillar-accent);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: color 180ms ease, transform 180ms ease;
}

.gbn-pillar__cta::after {
  content: "→";
}

.gbn-pillar:hover .gbn-pillar__cta {
  color: var(--gbn-pillar-accent);
  transform: translateX(2px);
}

.gbn-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 16px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
}

.gbn-stat {
  position: relative;
  padding: 10px 6px;
}

.gbn-stat + .gbn-stat::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.10);
}

.gbn-stat__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 10px;
}

.gbn-stat__value {
  font-weight: 950;
  color: rgba(200, 164, 74, 0.96);
  letter-spacing: -0.02em;
}

.gbn-stat__label {
  margin-top: 6px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.3;
}

.card h3 {
  margin-bottom: 8px;
}

.meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 20, 0.04);
  border: 1px solid rgba(15, 23, 20, 0.08);
  font-weight: 800;
  color: rgba(15, 23, 20, 0.82);
  font-size: 0.9rem;
}

.chip--brand {
  background: rgba(12, 122, 75, 0.12);
  border-color: rgba(12, 122, 75, 0.18);
  color: var(--brand-2);
}

.card--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.card--dark:hover {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.card--dark h3 {
  color: var(--gold);
}

.card--dark p {
  color: rgba(255, 255, 255, 0.78);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: opacity 420ms ease, transform 420ms ease;
  will-change: opacity, transform;
}

[data-reveal].is-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.careers-showcase {
  padding: 120px 0 84px;
  overflow: hidden;
}

.careers-panel {
  position: relative;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.careers-panel::after {
  display: none;
}

.careers-panel::before {
  display: none;
}

.careers-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
}

.careers-hero__copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 56px 42px 42px;
}

.careers-hero__title {
  margin: 0;
  max-width: 9ch;
  color: #ffffff;
  font-size: clamp(2.7rem, 5vw, 4.25rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.careers-hero__subtitle {
  max-width: 30ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
  line-height: 1.72;
}

.careers-hero__cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, #c88c13 100%);
  color: #fffdf6;
  font-weight: 800;
  box-shadow:
    0 18px 40px rgba(200, 140, 19, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.careers-hero__cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 24px 48px rgba(200, 140, 19, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.10) inset;
}

.careers-hero__cta-icon,
.careers-hero__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.careers-hero__cta-icon {
  width: 26px;
  height: 26px;
}

.careers-why {
  position: relative;
  z-index: 2;
  padding: 0 26px 26px;
}

.careers-why__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -1px;
  padding: 18px 8px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.careers-why__line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.careers-why__head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.55rem;
}

.careers-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.careers-benefit-card {
  min-height: 188px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(4, 10, 8, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.careers-benefit-card__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.16) 0%, rgba(var(--gold-rgb), 0.08) 100%);
  color: rgba(var(--brand-rgb), 0.96);
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.careers-benefit-card h3 {
  margin: 18px 0 10px;
  color: #ffffff;
  font-size: 1.35rem;
}

.careers-benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .careers-hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .careers-hero__copy {
    padding: 48px 32px 28px;
  }

  .careers-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .careers-showcase {
    padding: 96px 0 64px;
  }

  .careers-panel {
    border-radius: 22px;
  }

  .careers-hero__copy {
    padding: 34px 22px 24px;
  }

  .careers-hero__title {
    max-width: none;
    font-size: clamp(2.3rem, 9vw, 3.2rem);
  }

  .careers-hero__subtitle {
    max-width: none;
    font-size: 1rem;
  }

  .careers-hero__cta {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .careers-why {
    padding: 0 18px 18px;
  }

  .careers-benefits {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .services-card,
  .services-card::before,
  .services-card__copy,
  .services-card__media,
  .services-card__badge,
  .services-card__title,
  .services-card-stat,
  .services-media-box,
  .services-gallery-carousel .pillar-carousel__slide img,
  .services-action {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.chip--gold {
  background: var(--gold-soft);
  border-color: rgba(200, 164, 74, 0.24);
  color: rgba(15, 23, 20, 0.86);
}

.footer {
  background: linear-gradient(180deg, #0b1411 0%, #070d0b 100%);
  color: rgba(255, 255, 255, 0.86);
  padding: 58px 0 26px;
  position: relative;
  overflow: hidden;
}

body.home .footer {
  background: transparent;
}

body.home .footer::before,
body.home .footer::after {
  display: none;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px circle at 10% 10%, rgba(var(--brand-rgb), 0.18), transparent 62%),
    radial-gradient(900px circle at 90% 0%, rgba(var(--gold-rgb), 0.14), transparent 62%);
  opacity: 0.9;
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.06;
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-shell {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(20px, 3.6vw, 34px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 22px;
}

.footer h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(var(--brand-rgb), 0.52);
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  box-shadow: 0 14px 34px rgba(var(--brand-rgb), 0.20);
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  font-size: 0.98rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer a:hover {
  color: #ffffff;
}

.footer-menu,
.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-menu a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-menu a::after {
  content: "›";
  font-size: 1.1em;
  opacity: 0.5;
  transform: translateY(-1px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.footer-contact__icon {
  color: rgba(var(--gold-rgb), 0.92);
  margin-top: 2px;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.66);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.footer-social {
  display: inline-flex;
  gap: 10px;
}

.footer-social__link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.footer-social__link:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--gold-rgb), 0.42);
  background: rgba(var(--brand-rgb), 0.18);
  color: #ffffff;
}

@media (max-width: 900px) {
  .services-page {
    padding: 110px 0 72px;
  }

  .services-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-card__main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .services-card__copy {
    padding: 20px 20px 10px;
  }

  .services-card__media {
    min-height: 240px;
    padding: 16px;
  }

  .services-card__stats {
    grid-template-columns: 1fr;
  }

  .services-action {
    min-height: 78px;
    padding: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .gbn-banner__top {
    align-items: flex-start;
  }

  .gbn-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gbn-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gbn-form__grid {
    grid-template-columns: 1fr;
  }

  .services-showcase__top {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .services-showcase__copy {
    padding: 26px 22px 18px;
  }

  .services-showcase__hero {
    padding: 18px 22px 22px;
  }

  .services-showcase__features {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .services-showcase__actions {
    grid-template-columns: 1fr;
  }

  .services-showcase-carousel .pillar-carousel__slide {
    flex-basis: calc((100% - 24px) / 3);
  }

  .services-trade-grid {
    grid-template-columns: 1fr;
  }

  .services-showcase__trade {
    padding-inline: 18px;
  }

  .services-showcase__trade-head {
    gap: 6px;
  }

  .services-biz-profile__head {
    flex-direction: column;
    align-items: stretch;
  }

  .services-biz-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-biz-products__grid {
    grid-template-columns: 1fr;
  }

  .services-biz-product-card__media {
    aspect-ratio: 16 / 10;
  }

  .services-biz-products__footer {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 14px;
  }

  .services-biz-products__footer-actions {
    justify-items: stretch;
  }

  .services-biz-products__footer-btn {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .services-biz-facts {
    grid-template-columns: 1fr;
  }

  .services-biz-product-card__actions {
    grid-template-columns: 1fr;
  }

  .services-biz-products__footer {
    padding: 14px;
  }
}

@media (max-width: 520px) {
  .gbn-pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-main {
    padding-top: 116px;
  }

  .nav {
    top: 0;
    left: 0;
    right: 0;
    padding-top: calc(12px + env(safe-area-inset-top));
    padding-bottom: 12px;
  }

  body.home .nav,
  .gbn-nav-in-hero .nav {
    position: fixed;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 50px rgba(15, 23, 20, 0.12);
    padding-top: calc(12px + env(safe-area-inset-top));
    padding-bottom: 12px;
  }

  body.home .nav-brand__label,
  .gbn-nav-in-hero .nav-brand__label {
    color: rgba(15, 23, 20, 0.92);
    text-shadow: none;
  }

  body.home .nav-links a,
  .gbn-nav-in-hero .nav-links a {
    color: rgba(15, 23, 20, 0.82);
  }

  body.home .nav-links a:hover,
  body.home .nav-links .current-menu-item > a,
  body.home .nav-links a[aria-current="page"],
  .gbn-nav-in-hero .nav-links a:hover,
  .gbn-nav-in-hero .nav-links .current-menu-item > a,
  .gbn-nav-in-hero .nav-links a[aria-current="page"] {
    color: rgba(15, 23, 20, 0.92);
  }

  body.home .nav-toggle-lines,
  body.home .nav-toggle-lines::before,
  body.home .nav-toggle-lines::after,
  .gbn-nav-in-hero .nav-toggle-lines,
  .gbn-nav-in-hero .nav-toggle-lines::before,
  .gbn-nav-in-hero .nav-toggle-lines::after {
    background: var(--text);
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
  }

  .nav.nav-open .nav-links {
    display: block;
    padding: 10px 8px;
    margin-top: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 20, 0.12);
    box-shadow: 0 20px 44px rgba(15, 23, 20, 0.16);
  }

  .nav-links .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 6px;
  }

  .nav-links a {
    justify-content: space-between;
  }

  .hero {
    padding-top: 124px;
  }
}
