/* ============================================================
   EMware – Shared Stylesheet
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --teal:       #007B7F;
  --teal-dark:  #005F63;
  --teal-light: #E0F4F4;
  --dark:       #333333;
  --orange:     #D35400;
  --orange-dark:#B24600;
  --orange-light:#FDF0E8;
  --yellow:     #F5A623;
  --green:      #1E8449;
  --green-light:#D5F5E3;
  --text:       #1A252F;
  --text-muted: #5D6D7E;
  --bg:         #F4F6F7;
  --bg-white:   #FFFFFF;
  --border:     #D5D8DC;
  --shadow:     0 4px 16px rgba(0,123,127,0.12);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,123,127,0.18);
  --radius:     8px;
  --radius-lg:  12px;
  --transition: 0.2s ease;
  --nav-height: 68px;
  --utility-height: 38px;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1 { font-size: clamp(28px, 4vw, 52px); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; line-height: 1.3; }
h4 { font-size: 18px; font-weight: 600; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 100px 0; }
.section--bg { background: var(--bg); }
.section--teal { background: var(--teal); color: #fff; }
.section--dark { background: var(--dark); color: #fff; }
.section--orange { background: var(--orange); color: #fff; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(211,84,0,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--teal);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-color: var(--teal-light);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* ── UTILITY BAR ───────────────────────────────────────────── */
.utility-bar {
  background: var(--dark);
  height: var(--utility-height);
  font-size: 13px;
  color: #aaa;
  position: relative;
  z-index: 1000;
}
.utility-bar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.utility-bar a {
  color: #ccc;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.utility-bar a:hover { color: var(--teal); }
.utility-bar__left, .utility-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.utility-bar .separator { color: #555; }
.lang-switcher { display: flex; align-items: center; gap: 6px; }
.lang-switcher a { color: #aaa; font-weight: 600; font-size: 12px; letter-spacing: 0.5px; }
.lang-switcher a.active { color: var(--teal); }
.search-btn {
  color: #aaa;
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color var(--transition);
}
.search-btn:hover { color: var(--teal); }

/* ── MAIN NAVIGATION ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.main-nav {
  height: var(--nav-height);
  background: #fff;
  border-bottom: 2px solid var(--teal-light);
}
.main-nav > .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 40px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}
/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
}
.nav-list {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 4px;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: var(--nav-height);
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-item > a:hover,
.nav-item.active > a {
  color: var(--teal);
}
.nav-item > a:hover::after,
.nav-item.active > a::after {
  transform: scaleX(1);
}
.nav-item.active > a { font-weight: 600; }
.nav-chevron {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.nav-item.has-mega:hover .nav-chevron { transform: rotate(180deg); }

/* NAV CTA */
.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}
.nav-cta .btn { font-size: 14px; padding: 10px 20px; }

/* ── MEGA MENU ─────────────────────────────────────────────── */
.nav-item.has-mega { position: static; }
.mega-menu {
  position: fixed;
  top: calc(var(--utility-height) + var(--nav-height));
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--teal);
  padding: 32px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 998;
}
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.mega-menu__inner--4col {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mega-menu__inner--3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mega-menu__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mega-menu__list li { margin-bottom: 4px; }
.mega-menu__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  transition: all var(--transition);
}
.mega-menu__list a:hover {
  background: var(--teal-light);
  color: var(--teal);
  padding-left: 16px;
}
.mega-menu__list .icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 6px;
  font-size: 18px;
  flex-shrink: 0;
}
.mega-menu__list .label { font-weight: 500; }
.mega-menu__list .desc { font-size: 12px; color: var(--text-muted); line-height: 1.3; }
.mega-menu__col--service a {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0;
}
.mega-menu__col--service a:hover {
  border-color: var(--teal);
  background: var(--teal-light);
  padding-left: 14px;
}
.mega-menu__col--service .icon { margin-bottom: 6px; font-size: 24px; background: none; width: auto; height: auto; }

