/* ═══════════════════════════════════════════════════
   CEDEIM — Sitio Web Oficial | Diseño Propuesta 2
   Paleta: Azul #3764EB · Amarillo #FEE100 · Blanco
   Tipografía: Jost (headings) + Inter (body)
═══════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #267ec1;
  --blue-lt: #eef3ff;
  --blue-mid: #267ec1;
  --yellow: #fee100;
  --yellow-dk: #e6cb00;
  --heading: #142441;
  --body: #9aa5b3;
  --dark: #272b2e;
  --border: #eeeeee;
  --bg-light: #f6f6f6;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(20, 36, 65, 0.06);
  --shadow-md: 0 8px 32px rgba(55, 100, 235, 0.12);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: "Jost", sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.875;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.3;
}
h1 {
  font-size: clamp(36px, 5vw, 52px);
}
h2 {
  font-size: clamp(28px, 4vw, 38px);
}
h3 {
  font-size: clamp(22px, 3vw, 26px);
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.875;
}
a {
  text-decoration: none;
  color: var(--body);
  transition: all 0.3s ease;
}
a:hover {
  color: var(--blue);
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pd {
  padding: 80px 0;
}
.section-pd-sm {
  padding: 60px 0;
}

/* ─── BUTTONS ────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--heading);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  font-family: "Jost", sans-serif;
}
.btn-primary:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: "Jost", sans-serif;
}
.btn-blue:hover {
  background: var(--heading);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--heading);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 30px;
  border-radius: 4px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-yellow-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 36px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-yellow-cta:hover {
  background: var(--white);
}

.btn-wht-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 34px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.btn-wht-outline:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

/* ─── SECTION HEADER (eyebrow + title) ───────── */
.s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}
.s-eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.s-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 18px;
}
.s-title span {
  color: var(--blue);
}
.s-body {
  font-size: 15px;
  color: var(--body);
  line-height: 1.875;
  max-width: 620px;
}

/* ─── TOP BAR ────────────────────────────────── */
.top-bar {
  height: 44px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 60px;
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--heading);
  font-weight: 500;
}
.top-bar-item i {
  color: var(--blue);
  font-size: 12px;
}
.top-bar-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
}

/* ─── SITE HEADER ────────────────────────────── */
.site-header {
  height: 82px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 60px;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-logo {
  height: 46px;
}

/* ─── NAVIGATION ─────────────────────────────── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav > li {
  position: relative;
}
.main-nav > li > a {
  display: block;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  line-height: 82px;
  position: relative;
  text-transform: capitalize;
}
.main-nav > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.main-nav > li > a:hover {
  color: var(--blue);
}
.main-nav > li > a:hover::after {
  transform: scaleX(1);
}
.main-nav > li.active > a {
  color: var(--blue);
}
.main-nav > li.active > a::after {
  transform: scaleX(1);
}

/* ─── DROPDOWN ───────────────────────────────── */
.has-dropdown {
  position: relative;
}
.has-dropdown > a .fa-chevron-down {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}
.has-dropdown:hover > a .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(20, 36, 65, 0.12);
  border-top: 3px solid var(--blue);
  border-radius: 0 0 6px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 2000;
  padding: 8px 0;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--heading);
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}
.dropdown-menu a i {
  color: var(--blue);
  width: 16px;
  font-size: 13px;
}
.dropdown-menu a:hover {
  background: var(--blue-lt);
  border-left-color: var(--blue);
  color: var(--blue);
}

.dropdown-section-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 24px 6px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.dropdown-section-label:first-child {
  border-top: none;
  margin-top: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
}
.header-phone i {
  color: var(--blue);
  font-size: 16px;
}

/* ─── HAMBURGER (mobile) ─────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── PAGE HERO (inner pages) ────────────────── */
.page-hero {
  background: var(--blue);
  padding: 52px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
}
.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}
.page-hero .breadcrumb a:hover {
  color: var(--white);
}
.page-hero .breadcrumb i {
  font-size: 10px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero h1 span {
  color: var(--yellow);
}
.page-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

/* ─── HERO ───────────────────────────────────── */
.hero-section {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-bottom: 1px solid var(--border);
}
.hero-left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.hero-tag::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.hero-h1 {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--heading);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-h1 span {
  color: var(--blue);
}
.hero-p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.875;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 0;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stat {
  padding-right: 36px;
  border-right: 1px solid var(--border);
  margin-right: 36px;
}
.hero-stat:last-child {
  border-right: none;
}
.hstat-n {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.hstat-l {
  font-size: 12px;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-iso-badge {
  position: absolute;
  bottom: 32px;
  left: -20px;
  background: var(--white);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid var(--blue);
  min-width: 240px;
}
.iso-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--blue);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue);
  flex-shrink: 0;
}
.iso-text strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--heading);
  display: block;
}
.iso-text span {
  font-size: 12px;
  color: var(--body);
}

