/* ======================================== */
/* Default Shared Styles (all pages) */
/* ======================================== */
:root {
  --bg: #f2f2f3;
  --surface: #ffffff;
  --ink: #171923;
  --muted: #686d78;
  --line: #dfdfdf;
  --blue: #2848b8;
  --blue-dark: #1f3590;
  --blue-soft: #dfe4ff;
  --success: #9ad47d;
  --shadow: 0 18px 40px rgba(12, 22, 44, 0.08);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", sans-serif;
}
h1, h2, h3, .main-nav, .btn, .footer-title {
  font-family: "Mulish", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
body.menu-open {
  overflow: hidden;
}
.hidden {
  display: none !important;
}
.container {
  width: min(1168px, calc(100% - 56px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(23, 25, 35, 0.06);
  backdrop-filter: blur(12px);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.brand img {
  width: 180px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.main-nav a {
  color: #3d4351;
  transition: color 0.2s ease;
}
.main-nav a:hover, .main-nav a.is-active {
  color: var(--blue);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 25px rgba(40, 72, 184, 0.2);
}
.btn-primary:hover {
  background: var(--blue-dark);
}
.btn-text {
  padding-inline: 0;
  color: #2f3340;
}
:is(.btn-text, .section-link, .service-card a) span {
  transition: transform 0.18s ease;
}
:is(.btn-text:hover, .section-link:hover, .service-card a:hover) span {
  transform: translateX(3px);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  background: rgba(23, 25, 35, 0.42);
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(340px, 88vw);
  height: 100dvh;
  padding: 18px 20px 24px;
  background: #ffffff;
  opacity: 1;
  overflow-y: auto;
  box-shadow: -8px 0 30px rgba(12, 22, 44, 0.18);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}
.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(23, 25, 35, 0.08);
}
.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}
.mobile-menu-inner {
  display: grid;
  gap: 2px;
  padding: 14px 0 0;
}
.mobile-menu-inner a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 25, 35, 0.06);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.mobile-menu-cta {
  width: 100%;
  margin-top: 18px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #3d4351;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(23, 25, 35, 0.5);
}
.section {
  padding: 54px 0 12px;
}
section:last-child {
  padding-bottom: 54px;
}
.section-heading {
  display: block;
  text-align: left;
}
.section-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(1.9rem, 2.8vw, 2.3rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0.07em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 252px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(12, 22, 44, 0.025);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #eef1ff;
}
.service-icon img {
  width: 20px;
  height: 20px;
}
.service-card h3 {
  margin: 16px 0 0;
  font-size: 1.02rem;
  line-height: 1.42;
}
.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.78;
}
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
}
.service-card a span, .btn-text span, .section-link span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.site-footer {
  padding-top: 32px;
  background: #f7f7f7;
  border-top: 1px solid rgba(23, 25, 35, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1fr;
  gap: 30px;
  padding-bottom: 24px;
}
.footer-logo {
  width: 122px;
  margin-bottom: 14px;
}
.footer-grid p, .footer-contact li, .footer-links a {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.footer-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #20232d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.footer-title::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(23, 25, 35, 0.35);
}
.footer-links, .footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-bottom {
  padding: 16px 0 22px;
  border-top: 1px solid rgba(23, 25, 35, 0.08);
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: #6a717d;
  font-size: 12px;
}
.visually-hidden {
  display: none;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .main-nav, .header-cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .services-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .container {
    width: calc(100% - 32px);
  }
  .services-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (hover: none) and (pointer: coarse) {
  :is(a, button, .btn, .service-card a, .section-link, .menu-toggle, .menu-close, input[type="button"], input[type="submit"]) {
    -webkit-tap-highlight-color: transparent;
  }
  :is(a, button, .btn, .service-card a, .section-link, .menu-toggle, .menu-close, input[type="button"], input[type="submit"]):focus:not(:focus-visible), :is(a, button, .btn, .service-card a, .section-link, .menu-toggle, .menu-close, input[type="button"], input[type="submit"]):active {
    outline: none;
    box-shadow: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ======================================== */
/* Homepage Styles (index.html) */
/* ======================================== */
.hero-section {
  position: relative;
  min-height: 500px;
  background: #dbe5f4;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(242, 243, 246, 0.96) 0%, rgba(242, 243, 246, 0.82) 34%, rgba(242, 243, 246, 0.12) 72%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 70px 0 76px;
}
.hero-content h1 {
  max-width: 500px;
  margin: 18px 0 0;
  font-size: clamp(3rem, 4.6vw, 4.1rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.035em;
}
.hero-content h1 span {
  display: block;
  color: var(--blue);
}
.hero-copy {
  max-width: 390px;
  margin: 18px 0 0;
  color: #3f4652;
  font-size: 16px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.about-visual-frame img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
}
.about-copy h2, .projects-header h2, .cta-banner h2 {
  margin: 14px 0 0;
  font-size: clamp(1.9rem, 2.8vw, 2.3rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0.07em;
}
.about-copy > p:last-of-type {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12.75px;
  line-height: 1.9;
}
.stats-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  margin: 24px 0 20px;
  overflow: hidden;
  border: 1px solid rgba(23, 25, 35, 0.06);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.stats-card div {
  padding: 18px 16px;
}
.stats-card div + div {
  border-left: 1px solid rgba(23, 25, 35, 0.08);
}
.stats-card strong {
  display: block;
  color: var(--blue);
  font-size: 1.95rem;
  font-weight: 800;
}
.stats-card span {
  display: block;
  margin-top: 4px;
  color: #555c67;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.projects-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.section-link {
  align-self: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.project-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  overflow: hidden;
  border: 1px solid rgba(23, 25, 35, 0.06);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(12, 22, 44, 0.035);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  margin-bottom: 30px;
}
.project-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.project-card > img, .project-card > .project-thumb img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
}
.project-card > .project-thumb {
  display: block;
  min-height: 320px;
}
.project-body {
  padding: 12px 14px 14px;
}
.project-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  background: #d7f3c8;
  color: #4b7e2c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.project-meta {
  margin: 0;
  color: #666d79;
  font-size: 10.5px;
}
.project-body h3 {
  margin: 8px 0 0;
  font-size: 1.08rem;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.project-body h3 a {
  color: inherit;
  text-decoration: none;
}
.project-body p:last-of-type {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
}
.project-body ul {
  display: grid;
  gap: 4px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: #535966;
  font-size: 11.5px;
}
.project-body li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.project-body li img {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  object-fit: contain;
}
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 38px;
  margin-top: 10px;
  border-radius: 8px;
  background: var(--blue-soft) url("/../../../../wp-content/themes/fabmik/assets/images/visual-breaker.svg") no-repeat right center / contain;
}
.cta-banner h2 {
  max-width: 560px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.65rem, 2.2vw, 2.05rem);
}
@media (max-width: 1024px) {
  .about-grid, .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-banner, .projects-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 760px) {
  .hero-section {
    min-height: 460px;
  }
  .hero-section::after {
    background: linear-gradient(180deg, rgba(242, 243, 246, 0.92) 0%, rgba(242, 243, 246, 0.8) 44%, rgba(242, 243, 246, 0.35) 100%);
  }
  .hero-content {
    padding: 44px 0 62px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .about-grid, .projects-grid, .stats-card, .project-card {
    grid-template-columns: 1fr;
  }
  .project-card > img, .project-card > .project-thumb img {
    min-height: auto !important;
    height: auto !important;
    object-fit: contain;
  }
  .project-card > .project-thumb {
    min-height: auto !important;
    height: auto !important;
  }
  .cta-banner {
    padding: 26px 20px;
    background-size: cover;
  }
  .stats-card div + div {
    border-left: 0;
    border-top: 1px solid rgba(23, 25, 35, 0.08);
  }
}
/* ======================================== */
/* About Page Styles (about.html) */
/* ======================================== */
.about-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e7e9fe 0%, #f6f6f8 100%);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(to right, rgba(114, 122, 141, 0.16) 1px, transparent 1px), linear-gradient(to bottom, rgba(114, 122, 141, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 88px;
}
.about-hero-inner h1 {
  max-width: 520px;
  margin: 16px 0 0;
  font-size: clamp(2.3rem, 4.6vw, 3.35rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.05em;
}
.about-hero-inner > p {
  max-width: 520px;
  margin: 18px 0 0;
  color: #4a505f;
  font-size: 16px;
  line-height: 1.8;
}
.about-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 620px;
  margin-top: 18px;
}
.about-hero-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(31, 53, 144, 0.24);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.6);
  color: #2b3554;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.about-watermark {
  position: absolute;
  top: 90px;
  right: -15px;
  color: #e6e7fc;
  font-family: "Mulish", sans-serif;
  font-size: 266px;
  font-weight: 900;
  letter-spacing: 0.04em;
  pointer-events: none;
  z-index: -1;
}
.about-statband {
  background: #e7e9fe;
}
.about-statband-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 20px 0 22px;
}
.about-statband-grid article {
  text-align: center;
}
.about-statband-grid strong {
  display: block;
  color: #243670;
  font-family: "Mulish", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.about-statband-grid span {
  color: #2f3550;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}
.story-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(1.9rem, 2.8vw, 2.3rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0.07em;
}
.story-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.story-side {
  display: grid;
  gap: 24px;
}
.story-side blockquote {
  margin: 0;
  padding: 8px 0 8px 18px;
  border-left: 2px solid #2d3c78;
  color: #1f2638;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.4;
}
.timeline-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(23, 25, 35, 0.09);
  border-radius: 4px;
  background: #f7f8fb;
}
.timeline-card ul {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.timeline-card li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  align-items: start;
}
.timeline-card strong {
  color: #162f86;
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
}
.timeline-card span {
  color: #596171;
  font-size: 14px;
  line-height: 1.65;
}
.timeline-card .eyebrow {
  margin-bottom: 15px;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.credential-card {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 18px 16px;
  border: 1px solid rgba(23, 25, 35, 0.07);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(12, 22, 44, 0.03);
}
.dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: #0030a0;
  box-shadow: 0 0 0 0 rgba(0, 48, 160, 0.7);
  animation: ping 1.8s infinite;
  flex-shrink: 0;
}
@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 48, 160, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 48, 160, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 48, 160, 0);
  }
}
.credential-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}
.credential-card p {
  margin: 9px 0 0;
  color: #5f6776;
  font-size: 12.5px;
  line-height: 1.75;
}
.certifications-showcase {
  margin-top: 36px;
}
.certifications-showcase h3 {
  margin: 0;
  text-align: center;
  font-family: "Mulish", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}