/* ── HAMBURGER ─────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE FLOATING CTA ───────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.mobile-cta .btn { box-shadow: 0 4px 20px rgba(211,84,0,0.4); }

/* ── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 16px 0;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb__sep { color: var(--border); }
.breadcrumb__current { color: var(--text); font-weight: 500; }

/* ── PAGE HERO (subpages) ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.page-hero__breadcrumb { color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.page-hero__breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero__breadcrumb a:hover { color: #fff; }
.page-hero__breadcrumb .breadcrumb__sep { color: rgba(255,255,255,0.4); }
.page-hero__breadcrumb .breadcrumb__current { color: #fff; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { font-size: 18px; opacity: 0.88; max-width: 600px; margin-bottom: 0; }

/* ── SECTION HEADING ───────────────────────────────────────── */
.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}
.section-heading h2 { margin-bottom: 12px; }
.section-heading p { font-size: 17px; color: var(--text-muted); }
.section-heading .overline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card__body { padding: 24px; }
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.card__icon--orange { background: var(--orange-light); }
.card__icon--green { background: var(--green-light); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 14px; margin-bottom: 0; }

/* Feature/icon box */
.feature-box {
  text-align: center;
  padding: 32px 24px;
}
.feature-box .card__icon { margin: 0 auto 20px; }
.feature-box h3 { margin-bottom: 10px; }

/* ── HIGHLIGHT BOXES ───────────────────────────────────────── */
.highlight-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
}
.highlight-box--orange {
  background: var(--orange-light);
  border-left-color: var(--orange);
}
.highlight-box--green {
  background: var(--green-light);
  border-left-color: var(--green);
}
.highlight-box .value {
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.highlight-box--orange .value { color: var(--orange); }
.highlight-box--green .value { color: var(--green); }
.highlight-box .label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ── TRUST / STATS BAR ─────────────────────────────────────── */
.trust-bar {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 10;
}
.trust-item {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item .icon { font-size: 60px; margin-bottom: 8px; }
.trust-item .value { font-size: 17px; font-weight: 700; color: var(--teal); line-height: 1.2; margin-bottom: 6px; }
.trust-item .label { font-size: 12px; color: var(--text-muted); font-weight: 500; line-height: 1.4; }

/* ── BADGE ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.badge--teal { background: var(--teal-light); color: var(--teal); }
.badge--orange { background: var(--orange-light); color: var(--orange); }
.badge--green { background: var(--green-light); color: var(--green); }
.badge--sla {
  background: var(--green-light);
  color: var(--green);
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid #A9DFBF;
}

/* ── TABLES ────────────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table thead { background: var(--teal); color: #fff; position: sticky; top: 0; }
.data-table th, .data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table th { font-weight: 600; font-size: 13px; letter-spacing: 0.3px; }
.data-table tbody tr:hover { background: var(--teal-light); }
.data-table tbody tr:last-child td { border-bottom: none; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }

/* ── TABS ──────────────────────────────────────────────────── */
.tabs { margin-top: 40px; }
.tabs__nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
  gap: 0;
  overflow-x: auto;
}
.tabs__btn {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition);
}
.tabs__btn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  font-weight: 600;
}
.tabs__btn:hover { color: var(--teal); }
.tabs__panel { display: none; }
.tabs__panel.active { display: block; }