/* ─── SERVICES ICON ROW ──────────────────────── */
.services-row {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.sr-item {
  padding: 34px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--white);
  text-decoration: none;
}
.sr-item:last-child {
  border-right: none;
}
.sr-item:hover {
  background: var(--blue);
  text-decoration: none;
}
.sr-item:hover .sr-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}
.sr-item:hover .sr-name {
  color: var(--white);
}
.sr-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue);
  transition: all 0.3s ease;
}
.sr-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--heading);
  text-transform: capitalize;
  line-height: 1.3;
  transition: all 0.3s ease;
}

/* ─── ABOUT SECTION ──────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--white);
}
.about-img {
  position: relative;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-years {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--blue);
  color: var(--white);
  padding: 28px 32px;
  text-align: center;
  min-width: 150px;
}
.ay-num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}
.ay-sym {
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
  margin-left: 2px;
}
.ay-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.85);
}
.about-content {
  padding: 80px 64px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.af-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-light);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}
.af-row:hover {
  border-left-color: var(--blue);
  background: var(--white);
  box-shadow: 0 2px 16px rgba(55, 100, 235, 0.08);
}
.af-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.af-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  display: block;
  margin-bottom: 3px;
}
.af-text p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}

/* ─── VALUES GRID ─────────────────────────────── */
.values-section {
  background: var(--blue);
  padding: 60px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 40px;
}
.value-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px 20px;
  text-align: center;
  transition: background 0.3s ease;
}
.value-item:hover {
  background: rgba(255, 255, 255, 0.12);
}
.value-icon {
  font-size: 28px;
  color: var(--yellow);
  margin-bottom: 12px;
}
.value-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── WHY CHOOSE ──────────────────────────────── */
.why-section {
  background: var(--bg-light);
  padding: 80px 60px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.why-icon-wrap {
  width: 68px;
  height: 68px;
  background: var(--blue-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--blue);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.why-card:hover .why-icon-wrap {
  background: var(--blue);
  color: var(--white);
}
.why-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 10px;
}
.why-text {
  font-size: 14px;
  color: var(--body);
  line-height: 1.75;
}

/* ─── AREAS GRID ──────────────────────────────── */
.areas-section {
  background: var(--white);
  padding: 80px 60px;
}
.areas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.area-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  transform: translateY(-4px);
}
.area-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.area-body {
  padding: 22px;
}
.area-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 7px;
}
.area-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 7px;
  line-height: 1.4;
}
.area-desc {
  font-size: 13px;
  color: var(--body);
  line-height: 1.65;
}
.area-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 12px;
}
.area-link:hover {
  gap: 10px;
}

/* ─── STATS BAND ──────────────────────────────── */
.stats-band {
  background: var(--blue);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item:first-child {
  padding-left: 0;
}
.stat-item:last-child {
  border-right: none;
}
.stat-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
}
.stat-n {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-n span {
  color: var(--yellow);
}
.stat-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ─── ACCREDITATION SECTION ───────────────────── */
.accred-section {
  background: var(--bg-light);
  padding: 80px 60px;
}
.accred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.accred-img-wrap {
  position: relative;
}
.accred-img {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.accred-cert-card {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--white);
  border-top: 4px solid var(--yellow);
  padding: 22px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 150px;
}
.acc-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.acc-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.accred-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.acc-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.acc-feat:hover {
  border-color: var(--blue);
}
.acc-feat-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-lt);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--blue);
  flex-shrink: 0;
}
.acc-feat-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--heading);
  display: block;
  margin-bottom: 3px;
}
.acc-feat-text span {
  font-size: 12px;
  color: var(--body);
}

/* ─── ACCREDITATION CARDS (page) ──────────────── */
.accred-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.accred-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.accred-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  transform: translateY(-4px);
}
.accred-card-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  padding: 24px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}
.accred-card-body {
  padding: 28px;
}
.accred-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  background: var(--blue-lt);
  color: var(--blue);
  margin-bottom: 14px;
}
.accred-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 10px;
}
.accred-card-desc {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 20px;
}
.accred-card-meta {
  font-size: 12px;
  color: var(--body);
  margin-bottom: 20px;
}
.accred-card-meta strong {
  color: var(--heading);
}
.accred-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-pdf:hover {
  background: var(--heading);
  color: var(--white);
}
.btn-pdf i {
  font-size: 14px;
}