.certifications-slider {
  position: relative;
  margin-top: 22px;
  padding: 0;
}
.certifications-slider .slick-list {
  padding: 28px 0 !important;
}
.certifications-slider .slick-track {
  display: flex;
  align-items: center;
}
.certifications-slider .slick-slide {
  padding: 0 8px;
  box-sizing: border-box;
}
.cert-slide {
  width: clamp(180px, 22vw, 260px);
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
  opacity: 0.52;
  transform: scale(0.88);
  transition: transform 0.28s ease, opacity 0.28s ease;
  cursor: pointer;
}
.cert-slide img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(23, 25, 35, 0.08);
  border-radius: 4px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 8px 18px rgba(12, 22, 44, 0.08);
}
.certifications-slider .slick-center.cert-slide {
  opacity: 1;
  transform: scale(1);
}
.cert-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.gallery-dots {
  margin-top: 16px;
}
.gallery-dots .slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gallery-dots .slick-dots li {
  margin: 0;
}
.gallery-dots .slick-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #c4c8d8;
  cursor: pointer;
  font-size: 0;
}
.gallery-dots .slick-dots button::before {
  display: none;
}
.gallery-dots .slick-dots .slick-active button {
  background: #1f3f9e;
}
.cert-modal[hidden] {
  display: none;
}
.cert-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.cert-modal-backdrop {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  background: rgba(7, 12, 24, 0.9);
}
.cert-modal-figure {
  position: relative;
  z-index: 1;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.cert-modal-figure img {
  max-width: min(980px, 94vw);
  max-height: 88vh;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.5);
}
.cert-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  width: 41px;
  height: 42px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  cursor: pointer;
  line-height: 1;
  border-radius: 50px;
}
.vision-section {
  margin-top: 22px;
  padding-bottom: 42px;
  background: linear-gradient(180deg, #e7e9fe 0%, #f6f6f8 100%);
}
.vision-heading {
  text-align: center;
}
.vision-heading h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.vision-heading h2 span {
  color: var(--blue);
}
.vision-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 16px;
  margin: 30px 0;
}
.vision-grid article {
  padding: 24px;
  border: 1px solid #1e3495;
  border-radius: 7px;
  max-width: 350px;
}
.vision-grid h3 {
  margin: 0;
  color: #2848b8;
  font-size: 1rem;
}
.vision-grid p {
  margin: 10px 0 0;
  color: #313850;
  font-size: 12.5px;
  line-height: 1.8;
}
.vision-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}
@media (max-width: 1024px) {
  .about-statband-grid, .story-grid, .credentials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-statband-grid article {
    margin: 10px;
  }
  .about-watermark {
    top: auto;
    bottom: -50px;
    font-size: 200px;
    right: -50px;
  }
  .vision-grid {
    flex-wrap: wrap;
  }
  .certifications-slider {
    padding: 0;
  }
  .cert-slide {
    width: clamp(180px, 34vw, 250px);
  }
}
@media (max-width: 760px) {
  .certifications-slider {
    padding: 0;
  }
  .certifications-slider .slick-list {
    padding: 22px 0 !important;
  }
  .certifications-slider .slick-slide {
    padding: 0 6px;
  }
  .cert-slide {
    width: min(78vw, 320px);
    opacity: 0.34;
    transform: scale(0.9);
  }
  .certifications-slider .slick-current.slick-center.cert-slide {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 760px) {
  .about-watermark {
    font-size: 155px;
  }
  .cert-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 21px;
  }
  .about-hero-inner {
    padding: 52px 0 120px;
  }
  .about-hero-inner h1 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }
  .about-statband-grid, .story-grid, .credentials-grid, .certifications-grid, .timeline-card li {
    grid-template-columns: 1fr;
  }
  .story-side blockquote {
    font-size: 1.25rem;
  }
  .vision-grid {
    margin: 10px 0;
  }
}
/* ======================================== */
/* Services Page Styles (services.html)     */
/* ======================================== */
/* --- Hero --- */
.services-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e7e9fe 0%, #f6f6f8 100%);
}
.services-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(to right, rgba(114, 122, 141, 0.16) 1px, transparent 1px), linear-gradient(to bottom, rgba(114, 122, 141, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
}
.services-hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 88px;
}
.services-hero-inner h1 {
  max-width: 560px;
  margin: 16px 0 0;
  font-size: clamp(2.3rem, 4.6vw, 3.35rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.05em;
}
.services-hero-inner > p {
  max-width: 480px;
  margin: 18px 0 0;
  color: #4a505f;
  font-size: 15px;
  line-height: 1.8;
}
/* --- Services List --- */
.services-list-section {
  padding-bottom: 0;
}
/* --- CTA Banner --- */
.services-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 38px;
  border-radius: 8px;
  background: var(--blue-soft) url("/../../../../wp-content/themes/fabmik/assets/images/visual-breaker.svg") no-repeat right center / contain;
}
.services-cta-banner h2 {
  max-width: 560px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.65rem, 2.2vw, 2.05rem);
  font-weight: 900;
  letter-spacing: 0.07em;
}
/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 760px) {
  .services-hero-inner {
    padding: 44px 0 56px;
  }
  .services-hero-inner h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-cta-banner {
    padding: 26px 20px;
    background-size: cover;
  }
}
/* ======================================== */
/* Projects Page Styles (projects.html) */
/* ======================================== */
.projects-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e4e6f4 0%, #f4f4f6 86%);
}
.projects-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.64;
  background-image: linear-gradient(to right, rgba(145, 151, 168, 0.2) 1px, transparent 1px), linear-gradient(to bottom, rgba(145, 151, 168, 0.2) 1px, transparent 1px);
  background-size: 76px 76px;
}
.projects-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 52px 0 36px;
}
.projects-title-wrap h1 {
  margin: 14px 0 0;
  font-size: clamp(2.4rem, 4.9vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: 0.08em;
  font-weight: 900;
}
.project-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 22px;
  min-width: 410px;
}
.project-kpis article {
  display: grid;
  gap: 3px;
}
.project-kpis strong {
  color: #203aa0;
  font-family: "Mulish", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  letter-spacing: 0.02em;
}
.project-kpis span {
  color: #3f4350;
  font-family: "Mulish", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
}
.project-table-section {
  padding: 12px 0 30px;
}
.project-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.project-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.filter-tab {
  border: 1px solid rgba(28, 51, 137, 0.42);
  border-radius: 2px;
  background: #fff;
  color: #1f2f64;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 8px 11px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter-tab.is-active, .filter-tab:hover {
  background: #223892;
  border-color: #223892;
  color: #fff;
}
.search-field {
  min-width: 240px;
}
.search-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(23, 25, 35, 0.2);
  border-radius: 3px;
  background: #fff;
  color: #2a3040;
  font-size: 12px;
}
.search-field input:focus {
  outline: 2px solid rgba(40, 72, 184, 0.2);
  border-color: rgba(40, 72, 184, 0.6);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.project-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(28, 41, 87, 0.16);
  border-radius: 6px;
  background: #fff;
}
.project-table {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
}
.project-table thead th {
  padding: 12px 14px;
  background: #253894;
  color: #fff;
  text-align: left;
  font-family: "Mulish", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.project-table tbody td {
  padding: 11px 10px;
  border-top: 1px solid rgba(23, 25, 35, 0.08);
  color: #3f4657;
  font-size: 11px;
  line-height: 1.45;
  vertical-align: top;
}
.project-table tbody tr:nth-child(even) {
  background: #f8f9fc;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  padding: 3px 7px;
  border-radius: 3px;
  border: 1px solid #8ac36b;
  background: #d9f5c8;
  color: #3d7522;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-table-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 9px;
}
.page-size-label {
  color: #667080;
  font-size: 11px;
}
#page-size {
  width: 56px;
  height: 26px;
  border: 1px solid rgba(23, 25, 35, 0.2);
  border-radius: 3px;
  color: #2f3745;
  font-size: 11px;
  background: #fff;
}
.paging-label {
  margin: 0;
  min-width: 68px;
  color: #5c6576;
  font-size: 11px;
  text-align: right;
}
.paging-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.paging-controls button {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(23, 25, 35, 0.18);
  border-radius: 3px;
  background: #fff;
  color: #1f2e65;
  cursor: pointer;
}
.paging-controls button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.featured-projects-section {
  padding-top: 38px;
  padding-bottom: 56px;
}
.featured-projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}
.featured-project-card {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 12px;
  align-items: stretch;
  background: transparent;
  margin-bottom: 30px;
}
.featured-project-card > img, .featured-project-card > .project-thumb img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 6px;
  object-fit: cover;
}
.featured-project-card > .project-thumb {
  display: block;
  max-height: 320px;
}
.featured-copy {
  display: grid;
  align-content: center;
}
.featured-meta {
  margin: 0;
  color: #4a5364;
  font-size: 10.5px;
}
.featured-copy h3 {
  margin: 8px 0 0;
  font-size: 1.08rem;
  font-family: "Mulish", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.featured-copy h3 a {
  color: inherit;
  text-decoration: none;
}
.featured-copy > p:last-of-type {
  margin: 10px 0 0;
  color: #596272;
  font-size: 12.5px;
  line-height: 1.7;
}
.featured-copy ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 5px;
}
.featured-copy li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4d5667;
  font-size: 11px;
}
.featured-copy li img {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}
.single-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(40, 72, 184, 0.14), transparent 34%), linear-gradient(180deg, #f5f7fd 0%, #eff1f6 100%);
}
.single-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 53, 144, 0.24), transparent);
}
.single-hero .archive-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 72px 0 48px;
}
.single-hero .entry-card {
  border-radius: 8px;
}
.single-hero .entry-title {
  margin: 0;
  font-size: clamp(2rem, 3.9vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}
.single-hero .archive-copy {
  max-width: 62ch;
  margin: 0;
  color: #4d5667;
  font-size: 1rem;
  line-height: 1.8;
}
.single-hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.single-hero-details span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(31, 53, 144, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #203058;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(21, 32, 62, 0.06);
}
.single-content-shell {
  padding: 28px 0 72px;
}
.single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}
.single-entry-card, .project-facts {
  border: 1px solid rgba(28, 41, 87, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 50px rgba(16, 28, 57, 0.08);
}
.single-entry-card {
  overflow: hidden;
}
.single-project-media {
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, #d8def2 0%, #eef1f8 100%);
}
.single-feature-image, .single-project-placeholder {
  width: 100%;
  height: 100%;
}
.single-feature-image {
  min-height: 420px;
  object-fit: cover;
}
.single-project-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  gap: 14px;
  padding: 32px;
  background: linear-gradient(160deg, rgba(31, 53, 144, 0.08), rgba(255, 255, 255, 0.22)), radial-gradient(circle at top, rgba(40, 72, 184, 0.18), transparent 52%);
  text-align: center;
}
.single-project-media.is-placeholder .single-project-placeholder {
  display: grid;
}
.single-project-placeholder-logo {
  width: min(190px, 54%);
}
.single-project-placeholder p {
  max-width: 20ch;
  margin: 0;
  color: #32405f;
  font-family: "Mulish", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.single-entry-content {
  padding: 36px 38px 40px;
}
.single-copy-intro {
  display: grid;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(28, 41, 87, 0.08);
}
.single-copy-intro .eyebrow, .project-facts .eyebrow {
  margin: 0;
}
.single-copy-intro h2, .project-facts h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.1;
}
.single-copy-block {
  padding-top: 24px;
  color: #4a5364;
  font-size: 15px;
  line-height: 1.85;
}
.single-copy-block > :first-child {
  margin-top: 0;
}
.single-copy-block > :last-child {
  margin-bottom: 0;
}
.single-copy-block h2 {
  color: #000;
}
.single-project-gallery {
  margin-top: 34px;
}
.single-gallery-intro {
  margin-bottom: 18px;
}
.project-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.project-masonry-item {
  width: 100%;
  display: block;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 0px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 14px 30px rgba(15, 26, 51, 0.12);
}
.project-masonry-item img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.project-masonry-item:hover img {
  transform: scale(1.04);
}
.project-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 22px;
}
.project-gallery-modal[hidden] {
  display: none;
}
.project-gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 12, 26, 0.86);
}
.project-gallery-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 94vw);
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 16px;
}
.project-gallery-modal-figure {
  margin: 0;
  max-height: min(85dvh, 900px);
}
.project-gallery-modal-figure img {
  width: 100%;
  max-height: calc(min(85dvh, 900px) - 38px);
  border-radius: 0px;
  object-fit: contain;
}
.project-gallery-modal-caption {
  margin-top: 10px;
  color: #f3f5ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}
.project-gallery-control, .project-gallery-close {
  border: 0;
  color: #fff;
  cursor: pointer;
}
.project-gallery-control {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 34px;
  line-height: 1;
}
.project-gallery-close {
  position: absolute;
  top: -12px;
  right: -6px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
}
body.gallery-modal-open {
  overflow: hidden;
}
.project-facts {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 20px;
  padding: 30px;
}
.project-facts-summary {
  margin: -6px 0 0;
  color: #5b6475;
  font-size: 13px;
  line-height: 1.75;
}
.facts-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.facts-list li {
  display: grid;
  gap: 5px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(28, 41, 87, 0.08);
}
.facts-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.facts-list strong {
  color: #1f2f64;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.facts-list span {
  color: #3f4657;
  font-size: 15px;
  line-height: 1.6;
}
.single-project-actions {
  display: grid;
  gap: 12px;
}
.single-project-actions .btn-primary {
  width: 100%;
}
.single-back-link {
  justify-content: flex-start;
}
@media (max-width: 1160px) {
  .projects-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 42px;
    gap: 18px;
  }
  .project-kpis {
    min-width: 0;
  }
  .single-grid {
    grid-template-columns: 1fr;
  }
  .project-facts {
    position: static;
  }
}
@media (max-width: 960px) {
  .project-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-field {
    width: 100%;
    min-width: 0;
  }
  .featured-projects-grid, .featured-project-card {
    grid-template-columns: 1fr;
  }
  .featured-copy h3 {
    font-size: 1.5rem;
  }
  .single-project-media, .single-feature-image {
    min-height: 340px;
  }
  .single-entry-content, .project-facts {
    padding: 28px;
  }
  .project-masonry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .single-entry-content:blank, .single-entry-content:empty {
    display: none !important;
  }
}
@media (max-width: 760px) {
  .projects-grid-bg {
    background-size: 52px 52px;
  }
  .projects-hero-inner {
    padding: 34px 0 24px;
  }
  .project-kpis {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .project-kpis article:last-child {
    grid-column: span 2;
  }
  .project-table-footer {
    justify-content: space-between;
  }
  .featured-project-card > img, .featured-project-card > .project-thumb img {
    max-height: 320px;
  }
  .single-hero .archive-hero-inner {
    padding: 48px 0 30px;
  }
  .single-content-shell {
    padding-bottom: 48px;
  }
  .single-project-media, .single-feature-image {
    min-height: 260px;
  }
  .single-entry-content, .project-facts {
    padding: 22px;
  }
  .project-masonry-grid {
    grid-template-columns: 1fr;
  }
  .project-gallery-modal {
    padding: 14px;
  }
  .project-gallery-modal-dialog {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .project-gallery-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
  .project-gallery-control.is-prev {
    left: 8px;
  }
  .project-gallery-control.is-next {
    right: 8px;
  }
  .project-gallery-close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
}
/* ======================================== */
/* Contact Page Styles (contact.html) */
/* ======================================== */
.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(180deg, #dde0f1 0%, #dfe2f0 100%);
}
.contact-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  background-image: linear-gradient(to right, rgba(151, 156, 172, 0.22) 1px, transparent 1px), linear-gradient(to bottom, rgba(151, 156, 172, 0.22) 1px, transparent 1px);
  background-size: 76px 76px;
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  padding: 74px 0 220px;
}
.contact-hero-inner h1 {
  margin: 14px 0 0;
  font-size: clamp(2.8rem, 5.7vw, 4.05rem);
  line-height: 0.98;
  letter-spacing: 0.07em;
  font-weight: 900;
}
.contact-main-section {
  position: relative;
  z-index: 2;
  margin-top: -180px;
  padding: 0 0 54px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.contact-card {
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #f4f5f7;
  box-shadow: 0 8px 22px rgba(12, 22, 44, 0.05);
}
.contact-form-card {
  padding: 20px 18px;
}
.contact-form, .wpcf7-form {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}
.form-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.contact-form input:not([type="submit"]):not([type="button"]), .contact-form textarea, .wpcf7-form input:not([type="submit"]):not([type="button"]), .wpcf7-form textarea {
  width: 100%;
  border: 1px solid #ced2db;
  border-radius: 4px;
  background: #f6f7f9;
  color: #2f3546;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  padding: 12px 12px;
}
.contact-form textarea, .wpcf7-form textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder, .wpcf7-form input:not([type="submit"]):not([type="button"])::placeholder, .wpcf7-form textarea::placeholder {
  color: #444b5d;
}
.contact-form input:focus, .contact-form textarea:focus, .wpcf7-form input:not([type="submit"]):not([type="button"]):focus, .wpcf7-form textarea:focus {
  outline: 2px solid rgba(40, 72, 184, 0.2);
  border-color: rgba(40, 72, 184, 0.6);
}
.contact-submit {
  width: 100%;
  min-height: 40px;
  margin-top: 2px;
  border-radius: 7px;
}
.wpcf7-form input.wpcf7-submit.contact-submit {
  cursor: pointer;
  appearance: none;
  border: 1px solid transparent;
}
span.wpcf7-not-valid-tip {
  font-size: 12px;
  margin: 5px 0px;
}
.contact-map-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 16px 16px 18px;
}
.map-frame {
  overflow: hidden;
  border: 1px solid rgba(23, 25, 35, 0.06);
  border-radius: 2px;
  background: #fff;
}
.map-frame iframe {
  width: 100%;
  min-height: 324px;
  border: 0;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-title {
  margin: 0;
  color: #2c313f;
  font-family: "Mulish", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.contact-info-grid p {
  margin: 0;
  color: #676f7e;
  font-size: 12px;
  line-height: 1.6;
}
.contact-info-grid .contact-title + p {
  margin-top: 12px;
}
@media (max-width: 1040px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-main-section {
    margin-top: -220px;
  }
}
@media (max-width: 760px) {
  .contact-hero {
    min-height: 300px;
  }
  .contact-grid-bg {
    background-size: 52px 52px;
  }
  .contact-hero-inner {
    padding: 46px 0 120px;
  }
  .contact-hero-inner h1 {
    font-size: clamp(2.1rem, 10vw, 2.6rem);
  }
  .contact-main-section {
    margin-top: -145px;
  }
  .form-two-col, .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .map-frame iframe {
    min-height: 256px;
  }
}
/* ======================================== */
/* Consultancy Service Detail Page           */
/* ======================================== */
.con-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e7e9fe 0%, #f6f6f8 100%);
}
.con-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(to right, rgba(114, 122, 141, 0.16) 1px, transparent 1px), linear-gradient(to bottom, rgba(114, 122, 141, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
}
.con-hero-inner {
  position: relative;
  z-index: 1;
  padding: 52px 0 80px;
}
.con-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d3140;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.con-back-link span {
  font-size: 13px;
  line-height: 1;
}
.con-hero-inner h1 {
  max-width: 740px;
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.05em;
}
.con-hero-inner > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #4d5363;
  font-size: 14px;
  line-height: 1.85;
}
.con-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.con-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(40, 72, 184, 0.34);
  border-radius: 4px;
  color: #2b3c80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.64);
}
/* ---- Overview ---- */
.con-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.9fr;
  gap: 26px;
}
.con-overview-copy h2 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
}
.con-overview-copy p {
  margin: 14px 0 0;
  color: #4f5666;
  font-size: 13px;
  line-height: 1.9;
}
.con-highlights {
  align-self: center;
  padding: 24px 22px;
  border: 1px solid rgba(23, 25, 35, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}
.con-highlights .eyebrow {
  margin-bottom: 14px;
}
.con-highlights ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.con-highlights li {
  position: relative;
  padding-left: 24px;
  color: #4a5160;
  font-size: 13px;
  line-height: 1.55;
}
.con-highlights li::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2724%27%20height%3D%2724%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M23%2012L20.56%209.22004L20.9%205.54004L17.29%204.72004L15.4%201.54004L12%203.00004L8.6%201.54004L6.71%204.72004L3.1%205.53004L3.44%209.21004L1%2012L3.44%2014.78L3.1%2018.47L6.71%2019.29L8.6%2022.47L12%2021L15.4%2022.46L17.29%2019.28L20.9%2018.46L20.56%2014.78L23%2012ZM10%2017L6%2013L7.41%2011.59L10%2014.17L16.59%207.58004L18%209.00004L10%2017Z%27%20fill%3D%27%231E3495%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
/* ---- Key Activities ---- */
.con-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.con-activity-card {
  min-height: 192px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.con-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e9edff;
  color: #3651bd;
  font-family: "Mulish", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.con-activity-card h3 {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}
.con-activity-card p {
  margin: 8px 0 0;
  color: #575d6c;
  font-size: 12px;
  line-height: 1.75;
}
/* ---- Why FABMIK ---- */
.con-trust-section {
  margin-top: 28px;
  padding: 56px 0;
  background: #e9ebf3;
}
.con-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.con-trust-card {
  min-height: 220px;
  padding: 25px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.con-trust-card strong {
  display: block;
  margin-bottom: 15px;
  color: #2848b8;
  font-family: "Mulish", sans-serif;
  font-size: 2.45rem;
  line-height: 1;
}
.con-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 15px;
  color: #2848b8;
}
.con-trust-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}
.con-trust-card h3 {
  margin: 0;
  font-size: 1.13rem;
  line-height: 1.38;
}
.con-trust-card p {
  margin: 10px 0 0;
  color: #595f6d;
  font-size: 12px;
  line-height: 1.8;
}
/* ---- CTA ---- */
.con-cta-section {
  padding-top: 54px;
}
.con-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 46px 40px;
  border-radius: 8px;
  background: #dfe4ff;
}
.con-cta-banner::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 20px;
  width: 260px;
  height: 240px;
  background: url("/../../../../wp-content/themes/fabmik/assets/icons/briefcase-account-outline.svg") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.con-cta-banner h2 {
  max-width: 560px;
  margin: 0;
  color: #1e389f;
  font-size: clamp(1.9rem, 2.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.08em;
}
.con-cta-banner p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #4f5874;
  font-size: 14px;
  line-height: 1.8;
}
.con-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.con-btn-outline {
  border-color: #3550bb;
  color: #3550bb;
  background: transparent;
}
@media (max-width: 1080px) {
  .con-overview-grid {
    grid-template-columns: 1fr;
  }
  .con-highlights {
    max-width: 760px;
  }
}
@media (max-width: 920px) {
  .con-activity-grid, .con-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .con-cta-banner::after {
    width: 210px;
    height: 190px;
  }
}
@media (max-width: 640px) {
  .con-hero-inner {
    padding: 42px 0 58px;
  }
  .con-hero-inner h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    letter-spacing: 0.04em;
  }
  .con-overview-copy h2, .con-cta-banner h2 {
    letter-spacing: 0.04em;
  }
  .con-activity-grid, .con-trust-grid {
    grid-template-columns: 1fr;
  }
  .con-cta-banner {
    padding: 34px 24px;
  }
  .con-cta-banner::after {
    display: none;
  }
}
/* ======================================== */
/* Engineering Design and Estimate Service   */
/* ======================================== */
.ede-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e7e9fe 0%, #f6f6f8 100%);
}
.ede-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(to right, rgba(114, 122, 141, 0.16) 1px, transparent 1px), linear-gradient(to bottom, rgba(114, 122, 141, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
}
.ede-hero-inner {
  position: relative;
  z-index: 1;
  padding: 52px 0 80px;
}
.ede-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d3140;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.ede-back-link span {
  font-size: 13px;
  line-height: 1;
}
.ede-hero-inner h1 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.05em;
}
.ede-hero-inner > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #4d5363;
  font-size: 14px;
  line-height: 1.85;
}
.ede-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.ede-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(40, 72, 184, 0.34);
  border-radius: 4px;
  color: #2b3c80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.64);
}
/* ---- Overview ---- */
.ede-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.9fr;
  gap: 26px;
}
.ede-overview-copy h2 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
}
.ede-overview-copy p {
  margin: 14px 0 0;
  color: #4f5666;
  font-size: 13px;
  line-height: 1.9;
}
.ede-highlights {
  align-self: center;
  padding: 24px 22px;
  border: 1px solid rgba(23, 25, 35, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}
.ede-highlights .eyebrow {
  margin-bottom: 14px;
}
.ede-highlights ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ede-highlights li {
  position: relative;
  padding-left: 24px;
  color: #4a5160;
  font-size: 13px;
  line-height: 1.55;
}
.ede-highlights li::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2724%27%20height%3D%2724%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M23%2012L20.56%209.22004L20.9%205.54004L17.29%204.72004L15.4%201.54004L12%203.00004L8.6%201.54004L6.71%204.72004L3.1%205.53004L3.44%209.21004L1%2012L3.44%2014.78L3.1%2018.47L6.71%2019.29L8.6%2022.47L12%2021L15.4%2022.46L17.29%2019.28L20.9%2018.46L20.56%2014.78L23%2012ZM10%2017L6%2013L7.41%2011.59L10%2014.17L16.59%207.58004L18%209.00004L10%2017Z%27%20fill%3D%27%231E3495%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
/* ---- Key Activities ---- */
.ede-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.ede-activity-card {
  min-height: 192px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.ede-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e9edff;
  color: #3651bd;
  font-family: "Mulish", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.ede-activity-card h3 {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}
.ede-activity-card p {
  margin: 8px 0 0;
  color: #575d6c;
  font-size: 12px;
  line-height: 1.75;
}
/* ---- Why FABMIK ---- */
.ede-trust-section {
  margin-top: 28px;
  padding: 56px 0;
  background: #e9ebf3;
}
.ede-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.ede-trust-card {
  min-height: 220px;
  padding: 25px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.ede-trust-card strong {
  display: block;
  margin-bottom: 15px;
  color: #2848b8;
  font-family: "Mulish", sans-serif;
  font-size: 2.45rem;
  line-height: 1;
}
.ede-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 15px;
  color: #2848b8;
}
.ede-trust-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}
.ede-trust-card h3 {
  margin: 0;
  font-size: 1.13rem;
  line-height: 1.38;
}
.ede-trust-card p {
  margin: 10px 0 0;
  color: #595f6d;
  font-size: 12px;
  line-height: 1.8;
}
/* ---- CTA ---- */
.ede-cta-section {
  padding-top: 54px;
}
.ede-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 46px 40px;
  border-radius: 8px;
  background: #dfe4ff;
}
.ede-cta-banner::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 20px;
  width: 240px;
  height: 220px;
  background: url("/../../../../wp-content/themes/fabmik/assets/icons/account-hard-hat-outline.svg") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.ede-cta-banner h2 {
  max-width: 560px;
  margin: 0;
  color: #1e389f;
  font-size: clamp(1.9rem, 2.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.08em;
}
.ede-cta-banner p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #4f5874;
  font-size: 14px;
  line-height: 1.8;
}
.ede-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.ede-btn-outline {
  border-color: #3550bb;
  color: #3550bb;
  background: transparent;
}
@media (max-width: 1080px) {
  .ede-overview-grid {
    grid-template-columns: 1fr;
  }
  .ede-highlights {
    max-width: 760px;
  }
}
@media (max-width: 920px) {
  .ede-activity-grid, .ede-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ede-cta-banner::after {
    width: 200px;
    height: 180px;
  }
}
@media (max-width: 640px) {
  .ede-hero-inner {
    padding: 42px 0 58px;
  }
  .ede-hero-inner h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    letter-spacing: 0.04em;
  }
  .ede-overview-copy h2, .ede-cta-banner h2 {
    letter-spacing: 0.04em;
  }
  .ede-activity-grid, .ede-trust-grid {
    grid-template-columns: 1fr;
  }
  .ede-cta-banner {
    padding: 34px 24px;
  }
  .ede-cta-banner::after {
    display: none;
  }
}
/* ======================================== */
/* Equipment Sales Service Detail Page       */
/* ======================================== */
.eqs-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e7e9fe 0%, #f6f6f8 100%);
}
.eqs-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(to right, rgba(114, 122, 141, 0.16) 1px, transparent 1px), linear-gradient(to bottom, rgba(114, 122, 141, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
}
.eqs-hero-inner {
  position: relative;
  z-index: 1;
  padding: 52px 0 80px;
}
.eqs-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d3140;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.eqs-back-link span {
  font-size: 13px;
  line-height: 1;
}
.eqs-hero-inner h1 {
  max-width: 740px;
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.05em;
}
.eqs-hero-inner > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #4d5363;
  font-size: 14px;
  line-height: 1.85;
}
.eqs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.eqs-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(40, 72, 184, 0.34);
  border-radius: 4px;
  color: #2b3c80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.64);
}
/* ---- Overview ---- */
.eqs-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.9fr;
  gap: 26px;
}
.eqs-overview-copy h2 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
}
.eqs-overview-copy p {
  margin: 14px 0 0;
  color: #4f5666;
  font-size: 13px;
  line-height: 1.9;
}
.eqs-highlights {
  align-self: center;
  padding: 24px 22px;
  border: 1px solid rgba(23, 25, 35, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}
.eqs-highlights .eyebrow {
  margin-bottom: 14px;
}
.eqs-highlights ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.eqs-highlights li {
  position: relative;
  padding-left: 24px;
  color: #4a5160;
  font-size: 13px;
  line-height: 1.55;
}
.eqs-highlights li::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2724%27%20height%3D%2724%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M23%2012L20.56%209.22004L20.9%205.54004L17.29%204.72004L15.4%201.54004L12%203.00004L8.6%201.54004L6.71%204.72004L3.1%205.53004L3.44%209.21004L1%2012L3.44%2014.78L3.1%2018.47L6.71%2019.29L8.6%2022.47L12%2021L15.4%2022.46L17.29%2019.28L20.9%2018.46L20.56%2014.78L23%2012ZM10%2017L6%2013L7.41%2011.59L10%2014.17L16.59%207.58004L18%209.00004L10%2017Z%27%20fill%3D%27%231E3495%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
/* ---- Key Activities ---- */
.eqs-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.eqs-activity-card {
  min-height: 192px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.eqs-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e9edff;
  color: #3651bd;
  font-family: "Mulish", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.eqs-activity-card h3 {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}
.eqs-activity-card p {
  margin: 8px 0 0;
  color: #575d6c;
  font-size: 12px;
  line-height: 1.75;
}
/* ---- Why FABMIK ---- */
.eqs-trust-section {
  margin-top: 28px;
  padding: 56px 0;
  background: #e9ebf3;
}
.eqs-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.eqs-trust-card {
  min-height: 220px;
  padding: 25px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.eqs-trust-card strong {
  display: block;
  margin-bottom: 15px;
  color: #2848b8;
  font-family: "Mulish", sans-serif;
  font-size: 2.45rem;
  line-height: 1;
}
.eqs-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 15px;
  color: #2848b8;
}
.eqs-trust-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}
.eqs-trust-card h3 {
  margin: 0;
  font-size: 1.13rem;
  line-height: 1.38;
}
.eqs-trust-card p {
  margin: 10px 0 0;
  color: #595f6d;
  font-size: 12px;
  line-height: 1.8;
}
/* ---- CTA ---- */
.eqs-cta-section {
  padding-top: 54px;
}
.eqs-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 46px 40px;
  border-radius: 8px;
  background: #dfe4ff;
}
.eqs-cta-banner::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 24px;
  width: 250px;
  height: 230px;
  background: url("/../../../../wp-content/themes/fabmik/assets/icons/crane.svg") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.eqs-cta-banner h2 {
  max-width: 560px;
  margin: 0;
  color: #1e389f;
  font-size: clamp(1.9rem, 2.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.08em;
}
.eqs-cta-banner p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #4f5874;
  font-size: 14px;
  line-height: 1.8;
}
.eqs-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.eqs-btn-outline {
  border-color: #3550bb;
  color: #3550bb;
  background: transparent;
}
@media (max-width: 1080px) {
  .eqs-overview-grid {
    grid-template-columns: 1fr;
  }
  .eqs-highlights {
    max-width: 760px;
  }
}
@media (max-width: 920px) {
  .eqs-activity-grid, .eqs-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .eqs-cta-banner::after {
    width: 210px;
    height: 190px;
  }
}
@media (max-width: 640px) {
  .eqs-hero-inner {
    padding: 42px 0 58px;
  }
  .eqs-hero-inner h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    letter-spacing: 0.04em;
  }
  .eqs-overview-copy h2, .eqs-cta-banner h2 {
    letter-spacing: 0.04em;
  }
  .eqs-activity-grid, .eqs-trust-grid {
    grid-template-columns: 1fr;
  }
  .eqs-cta-banner {
    padding: 34px 24px;
  }
  .eqs-cta-banner::after {
    display: none;
  }
}
/* ======================================== */
/* Maritime Vessel and Equipment Service     */
/* ======================================== */
.mve-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e7e9fe 0%, #f6f6f8 100%);
}
.mve-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(to right, rgba(114, 122, 141, 0.16) 1px, transparent 1px), linear-gradient(to bottom, rgba(114, 122, 141, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
}
.mve-hero-inner {
  position: relative;
  z-index: 1;
  padding: 52px 0 80px;
}
.mve-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d3140;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.mve-back-link span {
  font-size: 13px;
  line-height: 1;
}
.mve-hero-inner h1 {
  max-width: 740px;
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.05em;
}
.mve-hero-inner > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #4d5363;
  font-size: 14px;
  line-height: 1.85;
}
.mve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.mve-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(40, 72, 184, 0.34);
  border-radius: 4px;
  color: #2b3c80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.64);
}
/* ---- Overview ---- */
.mve-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.9fr;
  gap: 26px;
}
.mve-overview-copy h2 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
}
.mve-overview-copy p {
  margin: 14px 0 0;
  color: #4f5666;
  font-size: 13px;
  line-height: 1.9;
}
.mve-highlights {
  align-self: center;
  padding: 24px 22px;
  border: 1px solid rgba(23, 25, 35, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}
.mve-highlights .eyebrow {
  margin-bottom: 14px;
}
.mve-highlights ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mve-highlights li {
  position: relative;
  padding-left: 24px;
  color: #4a5160;
  font-size: 13px;
  line-height: 1.55;
}
.mve-highlights li::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2724%27%20height%3D%2724%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M23%2012L20.56%209.22004L20.9%205.54004L17.29%204.72004L15.4%201.54004L12%203.00004L8.6%201.54004L6.71%204.72004L3.1%205.53004L3.44%209.21004L1%2012L3.44%2014.78L3.1%2018.47L6.71%2019.29L8.6%2022.47L12%2021L15.4%2022.46L17.29%2019.28L20.9%2018.46L20.56%2014.78L23%2012ZM10%2017L6%2013L7.41%2011.59L10%2014.17L16.59%207.58004L18%209.00004L10%2017Z%27%20fill%3D%27%231E3495%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
/* ---- Key Activities ---- */
.mve-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.mve-activity-card {
  min-height: 192px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.mve-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e9edff;
  color: #3651bd;
  font-family: "Mulish", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.mve-activity-card h3 {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}
.mve-activity-card p {
  margin: 8px 0 0;
  color: #575d6c;
  font-size: 12px;
  line-height: 1.75;
}
/* ---- Why FABMIK ---- */
.mve-trust-section {
  margin-top: 28px;
  padding: 56px 0;
  background: #e9ebf3;
}
.mve-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.mve-trust-card {
  min-height: 220px;
  padding: 25px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.mve-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 15px;
  color: #2848b8;
}
.mve-trust-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}
.mve-trust-card h3 {
  margin: 0;
  font-size: 1.13rem;
  line-height: 1.38;
}
.mve-trust-card p {
  margin: 10px 0 0;
  color: #595f6d;
  font-size: 12px;
  line-height: 1.8;
}
/* ---- CTA ---- */
.mve-cta-section {
  padding-top: 54px;
}
.mve-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 46px 40px;
  border-radius: 8px;
  background: #dfe4ff;
}
.mve-cta-banner::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 20px;
  width: 260px;
  height: 240px;
  background: url("/../../../../wp-content/themes/fabmik/assets/icons/ship-wheel.svg") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.mve-cta-banner h2 {
  max-width: 540px;
  margin: 0;
  color: #1e389f;
  font-size: clamp(1.9rem, 2.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.08em;
}
.mve-cta-banner p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #4f5874;
  font-size: 14px;
  line-height: 1.8;
}
.mve-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.mve-btn-outline {
  border-color: #3550bb;
  color: #3550bb;
  background: transparent;
}
@media (max-width: 1080px) {
  .mve-overview-grid {
    grid-template-columns: 1fr;
  }
  .mve-highlights {
    max-width: 760px;
  }
}
@media (max-width: 920px) {
  .mve-activity-grid, .mve-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mve-cta-banner::after {
    width: 210px;
    height: 190px;
  }
}
@media (max-width: 640px) {
  .mve-hero-inner {
    padding: 42px 0 58px;
  }
  .mve-hero-inner h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    letter-spacing: 0.04em;
  }
  .mve-overview-copy h2, .mve-cta-banner h2 {
    letter-spacing: 0.04em;
  }
  .mve-activity-grid, .mve-trust-grid {
    grid-template-columns: 1fr;
  }
  .mve-cta-banner {
    padding: 34px 24px;
  }
  .mve-cta-banner::after {
    display: none;
  }
}
/* ======================================== */
/* Port Development Service Detail Page      */
/* ======================================== */
.pd-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e7e9fe 0%, #f6f6f8 100%);
}
.pd-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(to right, rgba(114, 122, 141, 0.16) 1px, transparent 1px), linear-gradient(to bottom, rgba(114, 122, 141, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
}
.pd-hero-inner {
  position: relative;
  z-index: 1;
  padding: 52px 0 80px;
}
.pd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d3140;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.pd-back-link span {
  font-size: 13px;
  line-height: 1;
}
.pd-hero-inner h1 {
  max-width: 740px;
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.05em;
}
.pd-hero-inner > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #4d5363;
  font-size: 14px;
  line-height: 1.85;
}
.pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pd-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(40, 72, 184, 0.34);
  border-radius: 4px;
  color: #2b3c80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.64);
}
/* ---- Overview ---- */
.pd-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.9fr;
  gap: 26px;
}
.pd-overview-copy h2 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
}
.pd-overview-copy p {
  margin: 14px 0 0;
  color: #4f5666;
  font-size: 13px;
  line-height: 1.9;
}
.pd-highlights {
  align-self: center;
  padding: 24px 22px;
  border: 1px solid rgba(23, 25, 35, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}
.pd-highlights .eyebrow {
  margin-bottom: 14px;
}
.pd-highlights ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pd-highlights li {
  position: relative;
  padding-left: 24px;
  color: #4a5160;
  font-size: 13px;
  line-height: 1.55;
}
.pd-highlights li::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2724%27%20height%3D%2724%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M23%2012L20.56%209.22004L20.9%205.54004L17.29%204.72004L15.4%201.54004L12%203.00004L8.6%201.54004L6.71%204.72004L3.1%205.53004L3.44%209.21004L1%2012L3.44%2014.78L3.1%2018.47L6.71%2019.29L8.6%2022.47L12%2021L15.4%2022.46L17.29%2019.28L20.9%2018.46L20.56%2014.78L23%2012ZM10%2017L6%2013L7.41%2011.59L10%2014.17L16.59%207.58004L18%209.00004L10%2017Z%27%20fill%3D%27%231E3495%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
/* ---- Key Activities ---- */
.pd-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.pd-activity-card {
  min-height: 192px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.pd-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e9edff;
  color: #3651bd;
  font-family: "Mulish", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.pd-activity-card h3 {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}
.pd-activity-card p {
  margin: 8px 0 0;
  color: #575d6c;
  font-size: 12px;
  line-height: 1.75;
}
/* ---- Why FABMIK ---- */
.pd-trust-section {
  margin-top: 28px;
  padding: 56px 0;
  background: #e9ebf3;
}
.pd-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.pd-trust-card {
  min-height: 220px;
  padding: 25px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.pd-trust-card strong {
  display: block;
  margin-bottom: 15px;
  color: #2848b8;
  font-family: "Mulish", sans-serif;
  font-size: 2.45rem;
  line-height: 1;
}
.pd-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 15px;
  color: #2848b8;
}
.pd-trust-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}
.pd-trust-card h3 {
  margin: 0;
  font-size: 1.13rem;
  line-height: 1.38;
}
.pd-trust-card p {
  margin: 10px 0 0;
  color: #595f6d;
  font-size: 12px;
  line-height: 1.8;
}
/* ---- CTA ---- */
.pd-cta-section {
  padding-top: 54px;
}
.pd-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 46px 40px;
  border-radius: 8px;
  background: #dfe4ff;
}
.pd-cta-banner::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 24px;
  width: 240px;
  height: 220px;
  background: url("/../../../../wp-content/themes/fabmik/assets/icons/ferry.svg") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.pd-cta-banner h2 {
  max-width: 540px;
  margin: 0;
  color: #1e389f;
  font-size: clamp(1.9rem, 2.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.08em;
}
.pd-cta-banner p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #4f5874;
  font-size: 14px;
  line-height: 1.8;
}
.pd-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.pd-btn-outline {
  border-color: #3550bb;
  color: #3550bb;
  background: transparent;
}
@media (max-width: 1080px) {
  .pd-overview-grid {
    grid-template-columns: 1fr;
  }
  .pd-highlights {
    max-width: 760px;
  }
}
@media (max-width: 920px) {
  .pd-activity-grid, .pd-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pd-cta-banner::after {
    width: 210px;
    height: 190px;
  }
}
@media (max-width: 640px) {
  .pd-hero-inner {
    padding: 42px 0 58px;
  }
  .pd-hero-inner h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    letter-spacing: 0.04em;
  }
  .pd-overview-copy h2, .pd-cta-banner h2 {
    letter-spacing: 0.04em;
  }
  .pd-activity-grid, .pd-trust-grid {
    grid-template-columns: 1fr;
  }
  .pd-cta-banner {
    padding: 34px 24px;
  }
  .pd-cta-banner::after {
    display: none;
  }
}
/* ======================================== */
/* Power Generation Service Detail Page      */
/* ======================================== */
.pgen-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e7e9fe 0%, #f6f6f8 100%);
}
.pgen-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(to right, rgba(114, 122, 141, 0.16) 1px, transparent 1px), linear-gradient(to bottom, rgba(114, 122, 141, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
}
.pgen-hero-inner {
  position: relative;
  z-index: 1;
  padding: 52px 0 80px;
}
.pgen-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d3140;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.pgen-back-link span {
  font-size: 13px;
  line-height: 1;
}
.pgen-hero-inner h1 {
  max-width: 740px;
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.05em;
}
.pgen-hero-inner > p {
  max-width: 640px;
  margin: 16px 0 0;
  color: #4d5363;
  font-size: 14px;
  line-height: 1.85;
}
.pgen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pgen-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(40, 72, 184, 0.34);
  border-radius: 4px;
  color: #2b3c80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.64);
}
.pgen-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.9fr;
  gap: 26px;
}
.pgen-overview-copy h2 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
}
.pgen-overview-copy p {
  margin: 14px 0 0;
  color: #4f5666;
  font-size: 13px;
  line-height: 1.9;
}
.pgen-highlights {
  align-self: center;
  padding: 24px 22px;
  border: 1px solid rgba(23, 25, 35, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}
.pgen-highlights .eyebrow {
  margin-bottom: 14px;
}
.pgen-highlights ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pgen-highlights li {
  position: relative;
  padding-left: 24px;
  color: #4a5160;
  font-size: 13px;
  line-height: 1.55;
}
.pgen-highlights li::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2724%27%20height%3D%2724%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M23%2012L20.56%209.22004L20.9%205.54004L17.29%204.72004L15.4%201.54004L12%203.00004L8.6%201.54004L6.71%204.72004L3.1%205.53004L3.44%209.21004L1%2012L3.44%2014.78L3.1%2018.47L6.71%2019.29L8.6%2022.47L12%2021L15.4%2022.46L17.29%2019.28L20.9%2018.46L20.56%2014.78L23%2012ZM10%2017L6%2013L7.41%2011.59L10%2014.17L16.59%207.58004L18%209.00004L10%2017Z%27%20fill%3D%27%231E3495%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.pgen-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.pgen-activity-card {
  min-height: 192px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.pgen-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e9edff;
  color: #3651bd;
  font-family: "Mulish", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.pgen-activity-card h3 {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}
.pgen-activity-card p {
  margin: 8px 0 0;
  color: #575d6c;
  font-size: 12px;
  line-height: 1.75;
}
.pgen-trust-section {
  margin-top: 28px;
  padding: 56px 0;
  background: #e9ebf3;
}
.pgen-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.pgen-trust-card {
  min-height: 220px;
  padding: 25px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.pgen-trust-card strong {
  display: block;
  margin-bottom: 15px;
  color: #2848b8;
  font-family: "Mulish", sans-serif;
  font-size: 2.45rem;
  line-height: 1;
}
.pgen-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 15px;
  color: #2848b8;
}
.pgen-trust-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}
.pgen-trust-card h3 {
  margin: 0;
  font-size: 1.13rem;
  line-height: 1.38;
}
.pgen-trust-card p {
  margin: 10px 0 0;
  color: #595f6d;
  font-size: 12px;
  line-height: 1.8;
}
.pgen-cta-section {
  padding-top: 54px;
}
.pgen-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 46px 40px;
  border-radius: 8px;
  background: #dfe4ff;
}
.pgen-cta-banner::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 24px;
  width: 220px;
  height: 220px;
  background: url("/../../../../wp-content/themes/fabmik/assets/icons/generator-portable.svg") center / contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