/* ── FORMS ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-label .req { color: var(--orange); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,123,127,0.1); }
.form-control::placeholder { color: #aab; }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.upload-area:hover { border-color: var(--teal); background: var(--teal-light); }
.upload-area .upload-icon { font-size: 40px; margin-bottom: 12px; }
.upload-area p { color: var(--text-muted); font-size: 14px; }

/* Multi-step form */
.progress-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.progress-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  background: var(--bg);
  color: var(--text-muted);
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all var(--transition);
}
.progress-step.active .progress-step__num { background: var(--teal); color: #fff; border-color: var(--teal); }
.progress-step.done .progress-step__num { background: var(--green); color: #fff; border-color: var(--green); }
.progress-step__label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.progress-step.active .progress-step__label { color: var(--teal); font-weight: 600; }
.progress-step.done .progress-step__label { color: var(--green); }
.progress-connector {
  flex: 1;
  height: 2px;
  background: var(--border);
  max-width: 80px;
  margin: 0 8px;
}
.progress-connector.done { background: var(--green); }
.form-step { display: none; }
.form-step.active { display: block; }

/* ── CERTIFICATIONS BAR ────────────────────────────────────── */
.cert-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px 0;
}
.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.cert-item:hover { opacity: 1; }
.cert-badge {
  width: 80px;
  height: 80px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.2;
  padding: 8px;
}
.cert-item span { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ── PROCESS TIMELINE ──────────────────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--teal-light);
  z-index: 0;
}
.timeline-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.timeline-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow);
}
.timeline-step__icon { font-size: 28px; margin-bottom: 12px; }
.timeline-step h4 { margin-bottom: 8px; font-size: 16px; }
.timeline-step p { font-size: 13px; color: var(--text-muted); }

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: var(--orange);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { font-size: 18px; opacity: 0.9; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner--teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: #ccc;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col p { font-size: 14px; line-height: 1.7; color: #999; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: #999; font-size: 14px; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--teal); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}
.footer-contact-item a { color: #999; }
.footer-contact-item a:hover { color: var(--teal); }
.footer-contact-item .icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--teal); color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: #666;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: var(--teal); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ── SIDEBAR (product/service detail) ─────────────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: calc(var(--utility-height) + var(--nav-height) + 20px);
}
.sidebar-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-box h4 { margin-bottom: 16px; font-size: 16px; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.contact-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
}
.contact-person__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: var(--teal);
  font-weight: 700;
}
.contact-person__info .name { font-weight: 700; font-size: 15px; }
.contact-person__info .title { font-size: 12px; color: var(--text-muted); }
.contact-person__info .email a { font-size: 13px; color: var(--teal); }

/* ── CASE STUDY CARD ───────────────────────────────────────── */
.case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.case-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.case-card__header {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  padding: 24px;
}
.case-card__industry { font-size: 12px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.case-card__body { padding: 24px; }
.case-card__result {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--teal-light);
  border-radius: var(--radius);
  margin-top: 16px;
}
.case-card__result .number { font-size: 28px; font-weight: 700; color: var(--teal); line-height: 1; }
.case-card__result .desc { font-size: 13px; color: var(--text-muted); }

/* ── FILTER BAR ────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  align-items: center;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  background: #fff;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.filter-label { font-size: 14px; font-weight: 600; color: var(--text-muted); }

/* ── TEAM CARD ─────────────────────────────────────────────── */
.team-card {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
.team-card .name { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-card .title { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.team-card .email a { font-size: 13px; color: var(--teal); }

/* ── JOB CARD ──────────────────────────────────────────────── */
.job-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.job-card:hover { box-shadow: var(--shadow); border-color: var(--teal); }
.job-card__info .title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.job-card__meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.job-card__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.job-card p { font-size: 14px; color: var(--text-muted); margin: 0; }
.job-card__action { flex-shrink: 0; }

/* ── HISTORY TIMELINE ──────────────────────────────────────── */
.history-timeline { position: relative; padding-left: 48px; }
.history-timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--teal-light);
}
.history-event {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.history-event:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.history-event::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--teal-light);
}
.history-event .year {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.history-event h4 { margin-bottom: 8px; }
.history-event p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ── SEARCH OVERLAY ────────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}
.search-overlay.open { display: flex; }
.search-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 90%;
  max-width: 600px;
}
.search-input-wrap { display: flex; gap: 12px; }
.search-input-wrap input { flex: 1; }