/* ─── CTA SECTION ─────────────────────────────── */
.cta-section {
  background: var(--blue);
  padding: 72px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.cta-h {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 520px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 28px 32px;
  min-width: 270px;
}
.cta-box-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.cta-box-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13.5px;
}
.cta-box-row:last-child {
  border-bottom: none;
}
.cta-box-row .label {
  color: rgba(255, 255, 255, 0.6);
}
.cta-box-row .value {
  font-weight: 700;
  color: var(--white);
}

/* ─── CONTACT SECTION ─────────────────────────── */
.contact-section {
  background: var(--white);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--bg-light);
  border-radius: 4px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}
.ci-row:hover {
  border-left-color: var(--blue);
  background: var(--white);
  box-shadow: 0 2px 16px rgba(55, 100, 235, 0.08);
}
.ci-icon {
  width: 50px;
  height: 50px;
  background: var(--blue);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--white);
  flex-shrink: 0;
}
.ci-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}
.ci-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--heading);
}
.ci-sub {
  font-size: 13px;
  color: var(--body);
  margin-top: 2px;
}

/* ─── CONTACT FORM ────────────────────────────── */
.contact-form {
  background: var(--bg-light);
  padding: 44px 40px;
  border-radius: 4px;
}
.form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 6px;
}
.form-line {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--border);
  border-radius: 3px;
  padding: 0 14px;
  font-size: 13.5px;
  font-family: "Jost", sans-serif;
  color: var(--heading);
  transition: border-color 0.3s ease;
  outline: none;
}
.form-input,
.form-select {
  height: 44px;
}
.form-textarea {
  height: 100px;
  padding: 12px 14px;
  resize: none;
}
.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--blue);
}
.form-select {
  appearance: none;
  cursor: pointer;
}

/* ─── SCOPE TABLE ─────────────────────────────── */
.scope-page {
  background: var(--white);
  padding: 80px 60px;
}
.scope-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 36px;
  margin-top: 48px;
}
.scope-sidebar {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  height: fit-content;
}
.ss-header {
  background: var(--blue);
  padding: 16px 22px;
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.ss-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 22px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--heading);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  background: var(--white);
  user-select: none;
}
.ss-item:last-child {
  border-bottom: none;
}
.ss-item i {
  color: var(--body);
  font-size: 13px;
  width: 15px;
}
.ss-item:hover,
.ss-item.active {
  color: var(--blue);
  border-left-color: var(--blue);
  background: var(--blue-lt);
}
.ss-item:hover i,
.ss-item.active i {
  color: var(--blue);
}
.scope-section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 16px;
  margin-top: 32px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.scope-section-title:first-child {
  margin-top: 0;
}
.scope-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}
.scope-table thead tr {
  background: var(--bg-light);
}
.scope-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--heading);
  padding: 13px 16px;
  border-bottom: 2px solid var(--border);
}
.scope-table td {
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--body);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.scope-table td:first-child {
  font-weight: 700;
  color: var(--heading);
}
.scope-table tr:hover td {
  background: var(--blue-lt);
}
.scope-table tr:last-child td {
  border-bottom: none;
}
.norm {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 3px;
  margin: 2px;
}
.norm-gray {
  display: inline-block;
  background: var(--bg-light);
  color: var(--body);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 3px;
  margin: 2px;
}
.scope-panel {
  display: none;
}
.scope-panel.active {
  display: block;
}
.scope-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}
.scope-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.sf {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--body);
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.sf.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.sf:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ─── MISSION / VISION SECTION ───────────────── */
.mv-section {
  background: var(--white);
  padding: 80px 60px;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.mv-card {
  padding: 40px 36px;
  border-radius: 4px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.mv-card.mission {
  border-top: 4px solid var(--blue);
}
.mv-card.vision {
  border-top: 4px solid var(--yellow);
}
.mv-card-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.mv-card.mission .mv-card-label {
  color: var(--blue);
}
.mv-card.vision .mv-card-label {
  color: var(--yellow-dk);
}
.mv-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 14px;
}
.mv-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.8;
}
.mv-icon {
  font-size: 48px;
  position: absolute;
  right: 28px;
  top: 28px;
  opacity: 0.08;
}
.mv-card.mission .mv-icon {
  color: var(--blue);
}
.mv-card.vision .mv-icon {
  color: var(--yellow-dk);
}