.pgen-cta-banner h2 {
  max-width: 540px;
  margin: 0;
  color: #1e389f;
  font-size: clamp(1.9rem, 2.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.08em;
}
.pgen-cta-banner p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #4f5874;
  font-size: 14px;
  line-height: 1.8;
}
.pgen-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.pgen-btn-outline {
  border-color: rgba(40, 72, 184, 0.4);
  background: transparent;
  color: #2a48b6;
  box-shadow: none;
}
.pgen-btn-outline:hover {
  background: rgba(40, 72, 184, 0.08);
}
@media (max-width: 1080px) {
  .pgen-overview-grid {
    grid-template-columns: 1fr;
  }
  .pgen-activity-grid, .pgen-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pgen-cta-banner::after {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 760px) {
  .pgen-hero-inner {
    padding: 34px 0 52px;
  }
  .pgen-hero-inner h1 {
    font-size: clamp(1.95rem, 10vw, 2.8rem);
  }
  .pgen-overview-copy h2, .pgen-cta-banner h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }
  .pgen-activity-grid, .pgen-trust-grid {
    grid-template-columns: 1fr;
  }
  .pgen-cta-banner {
    padding: 28px 18px;
  }
  .pgen-cta-banner::after {
    top: auto;
    right: -10px;
    bottom: -16px;
    width: 160px;
    height: 160px;
  }
}
/* ======================================== */
/* Road and Bridge Service Detail Page       */
/* ======================================== */
.rbc-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e7e9fe 0%, #f6f6f8 100%);
}
.rbc-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(to right, rgba(114, 122, 141, 0.16) 1px, transparent 1px), linear-gradient(to bottom, rgba(114, 122, 141, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
}
.rbc-hero-inner {
  position: relative;
  z-index: 1;
  padding: 52px 0 80px;
}
.rbc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d3140;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.rbc-back-link span {
  font-size: 13px;
  line-height: 1;
}
.rbc-hero-inner h1 {
  max-width: 740px;
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.05em;
}
.rbc-hero-inner > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #4d5363;
  font-size: 14px;
  line-height: 1.85;
}
.rbc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.rbc-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(40, 72, 184, 0.34);
  border-radius: 4px;
  color: #2b3c80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.64);
}
.rbc-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.9fr;
  gap: 26px;
}
.rbc-overview-copy h2 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
}
.rbc-overview-copy p {
  margin: 14px 0 0;
  color: #4f5666;
  font-size: 13px;
  line-height: 1.9;
}
.rbc-highlights {
  align-self: center;
  padding: 24px 22px;
  border: 1px solid rgba(23, 25, 35, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}
.rbc-highlights .eyebrow {
  margin-bottom: 14px;
}
.rbc-highlights ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rbc-highlights li {
  position: relative;
  padding-left: 24px;
  color: #4a5160;
  font-size: 13px;
  line-height: 1.55;
}
.rbc-highlights li::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2724%27%20height%3D%2724%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M23%2012L20.56%209.22004L20.9%205.54004L17.29%204.72004L15.4%201.54004L12%203.00004L8.6%201.54004L6.71%204.72004L3.1%205.53004L3.44%209.21004L1%2012L3.44%2014.78L3.1%2018.47L6.71%2019.29L8.6%2022.47L12%2021L15.4%2022.46L17.29%2019.28L20.9%2018.46L20.56%2014.78L23%2012ZM10%2017L6%2013L7.41%2011.59L10%2014.17L16.59%207.58004L18%209.00004L10%2017Z%27%20fill%3D%27%231E3495%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.rbc-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.rbc-activity-card {
  min-height: 192px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.rbc-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e9edff;
  color: #3651bd;
  font-family: "Mulish", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.rbc-activity-card h3 {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}
.rbc-activity-card p {
  margin: 8px 0 0;
  color: #575d6c;
  font-size: 12px;
  line-height: 1.75;
}
.rbc-trust-section {
  margin-top: 28px;
  padding: 56px 0;
  background: #e9ebf3;
}
.rbc-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.rbc-trust-card {
  min-height: 220px;
  padding: 25px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.rbc-trust-card strong {
  display: block;
  margin-bottom: 15px;
  color: #2848b8;
  font-family: "Mulish", sans-serif;
  font-size: 2.45rem;
  line-height: 1;
}
.rbc-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 15px;
  color: #2848b8;
}
.rbc-trust-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}
.rbc-trust-card h3 {
  margin: 0;
  font-size: 1.13rem;
  line-height: 1.38;
}
.rbc-trust-card p {
  margin: 10px 0 0;
  color: #595f6d;
  font-size: 12px;
  line-height: 1.8;
}
.rbc-cta-section {
  padding-top: 54px;
}
.rbc-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 46px 40px;
  border-radius: 8px;
  background: #dfe4ff;
}
.rbc-cta-banner::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 24px;
  width: 240px;
  height: 220px;
  background: url("/../../../../wp-content/themes/fabmik/assets/icons/bridge.svg") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.rbc-cta-banner h2 {
  max-width: 540px;
  margin: 0;
  color: #1e389f;
  font-size: clamp(1.9rem, 2.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.08em;
}
.rbc-cta-banner p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #4f5874;
  font-size: 14px;
  line-height: 1.8;
}
.rbc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.rbc-btn-outline {
  border-color: rgba(40, 72, 184, 0.4);
  background: transparent;
  color: #2a48b6;
  box-shadow: none;
}
.rbc-btn-outline:hover {
  background: rgba(40, 72, 184, 0.08);
}
@media (max-width: 1080px) {
  .rbc-overview-grid {
    grid-template-columns: 1fr;
  }
  .rbc-activity-grid, .rbc-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rbc-cta-banner::after {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 760px) {
  .rbc-hero-inner {
    padding: 34px 0 52px;
  }
  .rbc-hero-inner h1 {
    font-size: clamp(1.95rem, 10vw, 2.8rem);
  }
  .rbc-overview-copy h2, .rbc-cta-banner h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }
  .rbc-activity-grid, .rbc-trust-grid {
    grid-template-columns: 1fr;
  }
  .rbc-cta-banner {
    padding: 28px 18px;
  }
  .rbc-cta-banner::after {
    top: auto;
    right: -10px;
    bottom: -16px;
    width: 170px;
    height: 150px;
  }
}
/* ======================================== */
/* System Protection Service Detail Page     */
/* ======================================== */
.spp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e7e9fe 0%, #f6f6f8 100%);
}
.spp-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(to right, rgba(114, 122, 141, 0.16) 1px, transparent 1px), linear-gradient(to bottom, rgba(114, 122, 141, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
}
.spp-hero-inner {
  position: relative;
  z-index: 1;
  padding: 52px 0 80px;
}
.spp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d3140;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.spp-back-link span {
  font-size: 13px;
  line-height: 1;
}
.spp-hero-inner h1 {
  max-width: 740px;
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.05em;
}
.spp-hero-inner > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #4d5363;
  font-size: 14px;
  line-height: 1.85;
}
.spp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.spp-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(40, 72, 184, 0.34);
  border-radius: 4px;
  color: #2b3c80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.64);
}
.spp-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.9fr;
  gap: 26px;
}
.spp-overview-copy h2 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
}
.spp-overview-copy p {
  margin: 14px 0 0;
  color: #4f5666;
  font-size: 13px;
  line-height: 1.9;
}
.spp-highlights {
  align-self: center;
  padding: 24px 22px;
  border: 1px solid rgba(23, 25, 35, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}
.spp-highlights .eyebrow {
  margin-bottom: 14px;
}
.spp-highlights ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.spp-highlights li {
  position: relative;
  padding-left: 24px;
  color: #4a5160;
  font-size: 13px;
  line-height: 1.55;
}
.spp-highlights li::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2724%27%20height%3D%2724%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M23%2012L20.56%209.22004L20.9%205.54004L17.29%204.72004L15.4%201.54004L12%203.00004L8.6%201.54004L6.71%204.72004L3.1%205.53004L3.44%209.21004L1%2012L3.44%2014.78L3.1%2018.47L6.71%2019.29L8.6%2022.47L12%2021L15.4%2022.46L17.29%2019.28L20.9%2018.46L20.56%2014.78L23%2012ZM10%2017L6%2013L7.41%2011.59L10%2014.17L16.59%207.58004L18%209.00004L10%2017Z%27%20fill%3D%27%231E3495%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.spp-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.spp-activity-card {
  min-height: 192px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.spp-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e9edff;
  color: #3651bd;
  font-family: "Mulish", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.spp-activity-card h3 {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}
.spp-activity-card p {
  margin: 8px 0 0;
  color: #575d6c;
  font-size: 12px;
  line-height: 1.75;
}
.spp-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.spp-scope-card {
  position: relative;
  padding: 18px 18px 18px 40px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.spp-scope-card::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2f4cc3;
  box-shadow: 0 0 0 3px rgba(47, 76, 195, 0.14);
}
.spp-scope-card h3 {
  margin: 0;
  font-size: 1.08rem;
}
.spp-scope-card p {
  margin: 9px 0 0;
  color: #575d6c;
  font-size: 12px;
  line-height: 1.72;
}
.spp-trust-section {
  margin-top: 28px;
  padding: 56px 0;
  background: #e9ebf3;
}
.spp-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.spp-trust-card {
  min-height: 232px;
  padding: 25px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.spp-trust-card strong {
  display: block;
  margin-bottom: 15px;
  color: #2848b8;
  font-family: "Mulish", sans-serif;
  font-size: 2.45rem;
  line-height: 1;
}
.spp-trust-card h3 {
  margin: 0;
  font-size: 1.13rem;
  line-height: 1.38;
}
.spp-trust-card p {
  margin: 10px 0 0;
  color: #595f6d;
  font-size: 12px;
  line-height: 1.8;
}
.spp-cta-section {
  padding-top: 54px;
}
.spp-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 46px 40px;
  border-radius: 8px;
  background: #dfe4ff;
}
.spp-cta-banner::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 26px;
  width: 220px;
  height: 220px;
  background: url("/../../../../wp-content/themes/fabmik/assets/icons/shield-lock-outline.svg") center / contain no-repeat;
  opacity: 0.09;
  pointer-events: none;
}
.spp-cta-banner h2 {
  max-width: 620px;
  margin: 0;
  color: #1e389f;
  font-size: clamp(1.9rem, 2.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.08em;
}
.spp-cta-banner p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #4f5874;
  font-size: 14px;
  line-height: 1.8;
}
.spp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.spp-btn-outline {
  border-color: rgba(40, 72, 184, 0.4);
  background: transparent;
  color: #2a48b6;
  box-shadow: none;
}
.spp-btn-outline:hover {
  background: rgba(40, 72, 184, 0.08);
}
@media (max-width: 1080px) {
  .spp-overview-grid {
    grid-template-columns: 1fr;
  }
  .spp-activity-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spp-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spp-cta-banner::after {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 760px) {
  .spp-hero-inner {
    padding: 34px 0 52px;
  }
  .spp-hero-inner h1 {
    font-size: clamp(1.95rem, 10vw, 2.8rem);
  }
  .spp-overview-copy h2, .spp-cta-banner h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }
  .spp-activity-grid, .spp-scope-grid, .spp-trust-grid {
    grid-template-columns: 1fr;
  }
  .spp-cta-banner {
    padding: 28px 18px;
  }
  .spp-cta-banner::after {
    top: auto;
    right: -12px;
    bottom: -18px;
    width: 160px;
    height: 160px;
  }
}
/* ======================================== */
/* Transmission Service Detail Page          */
/* ======================================== */
.tdl-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e7e9fe 0%, #f6f6f8 100%);
}
.tdl-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(to right, rgba(114, 122, 141, 0.16) 1px, transparent 1px), linear-gradient(to bottom, rgba(114, 122, 141, 0.16) 1px, transparent 1px);
  background-size: 84px 84px;
}
.tdl-hero-inner {
  position: relative;
  z-index: 1;
  padding: 52px 0 80px;
}
.tdl-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d3140;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.tdl-back-link span {
  font-size: 13px;
  line-height: 1;
}
.tdl-hero-inner h1 {
  max-width: 750px;
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.05em;
}
.tdl-hero-inner > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #4d5363;
  font-size: 14px;
  line-height: 1.85;
}
.tdl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tdl-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(40, 72, 184, 0.34);
  border-radius: 4px;
  color: #2b3c80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.64);
}
.tdl-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.9fr;
  gap: 26px;
}
.tdl-overview-copy h2 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
}
.tdl-overview-copy p {
  margin: 14px 0 0;
  color: #4f5666;
  font-size: 13px;
  line-height: 1.9;
}
.tdl-highlights {
  align-self: center;
  padding: 24px 22px;
  border: 1px solid rgba(23, 25, 35, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}
.tdl-highlights .eyebrow {
  margin-bottom: 14px;
}
.tdl-highlights ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tdl-highlights li {
  position: relative;
  padding-left: 24px;
  color: #4a5160;
  font-size: 13px;
  line-height: 1.55;
}
.tdl-highlights li::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2724%27%20height%3D%2724%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M23%2012L20.56%209.22004L20.9%205.54004L17.29%204.72004L15.4%201.54004L12%203.00004L8.6%201.54004L6.71%204.72004L3.1%205.53004L3.44%209.21004L1%2012L3.44%2014.78L3.1%2018.47L6.71%2019.29L8.6%2022.47L12%2021L15.4%2022.46L17.29%2019.28L20.9%2018.46L20.56%2014.78L23%2012ZM10%2017L6%2013L7.41%2011.59L10%2014.17L16.59%207.58004L18%209.00004L10%2017Z%27%20fill%3D%27%231E3495%27/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.tdl-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.tdl-activity-card {
  min-height: 192px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.tdl-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e9edff;
  color: #3651bd;
  font-family: "Mulish", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.tdl-activity-card h3 {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}
.tdl-activity-card p {
  margin: 8px 0 0;
  color: #575d6c;
  font-size: 12px;
  line-height: 1.75;
}
.tdl-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.tdl-scope-card {
  position: relative;
  padding: 18px 18px 18px 40px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.tdl-scope-card::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2f4cc3;
  box-shadow: 0 0 0 3px rgba(47, 76, 195, 0.14);
}
.tdl-scope-card h3 {
  margin: 0;
  font-size: 1.08rem;
}
.tdl-scope-card p {
  margin: 9px 0 0;
  color: #575d6c;
  font-size: 12px;
  line-height: 1.72;
}
.tdl-equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.tdl-equipment-card {
  padding: 16px 14px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}
.tdl-equipment-card h3 {
  margin: 0px auto;
  font-size: 1.03rem;
  line-height: 1.35;
  max-width: 160px;
  text-align: center;
}
@media (max-width: 760px) {
  .tdl-equipment-card h3 {
    max-width: 100%;
  }
}
.tdl-equipment-card p {
  margin: 10px 0 0;
  color: #5c6170;
  font-size: 12px;
  line-height: 1.72;
}
.tdl-trust-section {
  margin-top: 28px;
  padding: 56px 0;
  background: #e9ebf3;
}
.tdl-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.tdl-trust-card {
  min-height: 232px;
  padding: 25px 18px;
  border: 1px solid rgba(23, 25, 35, 0.05);
  border-radius: 8px;
  background: #fff;
}
.tdl-trust-card strong {
  display: block;
  margin-bottom: 15px;
  color: #2848b8;
  font-family: "Mulish", sans-serif;
  font-size: 2.45rem;
  line-height: 1;
}
.tdl-trust-card h3 {
  margin: 0;
  font-size: 1.13rem;
  line-height: 1.38;
}
.tdl-trust-card p {
  margin: 10px 0 0;
  color: #595f6d;
  font-size: 12px;
  line-height: 1.8;
}
.tdl-cta-section {
  padding-top: 54px;
}
.tdl-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 46px 40px;
  border-radius: 8px;
  background: #dfe4ff;
}
.tdl-cta-banner::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 26px;
  width: 200px;
  height: 200px;
  background: url("/../../../../wp-content/themes/fabmik/assets/icons/transmission-tower.svg") center / contain no-repeat;
  opacity: 0.09;
  pointer-events: none;
}
.tdl-cta-banner h2 {
  max-width: 620px;
  margin: 0;
  color: #1e389f;
  font-size: clamp(1.9rem, 2.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.08em;
}
.tdl-cta-banner p {
  max-width: 640px;
  margin: 14px 0 0;
  color: #4f5874;
  font-size: 14px;
  line-height: 1.8;
}
.tdl-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.tdl-btn-outline {
  border-color: rgba(40, 72, 184, 0.4);
  background: transparent;
  color: #2a48b6;
  box-shadow: none;
}
.tdl-btn-outline:hover {
  background: rgba(40, 72, 184, 0.08);
}
@media (max-width: 1080px) {
  .tdl-overview-grid {
    grid-template-columns: 1fr;
  }
  .tdl-activity-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tdl-equipment-grid, .tdl-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tdl-cta-banner::after {
    width: 170px;
    height: 170px;
  }
}
@media (max-width: 760px) {
  .tdl-hero-inner {
    padding: 34px 0 52px;
  }
  .tdl-hero-inner h1 {
    font-size: clamp(1.95rem, 10vw, 2.8rem);
  }
  .tdl-overview-copy h2, .tdl-cta-banner h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }
  .tdl-activity-grid, .tdl-scope-grid, .tdl-equipment-grid, .tdl-trust-grid {
    grid-template-columns: 1fr;
  }
  .tdl-cta-banner {
    padding: 28px 18px;
  }
  .tdl-cta-banner::after {
    top: auto;
    right: -10px;
    bottom: -14px;
    width: 150px;
    height: 150px;
  }
}