/* ── UTILS ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-teal { color: var(--teal); }
.text-orange { color: var(--orange); }
.text-white { color: #fff; }
.fw-700 { font-weight: 700; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.list-check li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 15px;
}
.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--border); }
  .trust-item:nth-child(4) { border-right: none; }
  .detail-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 768px) {
  :root { --nav-height: 60px; --utility-height: 0px; }
  .utility-bar { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); padding: 24px 20px; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--border); }
  .trust-item:nth-child(4) { border-right: none; }
  .trust-item { padding: 16px 12px; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hamburger { display: flex; }
  .nav-list { display: none; }
  .nav-cta { display: none; }
  .nav-menu { display: none; flex-direction: column; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: #fff; padding: 24px; overflow-y: auto; gap: 0; z-index: 1000; }
  .nav-menu.open { display: flex; }
  .nav-list { display: flex; flex-direction: column; width: 100%; gap: 0; }
  .nav-item > a { height: auto; padding: 14px 0; border-bottom: 1px solid var(--border); justify-content: space-between; width: 100%; }
  .nav-item > a::after { display: none; }
  .mega-menu { position: static; box-shadow: none; border: none; padding: 0; transform: none; opacity: 1; visibility: visible; display: none; }
  .nav-item.has-mega.open .mega-menu { display: block; }
  .mega-menu__inner { grid-template-columns: 1fr; gap: 16px; padding: 16px 0; }
  .mega-menu__inner--4col { grid-template-columns: 1fr 1fr; }
  .mega-menu__inner--3col { grid-template-columns: 1fr 1fr; }
  .nav-cta { display: block; width: 100%; margin-top: 20px; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .mobile-cta { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-heading { margin-bottom: 36px; }
  .mega-menu__col--service a { flex-direction: row; align-items: center; }
  .progress-bar { gap: 4px; }
  .progress-step__label { display: none; }
  .job-card { flex-direction: column; }
}
@media (max-width: 480px) {
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .cert-bar { gap: 16px; }
  .cta-banner .btn-group { flex-direction: column; align-items: stretch; }
  .cta-banner .btn-group .btn { justify-content: center; }
}


/* EMWARE image hero update */
.page-hero--image {
  min-height: 360px;
  display: flex;
  align-items: center;
  background-size: cover !important;
  background-position: center !important;
  padding: 76px 0 68px;
}
.page-hero--image::before {
  top: -180px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: rgba(255,255,255,0.08);
  z-index: 0;
}
.page-hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.14));
  z-index: 0;
}
.page-hero--image .container {
  position: relative;
  z-index: 1;
}
.page-hero--image h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  max-width: 760px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.28);
}
.page-hero--image p {
  max-width: 720px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
@media(max-width:768px){
  .page-hero--image { min-height: 280px; padding: 48px 0 44px; }
}
/* END EMWARE image hero update */


/* ── UNIFIED IMAGE HERO (references / career / contact) ────── */
.page-hero--image {
  min-height: 360px;
  padding: 64px 0 68px;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.page-hero--image::before {
  inset: 0;
  width: auto;
  height: auto;
  top: 0;
  right: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(7,24,39,0.92) 0%, rgba(7,24,39,0.78) 48%, rgba(0,123,127,0.34) 100%);
  z-index: -2;
}
.page-hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,123,127,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,123,127,0.10) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .65;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.8), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.page-hero--image .container {
  position: relative;
  z-index: 1;
}
.page-hero--image .breadcrumb {
  padding: 0;
  margin-bottom: 18px;
}
.page-hero--image h1 {
  max-width: 760px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.page-hero--image p {
  max-width: 680px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .page-hero--image {
    min-height: 300px;
    padding: 48px 0 52px;
  }
}


/* ============================================================
   PREMIUM POLISH — EMWARE 10/10
   ============================================================ */
:root {
  --dark: #071827;
  --ink: #071827;
  --premium-border: #dce8ef;
  --premium-shadow: 0 18px 46px rgba(7,24,39,.10);
  --premium-shadow-hover: 0 26px 62px rgba(0,123,127,.16);
  --radius: 12px;
  --radius-lg: 18px;
}
body {
  color: #12202E;
  background:
    radial-gradient(circle at 10% 0%, rgba(0,123,127,.035), transparent 32%),
    #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
.container { max-width: 1240px; }
.section { padding: 92px 0; }
.section--bg {
  background:
    linear-gradient(180deg, #F7FAFC 0%, #EEF4F7 100%);
}
h1, h2, h3 {
  letter-spacing: -0.035em;
}
p { color: #5f7084; }
.site-header {
  box-shadow: 0 8px 28px rgba(7,24,39,.06);
}
.main-nav {
  backdrop-filter: blur(12px);
}
.nav-item > a {
  position: relative;
}
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), #00B7B0);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.nav-item > a:hover::after,
.nav-item.active > a::after { transform: scaleX(1); }

.btn {
  border-radius: 12px;
  box-shadow: none;
}
.btn-primary {
  background: linear-gradient(135deg, #D35400 0%, #EA6A16 100%);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(211,84,0,.22);
}
.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(211,84,0,.30);
}
.btn-secondary {
  border-color: rgba(0,123,127,.28);
  background: rgba(255,255,255,.92);
}

.page-hero,
.prod-hero,
.sl-hero,
.hero {
  position: relative;
}
.page-hero--image {
  min-height: 390px;
  padding: 76px 0 78px;
}
.page-hero--image h1,
.prod-hero h1,
.sl-hero h1 {
  text-shadow: 0 12px 34px rgba(0,0,0,.24);
}
.page-hero--image p,
.prod-hero p,
.sl-hero p {
  color: rgba(255,255,255,.82);
}

.section-heading {
  margin-bottom: 58px;
}
.section-heading .overline,
.sl-eyebrow {
  color: #007B7F;
  letter-spacing: .14em;
}
.section-heading h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.card,
.case-card,
.product-card,
.service-card,
.ref-card,
.sidebar-box,
.contact-card,
.info-card,
.feature-card,
.sl-card,
.sl-process-panel,
.sl-form-card,
.sl-person-card {
  border-radius: 22px !important;
  border-color: var(--premium-border) !important;
  box-shadow: var(--premium-shadow) !important;
}
.card:hover,
.case-card:hover,
.product-card:hover,
.service-card:hover,
.ref-card:hover,
.info-card:hover,
.feature-card:hover,
.sl-card:hover {
  box-shadow: var(--premium-shadow-hover) !important;
  transform: translateY(-6px);
}
.case-card img,
.product-card img,
.ref-card img {
  transition: transform .45s ease, filter .45s ease;
}
.case-card:hover img,
.product-card:hover img,
.ref-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.03);
}
.mega-menu {
  border-radius: 0 0 22px 22px;
  box-shadow: 0 24px 70px rgba(7,24,39,.16);
  border-top: 1px solid rgba(0,123,127,.10);
}
.breadcrumb {
  letter-spacing: .01em;
}
.breadcrumb__current {
  font-weight: 700;
}

/* Premium footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% -10%, rgba(0,123,127,.32), transparent 28%),
    radial-gradient(circle at 0% 80%, rgba(211,84,0,.11), transparent 26%),
    linear-gradient(135deg, #071827 0%, #0B2238 54%, #041014 100%);
  color: rgba(255,255,255,.72);
  padding: 0;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.55), transparent 72%);
  pointer-events: none;
}
.footer-cta {
  position: relative;
  z-index: 1;
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(0,123,127,.96), rgba(0,96,99,.96));
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-cta__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px 0;
}
.footer-cta h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 6px;
}
.footer-cta p {
  color: rgba(255,255,255,.76);
  margin: 0;
}
.footer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 2.1fr 1.2fr 1.2fr 1.7fr;
  gap: 48px;
  padding: 58px 0 42px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-col p {
  color: rgba(255,255,255,.62);
  font-size: 14.5px;
  line-height: 1.85;
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .16em;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a,
.footer-contact-item,
.footer-contact-item a {
  color: rgba(255,255,255,.62);
}
.footer-col ul a:hover,
.footer-contact-item a:hover {
  color: #4ECDC4;
}
.footer-contact-item .icon {
  color: #4ECDC4;
}
.footer-socials a {
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.10);
}
.footer-socials a:hover {
  background: #007B7F;
  border-color: #007B7F;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: #4ECDC4; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .footer-cta__inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero--image { min-height: 320px; padding: 54px 0 58px; }
}


/* Final requested fixes */
.sidebar-info-box--hours .hours-list {
  display: grid;
  gap: 0;
}
.sidebar-info-box--hours .hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.45;
}
.sidebar-info-box--hours .hours-row:last-child {
  border-bottom: 0;
}
.sidebar-info-box--hours .hours-row span:first-child {
  color: var(--text-muted);
}
.sidebar-info-box--hours .hours-row strong {
  color: var(--text);
  white-space: nowrap;
}
.sidebar-info-box--hours .hours-row--muted strong {
  color: var(--teal);
}
@media (max-width: 520px) {
  .sidebar-info-box--hours .hours-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}