/* ─── QUALITY POLICY ──────────────────────────── */
.quality-section {
  background: var(--bg-light);
  padding: 60px;
}
.quality-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.quality-badge {
  background: var(--blue);
  color: var(--white);
  padding: 40px;
  border-radius: 6px;
  text-align: center;
}
.quality-badge .q-icon {
  font-size: 52px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.quality-badge h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.quality-badge span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.quality-text {
}
.quality-policy {
  font-size: 16px;
  font-style: italic;
  color: var(--heading);
  line-height: 1.8;
  padding: 24px 28px;
  background: var(--white);
  border-left: 4px solid var(--blue);
  border-radius: 0 4px 4px 0;
  margin: 20px 0;
}
.quality-standard {
  font-size: 14px;
  color: var(--body);
}
.quality-standard strong {
  color: var(--heading);
}

/* ─── FOOTER ──────────────────────────────────── */
.site-footer {
  background: var(--white);
  border-top: 4px solid var(--blue);
  padding: 72px 60px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.f-logo {
  height: 44px;
  margin-bottom: 18px;
}
.f-desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.875;
  max-width: 280px;
  margin-bottom: 24px;
}
.f-social {
  display: flex;
  gap: 10px;
}
.f-soc {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--body);
  transition: all 0.3s ease;
}
.f-soc:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.f-col-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.f-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.f-links a {
  font-size: 13.5px;
  color: var(--body);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.3s ease;
}
.f-links a i {
  color: var(--blue);
  font-size: 11px;
}
.f-links a:hover {
  color: var(--blue);
  padding-left: 4px;
}
.f-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fci {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.fci-icon {
  width: 34px;
  height: 34px;
  background: var(--blue-lt);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.fci-text {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.55;
}
.fci-text strong {
  display: block;
  font-weight: 700;
  color: var(--heading);
  font-size: 12px;
  margin-bottom: 1px;
}
.f-cta-box {
  background: var(--blue-lt);
  border: 1px solid rgba(55, 100, 235, 0.15);
  border-radius: 4px;
  padding: 24px 22px;
  margin-top: 14px;
}
.f-cta-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 7px;
}
.f-cta-desc {
  font-size: 12.5px;
  color: var(--body);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.f-copy {
  font-size: 13px;
  color: var(--body);
}
.f-copy span {
  color: var(--blue);
  font-weight: 600;
}
.f-bottom-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.f-bottom-links a {
  font-size: 13px;
  color: var(--body);
}
.f-bottom-links a:hover {
  color: var(--blue);
}

/* ─── LOCATION SECTION ────────────────────────── */
.locations-section {
  background: var(--bg-light);
  padding: 80px 60px;
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.location-card-header {
  background: var(--blue);
  padding: 20px 28px;
}
.location-card-header h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}
.location-card-header span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.location-card-body {
  padding: 28px;
}
.location-info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.location-info-row i {
  color: var(--blue);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}
.location-info-row div {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}
.location-info-row div strong {
  color: var(--heading);
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

/* ─── SCROLL-TO-TOP ───────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: var(--heading);
  transform: translateY(-3px);
}

/* ─── MOBILE NAV ──────────────────────────────── */
@media (max-width: 1024px) {
  .top-bar-inner {
    padding: 0 24px;
  }
  .site-header {
    padding: 0 24px;
    height: 72px;
  }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--blue);
    box-shadow: 0 8px 24px rgba(20, 36, 65, 0.1);
    z-index: 999;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav > li > a {
    line-height: 1;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
  }
  .has-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    background: var(--blue-lt);
    padding: 0;
    display: none;
  }
  .has-dropdown.open .dropdown-menu {
    display: block;
  }
  .hamburger {
    display: flex;
  }
  .header-phone {
    display: none;
  }
  .hero-section {
    grid-template-columns: 1fr;
  }
  .hero-right {
    min-height: 300px;
  }
  .hero-left {
    padding: 60px 24px;
  }
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-content {
    padding: 48px 24px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-band {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 48px 24px;
  }
  .stat-item {
    padding: 0;
    border-right: none;
  }
  .accred-grid {
    grid-template-columns: 1fr;
  }
  .cta-section {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }
  .contact-section {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }
  .scope-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .quality-inner {
    grid-template-columns: 1fr;
  }
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .accred-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-section {
    padding: 60px 24px;
  }
  .areas-section {
    padding: 60px 24px;
  }
  .scope-page {
    padding: 60px 24px;
  }
  .accred-section {
    padding: 60px 24px;
  }
  .mv-section {
    padding: 60px 24px;
  }
  .quality-section {
    padding: 48px 24px;
  }
  .values-section {
    padding: 48px 24px;
  }
  .locations-section {
    padding: 60px 24px;
  }
  .page-hero {
    padding: 48px 24px;
  }
  .site-footer {
    padding: 48px 24px 0;
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .stats-band {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .services-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .hero-stat {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .accred-cards-grid {
    grid-template-columns: 1fr;
  }
  .accred-features {
    grid-template-columns: 1fr;
  }
  .top-bar-left .top-bar-item:nth-child(3),
  .top-bar-left .top-bar-divider {
    display: none;
  }
}