/* ============================================================
   UNIFIED SUBPAGE HEROES — Products / Services / References / Career / Contact
   ============================================================ */
.unified-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #071827;
}
.unified-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.unified-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,24,39,.94) 0%, rgba(7,24,39,.82) 45%, rgba(0,123,127,.36) 100%),
    radial-gradient(circle at 78% 25%, rgba(0,183,176,.24), transparent 34%);
  z-index: 1;
}
.unified-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.55), transparent 72%);
  z-index: 2;
}
.unified-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .78;
}
.unified-hero .container {
  position: relative;
  z-index: 3;
  padding-top: 76px;
  padding-bottom: 78px;
}
.unified-hero__content {
  max-width: 720px;
}
.unified-hero .breadcrumb {
  padding: 0;
  margin: 0 0 20px;
  color: rgba(255,255,255,.58);
}
.unified-hero .breadcrumb a,
.unified-hero .breadcrumb__sep {
  color: rgba(255,255,255,.58);
}
.unified-hero .breadcrumb__current {
  color: #fff;
  font-weight: 800;
}
.unified-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.16);
  color: #A8FFF7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.unified-hero__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #00B7B0;
  box-shadow: 0 0 18px rgba(0,183,176,.8);
}
.unified-hero h1 {
  color: #fff;
  max-width: 780px;
  font-size: clamp(34px, 4.7vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
  text-shadow: 0 16px 36px rgba(0,0,0,.25);
}
.unified-hero p {
  max-width: 660px;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  margin: 0;
}
.unified-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.unified-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.unified-hero__pill {
  padding: 11px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
}
@media (max-width: 768px) {
  .unified-hero {
    min-height: 350px;
  }
  .unified-hero .container {
    padding-top: 56px;
    padding-bottom: 58px;
  }
  .unified-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   CONTRAST FIX – tmavšie písmo na farebných CTA sekciách
   ============================================================ */
:root {
  --text-muted: #2F3A45;
}

.cta-banner--teal h2,
.cta-banner--teal p {
  color: #000000;
  opacity: 1;
  text-shadow: none;
}

.cta-banner--teal .badge {
  color: #000000 !important;
  background: rgba(255,255,255,0.55) !important;
}

.section-heading p,
.card p,
.doc-meta,
.related-card p,
.form-hint,
.upload-area p,
.trust-item .label,
.highlight-box .label,
.breadcrumb,
.breadcrumb a {
  color: var(--text-muted);
}
