/* ========== Base ========== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0f172a;
  background: radial-gradient(circle at top left, #f9fafb 0, #f1f5f9 40%, #e5f3ff 100%);
}

/* CSS variables for theme (logo + accent colours) */
:root {
  --gt-navy: #193B66;
  --gt-aqua: #A1D8D6;
  --gt-teal: #1E5873;
  --gt-steel: #4A7C92;

  /* Extra vibrant accents (Colorcon-style) */
  --gt-gold: #fbbf24;
  --gt-coral: #fb7185;
  --gt-plum: #7c3aed;
  --gt-mint: #22c55e;

  --gt-radius-xl: 1.5rem;
}

/* Brand colours helpers */
.text-navy { color: var(--gt-navy); }
.bg-navy { background-color: var(--gt-navy); }
.bg-aqua { background-color: var(--gt-aqua); }

/* Shared shadows */
.shadow-soft {
  box-shadow: 0 16px 40px -18px rgba(2, 12, 27, 0.2);
}
.shadow-glow {
  box-shadow: 0 18px 55px -16px rgba(25, 59, 102, 0.5);
}

/* Reveal animation for sections */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.7s cubic-bezier(.2,.65,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Active nav state */
.nav-link-active {
  color: var(--gt-navy);
  font-weight: 700;
  position: relative;
}
.nav-link-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gt-aqua), var(--gt-gold));
}

/* Keep hero stats text from overflowing */
.hero-stat-value-small {
  font-size: 1.05rem;
  line-height: 1.2rem;
  word-break: break-word;
}

/* ========== HERO / GLOBAL SECTIONS ========== */

/* Colourful hero background overlay */
.hero-shell {
  position: relative;
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 0% 0%, rgba(161, 216, 214, 0.35), transparent 55%),
    radial-gradient(circle at 100% 10%, rgba(124, 58, 237, 0.22), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(251, 191, 36, 0.20), transparent 60%);
  opacity: 0.9;
  z-index: -1;
}

/* Panel style for hero card */
.hero-panel {
  border-radius: var(--gt-radius-xl);
  background: linear-gradient(145deg, #ffffff, #f9fafb);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 60px -26px rgba(15, 23, 42, 0.55);
}

/* Section colourful band */
.section-band {
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #0f172a, var(--gt-navy), var(--gt-teal));
  color: #e5f3ff;
}

/* Colourful chips / pills */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill-badge--aqua {
  background: rgba(161, 216, 214, 0.18);
  color: var(--gt-teal);
}
.pill-badge--gold {
  background: rgba(251, 191, 36, 0.16);
  color: #92400e;
}
.pill-badge--coral {
  background: rgba(251, 113, 133, 0.16);
  color: #9f1239;
}

/* Feature cards with colourful border accents */
.feature-card {
  position: relative;
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, #ffffff, #f9fafb);
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 45px -24px rgba(15, 23, 42, 0.3);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset-inline: -30%;
  top: -40%;
  height: 60%;
  background: radial-gradient(circle at 10% 0%, rgba(161, 216, 214, .4), transparent 55%);
  opacity: 0.75;
  z-index: 0;
}

.feature-card__body {
  position: relative;
  z-index: 1;
}

/* Gradient border card variant */
.feature-card--gradient-border {
  border: 1px solid transparent;
  background:
    linear-gradient(#ffffff, #f9fafb) padding-box,
    linear-gradient(135deg, var(--gt-aqua), var(--gt-plum)) border-box;
}

/* Buttons (for non-Tailwind areas) */
.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  background-image: linear-gradient(135deg, var(--gt-aqua), var(--gt-gold));
  color: #0f172a;
  border: none;
  box-shadow: 0 12px 30px -18px rgba(15, 23, 42, 0.7);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-position 0.25s ease;
  background-size: 150% 150%;
}

.btn-primary-gradient:hover {
  transform: translateY(-1px);
  background-position: 100% 0;
  box-shadow: 0 18px 45px -20px rgba(15, 23, 42, 0.9);
}

.btn-outline-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--gt-navy);
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.btn-outline-soft:hover {
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  transform: translateY(-1px);
}

/* Statistic counters */
.hero-counter {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gt-navy);
}

/* Tiny label above counters */
.hero-counter-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

/* Section titles */
.section-title-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #64748b;
  font-weight: 600;
}

.section-title-main {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gt-navy);
}

/* Steps row style (bottom of home page) */
.steps-ribbon {
  border-radius: 1.25rem;
  background: linear-gradient(90deg, var(--gt-aqua), #e0f2fe, #fee2e2);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

/* Footer subtle gradient */
footer {
  background: linear-gradient(180deg, #ffffff 0, #f8fafc 40%, #e5e7eb 100%);
}
/* ================= PRODUCTS SNAPSHOT ================= */

.product-section {
  padding: 66px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(20, 184, 166, 0.22), transparent 32%),
    linear-gradient(135deg, #1E3A8A 0%, #0B5ED7 55%, #0F172A 100%);
}

.product-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.product-images {
  display: grid;
  grid-template-columns: repeat(2, 180px);
  gap: 18px;
}

.product-thumb {
  width: 180px;
  height: 180px;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
}

.product-thumb:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 24px 46px rgba(0,0,0,0.28);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  color: #ffffff;
}

.product-kicker {
  color: #BFFBF4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-content h2 {
  font-size: 34px;
  line-height: 1.22;
  font-weight: 900;
  color: #ffffff;
}

.product-content p {
  margin-top: 16px;
  color: #EAF2FF;
  font-size: 15px;
  line-height: 1.75;
}

.product-list {
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.product-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.55;
}

.product-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #14B8A6;
  font-weight: 900;
}

.product-link {
  display: inline-flex;
  margin-top: 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.product-link:hover {
  color: #BFFBF4;
}

@media (max-width: 1024px) {
  .product-inner {
    grid-template-columns: 1fr;
  }

  .product-images {
    grid-template-columns: repeat(2, 160px);
  }

  .product-thumb {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 640px) {
  .product-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-thumb {
    width: 100%;
    height: 150px;
  }

  .product-content h2 {
    font-size: 27px;
  }
}

/* ================= KEY SERVICE LINES ================= */

.services-section {
  padding: 64px 0;
  background: #ffffff;
}

.services-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
}

.services-title {
  color: #1E3A8A;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
}

.services-subtitle {
  max-width: 760px;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.services-link {
  color: #0B5ED7;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.services-link:hover {
  color: #14B8A6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border-radius: 22px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0B5ED7, #1E3A8A);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(11, 94, 215, 0.22);
}

.service-card:hover::before {
  opacity: 1;
}

.service-pill {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 999px;
  background: #EAFDFB;
  color: #0F766E;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  align-items: baseline;
  white-space: nowrap;
}
.service-pill .small-s {
  font-size: 11px;
  line-height: 1;
  margin-left: 1px;
  text-transform: lowercase;
}

.service-card-title {
  color: #1E3A8A;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

.service-card-text {
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: #475569;
  font-size: 13px;
  line-height: 1.45;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #14B8A6;
  font-weight: 900;
}

.service-card:hover .service-pill {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}

.service-card:hover .service-card-title,
.service-card:hover .service-card-text,
.service-card:hover .service-list li,
.service-card:hover .service-list li::before {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header {
    align-items: start;
    flex-direction: column;
  }
}


/* ================= QBD SECTION ================= */

.qbd-section {
  padding: 60px 0;
  background: #F8FAFC;
}

.qbd-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}

.qbd-kicker {
  color: #14B8A6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.qbd-title {
  color: #1E3A8A;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 16px;
}

.qbd-lead {
  max-width: 850px;
  margin: 0 auto;
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
}

.qbd-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
}

.qbd-card {
  background: #ffffff;
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
}

.qbd-card h3 {
  color: #1E3A8A;
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 10px;
}

.qbd-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.qbd-card:hover {
  transform: translateY(-6px);
  border-color: #14B8A6;
  box-shadow: 0 20px 38px rgba(20, 184, 166, 0.18);
}

.qbd-card:hover h3 {
  color: #0B5ED7;
}

@media (max-width: 1024px) {
  .qbd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .qbd-grid {
    grid-template-columns: 1fr;
  }

  .qbd-title {
    font-size: 26px;
  }
}

/* Individual card */
.qbd-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid #e1e7f3;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.qbd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(15, 76, 129, 0.18);
  border-color: #c4d3f1;
}

/* Card text */
.qbd-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a9bb5;
  margin-bottom: 4px;
}

.qbd-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #193b66;
  margin-bottom: 6px;
}

.qbd-card-text {
  font-size: 13px;
  line-height: 1.6;
  color: #4a5c73;
}
/* --------------------------------------------
   COLORFUL FEATURE CARDS (MODERN UI)
--------------------------------------------- */
.colorful-cards-section {
  padding: 72px 0;
  background: #ffffff;
}

.colorful-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

@media(max-width: 960px) {
  .colorful-cards {
    grid-template-columns: 1fr;
  }
}

/* CARD BASE */
.color-card {
  padding: 32px 26px;
  border-radius: 22px;
  background: #ffffff;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  border: none;
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}

/* Hover Lift + Glow */
.color-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 34px rgba(0,0,0,0.18);
}

/* Gradient overlays — 3 different color themes */
.card-blue {
  background: linear-gradient(135deg, #1f3b73 0%, #275db8 100%);
}

.card-green {
  background: linear-gradient(135deg, #0f8f6f 0%, #19c39b 100%);
}

.card-purple {
  background: linear-gradient(135deg, #5a2ab3 0%, #8e4dff 100%);
}

/* TEXT */
.color-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.color-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #eaf1ff;
}

/* "Learn more" link */
.color-card a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
  display: inline-block;
  text-decoration: none;
}

.color-card a:hover {
  text-decoration: underline;
}
/* Leadership Quote Card (No Photoshop) */
.leader-quote-card{
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 18px 60px -32px rgba(15, 23, 42, 0.35);
}

/* Top block */
.leader-quote-top{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* left wider, right image */
  min-height: 360px; /* SAME HEIGHT for all cards */
  /* background: linear-gradient(135deg, #0f6b7b 0%, #0e6b7b 35%, #7fcad3 110%); */
  background: linear-gradient(135deg, #1e2021 43%, #212c2d 35%, #121616 0%);
  position: relative;
}

/* Left text area */
.leader-quote-text{
  padding: 30px 28px;
  color: #eaf6f7;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Small quote mark at start */
.leader-quote-mark{
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  opacity: 0.55;
  margin-bottom: 10px;
}

/* Quote body */
.leader-quote-body{
  font-size: 20px;
  line-height: 1.8;
  max-width: 520px;
  color: rgba(255,255,255,0.92);
}

/* BIG decorative quotes behind like sample */
.leader-quote-decor{
  position: absolute;
  left: 18px;
  bottom: 10px;
  font-size: 180px;
  line-height: 1;
  font-weight: 900;
  color: rgba(255,255,255,0.22);
  pointer-events: none;
}

/* Image area */
.leader-quote-image{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 12px 0 12px;
}

.leader-quote-image img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* keeps full person visible */
  filter: drop-shadow(0 18px 22px rgba(0,0,0,0.25));
}

/* Bottom strip like “CEO / NAME” */
.leader-quote-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #ffffff;
}

.leader-quote-role{
  font-size: 12px;
  font-weight: 700;
  color: #1E5873;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 6px 0;
}

.leader-quote-name{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #193B66;
}

/* Small tag on right */
.leader-quote-tag{
  font-size: 12px;
  font-weight: 700;
  color: #193B66;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 8px 12px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px){
  .leader-quote-top{
    grid-template-columns: 1fr;
    min-height: 420px; /* more room when stacked */
  }
  .leader-quote-image{
    height: 260px;
    padding: 0 16px 10px 16px;
  }
  .leader-quote-image img{
    object-fit: contain;
  }
}

/* ================= HEADER REDESIGN ================= */

:root {
  --primary-blue: #0B5ED7;
  --secondary-blue: #1E3A8A;
  --accent-teal: #14B8A6;
  --light-bg: #F8FAFC;
  --text-dark: #1F2937;
}

.site-header {
  width: 100%;
}

.site-nav {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.header-contact-strip {
  width: 100%;
  background: var(--secondary-blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.header-contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7px 22px;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.header-contact-strip a {
  color: #ffffff;
  text-decoration: none;
}

.header-contact-strip a:hover {
  color: var(--accent-teal);
}

.site-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}

.site-logo span {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--secondary-blue);
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link-active {
  color: var(--primary-blue);
}

.nav-link-active::after {
  background: var(--accent-teal);
}

.nav-dropdown > .nav-link::after {
  content: "▾";
  font-size: 10px;
  margin-left: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: var(--light-bg);
  color: var(--primary-blue);
}

.header-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0F766E 0%, #0B5ED7 100%);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.28);
  transition: all 0.2s ease;
}

.header-contact-btn:hover {
  background: linear-gradient(135deg, #14B8A6 0%, #1E3A8A 100%);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  border: 1px solid #dbe4f0;
  background: #ffffff;
  color: var(--secondary-blue);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 22px;
  line-height: 1;
}

.mobile-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 18px 14px;
  background: #ffffff;
  list-style: none;
}

.mobile-nav li {
  list-style: none;
}

.mobile-nav-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav-link:hover {
  background: var(--light-bg);
  color: var(--primary-blue);
}

.mobile-sub-link {
  padding-left: 28px;
  font-size: 13px;
  color: #4b5563;
}

.hidden {
  display: none !important;
}

/* ================= SKELETON LOADING ================= */

@keyframes skeletonShimmer {
  0% { background-position: -520px 0; }
  100% { background-position: 520px 0; }
}

.skeleton-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.96);
}

.skeleton-logo,
.skeleton-nav span,
.page-skeleton-copy span,
.page-skeleton-card,
.page-skeleton-bar {
  background: linear-gradient(90deg, #eef4fb 0, #f8fbff 45%, #e5eff9 80%);
  background-size: 520px 100%;
  animation: skeletonShimmer 1.25s linear infinite;
}

.skeleton-logo {
  width: 240px;
  height: 44px;
  border-radius: 12px;
}

.skeleton-nav {
  display: flex;
  gap: 14px;
}

.skeleton-nav span {
  width: 74px;
  height: 16px;
  border-radius: 999px;
}

.page-skeleton {
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding-top: 92px;
  background:
    radial-gradient(circle at 12% 16%, rgba(20,184,166,0.20), transparent 32%),
    linear-gradient(135deg, rgba(30,58,138,0.96), rgba(11,94,215,0.94));
  pointer-events: none;
  transition: opacity 0.38s ease, visibility 0.38s ease;
}

.page-skeleton--hide {
  opacity: 0;
  visibility: hidden;
}

.page-skeleton-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 22px;
  display: grid;
  grid-template-columns: 130px 1fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.page-loader-mark {
  position: relative;
  width: 118px;
  height: 118px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(234,253,251,0.92)) padding-box,
    linear-gradient(135deg, #14B8A6, #0B5ED7) border-box;
  border: 2px solid transparent;
  box-shadow: 0 24px 58px rgba(2, 12, 27, 0.28);
  animation: loaderFloat 1.8s ease-in-out infinite;
}

.page-loader-mark::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 38px;
  border: 2px solid rgba(20, 184, 166, 0.28);
  border-top-color: #14B8A6;
  animation: loaderSpin 1.2s linear infinite;
}

.page-loader-mark img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
}

.page-skeleton-copy strong {
  display: block;
  margin-bottom: 18px;
  color: #1E3A8A;
  font-size: 18px;
  font-weight: 900;
}

@keyframes loaderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

.page-skeleton-bar {
  height: 4px;
  width: 100%;
  opacity: 0.55;
}

.page-skeleton-copy span {
  display: block;
  height: 22px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.page-skeleton-copy span:nth-of-type(1) {
  width: 78%;
  height: 44px;
}

.page-skeleton-copy span:nth-of-type(2) {
  width: 64%;
}

.page-skeleton-copy span:nth-of-type(3) {
  width: 42%;
}

.page-skeleton-card {
  height: 260px;
  border-radius: 28px;
  opacity: 0.92;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .site-nav-inner {
  padding: 8px 20px;
}

.site-logo img {
  width: 38px;
  height: 38px;
}

.site-logo span {
  font-size: 14px;
}

.header-contact-inner {
  justify-content: center;
  gap: 10px;
  font-size: 11px;
}

.mobile-nav {
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  border-top: 1px solid #E2E8F0;
  box-shadow: inset 0 12px 18px -18px rgba(15, 23, 42, 0.45);
}
}
@media (max-width: 640px) {

  .site-logo span {
    font-size: 11px;
    letter-spacing: 0;
  }

  .header-contact-strip {
    display: block;
    font-size: 10px;
  }

  .header-contact-inner {
    padding: 6px 10px;
    gap: 8px;
    justify-content: center;
  }

  .header-contact-inner span,
  .header-contact-inner a {
    line-height: 1.35;
  }

  .site-nav-inner {
    padding: 9px 14px;
  }

  .site-logo {
    gap: 8px;
  }

  .mobile-menu-btn {
    padding: 7px 10px;
    font-size: 20px;
  }

  .mobile-nav {
    padding: 8px 12px 14px;
    max-height: calc(100vh - 96px);
  }

}

/* ================= HERO SECTION COMPACT ================= */

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  padding: 100px 0 50px;
  color: #ffffff;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(20, 184, 166, 0.22), transparent 35%),
    radial-gradient(circle at 85% 30%, rgba(11, 94, 215, 0.28), transparent 38%),
    linear-gradient(135deg, #1E3A8A 0%, #0B5ED7 55%, #0F172A 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.3;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #DFFCF8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  margin-top: 12px;
  max-width: 720px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  color: #ffffff;
}

.hero-subtitle {
  margin-top: 18px;
  max-width: 650px;
  color: #EAF2FF;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-btn-primary,
.hero-btn-outline,
.hero-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-btn-primary {
  background: #ffffff;
  color: #0B5ED7;
}

.hero-btn-outline {
  border: 1px solid rgba(255,255,255,0.55);
  color: #ffffff;
}

.hero-btn-light {
  background: rgba(20,184,166,0.22);
  color: #ffffff;
  border: 1px solid rgba(20,184,166,0.45);
}

.hero-btn-primary:hover,
.hero-btn-outline:hover,
.hero-btn-light:hover {
  transform: translateY(-1px);
  background: #14B8A6;
  color: #ffffff;
}

.hero-highlights {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-highlights div {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.hero-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  max-width: 700px;
}

.hero-stats div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  font-size: 11px;
  color: #CDEBFF;
  margin-bottom: 5px;
}

.hero-stats dd {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
  color: #ffffff;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

.hero-card-img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.hero-card-body {
  padding: 18px;
}

.hero-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hero-card-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #14B8A6;
  text-transform: uppercase;
}

.hero-card-top h3 {
  margin-top: 4px;
  color: #1E3A8A;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.hero-card-top span {
  background: #EAFDFB;
  color: #0F766E;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.hero-card-text {
  margin-top: 10px;
  color: #475569;
  font-size: 13px;
  line-height: 1.55;
}

.hero-card-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-card-grid div {
  padding: 11px;
  border-radius: 14px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

.hero-card-grid h4 {
  color: #0B5ED7;
  font-size: 13px;
  font-weight: 900;
}

.hero-card-grid p {
  margin-top: 5px;
  color: #475569;
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: auto;
    padding: 110px 0 45px;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 105px 0 38px;
  }

  .hero-stats,
  .hero-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
}
/* ================= QUICK SERVICE STRIP ================= */

.quick-services-section {
  padding: 52px 0;
  background: #ffffff;
}

.quick-services-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quick-service-card {
  position: relative;
  overflow: hidden;
  min-height: 175px;
  padding: 26px 24px;
  border-radius: 22px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
}

.quick-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0B5ED7, #1E3A8A);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.quick-service-card h3,
.quick-service-card p {
  position: relative;
  z-index: 1;
}

.quick-service-card h3 {
  color: #1E3A8A;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
}

.quick-service-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.quick-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(11, 94, 215, 0.22);
}

.quick-service-card:hover::before {
  opacity: 1;
}

.quick-service-card:hover h3,
.quick-service-card:hover p {
  color: #ffffff;
}

@media (max-width: 900px) {
  .quick-services-container {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   VISION & MISSION PAGE
   ========================================================== */

.vision-page {
  padding-top: 92px;
  background: #f5f7fa;
}

/* Reusable container */
.vision-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* ==========================================================
   HERO
   ========================================================== */

.vision-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 48px;
  color: #fff;

  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(19, 112, 239, 0.55),
      transparent 34%
    ),
    linear-gradient(
      120deg,
      #0746ce 0%,
      #0739a9 46%,
      #06286e 100%
    );
}


/* small DIRECTION text */
.vision-kicker {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #88d6ef;
}


.vision-hero h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #ffffff;
}


.vision-hero-text {
  margin: 13px 0 0;
  max-width: 740px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
}


/* ==========================================================
   CONTENT AREA
   ========================================================== */

.vision-content-section {
  padding: 42px 0 70px;
  background:
    linear-gradient(
      180deg,
      #f5f8fb 0%,
      #ffffff 100%
    );
}


/* Big single outer card */
.vision-mission-box {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #edf1f5;
  border-radius: 16px;

  box-shadow:
    0 12px 45px rgba(15, 45, 80, 0.07);
}


/* ==========================================================
   VISION / MISSION ROW
   ========================================================== */

.vm-row {
  display: grid;
  grid-template-columns: 0.92fr 1.35fr;
  align-items: stretch;
  min-height: 285px;
}


/* second row */
.vm-row-reverse {
  grid-template-columns: 1.35fr 0.92fr;
}


/* light divider between rows */
.vm-row + .vm-row {
  border-top: 1px solid #edf1f4;
}


/* ==========================================================
   TEXT
   ========================================================== */

.vm-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 42px 42px 46px;
}


/* Heading area */
.vm-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}


.vm-heading h2 {
  margin: 0;
  color: #073d93;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 800;
}


/* small blue line below heading */
.vm-heading-line {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 12px;
  border-radius: 10px;

  background: linear-gradient(
    90deg,
    #47a8d2,
    #a1d8d6
  );
}


/* icon background */
.vm-icon {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  border-radius: 50%;

  color: #397fb1;

  background:
    linear-gradient(
      145deg,
      #e8f5fa,
      #d9eef6
    );

  box-shadow:
    0 6px 18px rgba(31, 104, 146, 0.09);
}


.vm-content > p {
  margin: 0;
  max-width: 430px;

  color: #516477;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
}


/* ==========================================================
   IMAGE
   ========================================================== */

.vm-image-wrapper {
  min-height: 285px;
  overflow: hidden;

  padding: 18px;
}


.vm-image {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 250px;

  object-fit: cover;
  object-position: center;

  border-radius: 13px;

  transition:
    transform 0.55s ease,
    box-shadow 0.55s ease;
}


/* subtle professional hover */
.vm-image-wrapper:hover .vm-image {
  transform: scale(1.018);

  box-shadow:
    0 15px 32px rgba(17, 56, 94, 0.12);
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 950px) {

  .vision-page {
    padding-top: 82px;
  }

  .vision-hero {
    padding: 38px 0 42px;
  }

  .vm-row,
  .vm-row-reverse {
    grid-template-columns: 1fr 1fr;
  }

  .vm-content {
    padding: 32px;
  }

  .vm-heading h2 {
    font-size: 24px;
  }

  .vm-content > p {
    font-size: 13.5px;
    line-height: 1.75;
  }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 700px) {

  .vision-page {
    padding-top: 76px;
  }

  .vision-container {
    width: min(100% - 28px, 1180px);
  }

  .vision-hero {
    padding: 34px 0 38px;
  }

  .vision-kicker {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .vision-hero h1 {
    font-size: 34px;
    letter-spacing: -0.5px;
  }

  .vision-hero-text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.6;
  }


  .vision-content-section {
    padding: 25px 0 50px;
  }


  .vision-mission-box {
    border-radius: 14px;
  }


  .vm-row,
  .vm-row-reverse {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }


  /*
   Vision:
   text -> image
  */
  .vm-row .vm-content {
    order: 1;
  }

  .vm-row .vm-image-wrapper {
    order: 2;
  }


  /*
   Mission:
   image -> text
   like desktop/reference image
  */
  .vm-row-reverse .vm-image-wrapper {
    order: 1;
  }

  .vm-row-reverse .vm-content {
    order: 2;
  }


  .vm-content {
    padding: 28px 24px 18px;
  }


  .vm-heading {
    gap: 13px;
    margin-bottom: 15px;
  }


  .vm-icon {
    width: 46px;
    height: 46px;
  }


  .vm-icon svg {
    width: 23px;
    height: 23px;
  }


  .vm-heading h2 {
    font-size: 22px;
  }


  .vm-heading-line {
    width: 34px;
    margin-top: 8px;
  }


  .vm-content > p {
    max-width: none;
    font-size: 13px;
    line-height: 1.75;
  }


  .vm-image-wrapper {
    min-height: auto;
    padding: 14px 20px 24px;
  }


  .vm-image {
    min-height: 200px;
    max-height: 270px;
  }

}


/* very small mobiles */
@media (max-width: 420px) {

  .vision-container {
    width: calc(100% - 22px);
  }

  .vision-hero h1 {
    font-size: 29px;
  }

  .vision-hero-text {
    font-size: 12.5px;
  }

  .vm-content {
    padding: 24px 19px 15px;
  }

  .vm-image-wrapper {
    padding: 12px 16px 20px;
  }

  .vm-image {
    min-height: 180px;
  }

}
/* ================= REQUESTED LANDING HERO REVISION ================= */

.hero-section {
  min-height: 580px;
  padding: 118px 0 115px;
}

.hero-container {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 58px;
}

.hero-title {
  margin-top: 0;
  max-width: 760px;
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.16;
}

.hero-subtitle {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
}

.hero-visual-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 0 0 0 110px;
  box-shadow: 0 24px 58px rgba(2, 12, 27, 0.24);
}

.hero-visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 22% 25%, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(180deg, rgba(11,94,215,0.06), rgba(15,23,42,0.16));
  pointer-events: none;
}

.hero-visual-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
}

.hero-service-card-section {
  position: relative;
  z-index: 5;
  margin-top: -94px;
  padding: 0 0 64px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0) 0, rgba(15, 23, 42, 0) 72px, #ffffff 72px, #ffffff 100%);
}

.hero-service-card-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hero-service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 235px;
  padding: 28px 28px 24px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%) padding-box,
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(20,184,166,0.58), rgba(11,94,215,0.38)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 28px 58px rgba(2, 12, 27, 0.22);
  text-decoration: none;
  transform: translateY(0);
  transition: transform 0.32s cubic-bezier(.2,.65,.2,1), box-shadow 0.32s ease, border-color 0.32s ease;
}

.hero-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 84% 26%, rgba(20, 184, 166, 0.32), transparent 34%),
    radial-gradient(circle at 14% 82%, rgba(11, 94, 215, 0.32), transparent 42%),
    linear-gradient(135deg, #0F766E 0%, #1E3A8A 100%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.hero-service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: 0 34px 68px rgba(11, 94, 215, 0.28);
}

.hero-service-card:hover::before {
  opacity: 1;
}

.hero-service-card:hover h3,
.hero-service-card:hover p,
.hero-service-card:hover .card-cta {
  color: #ffffff;
}

.hero-service-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B5ED7, #14B8A6);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(11, 94, 215, 0.28);
  transition: background 0.32s ease, box-shadow 0.32s ease, color 0.32s ease;
}

.hero-service-card:hover .hero-service-icon {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32), 0 14px 28px rgba(2, 12, 27, 0.18);
  color: #ffffff;
}

.hero-service-card h3 {
  position: relative;
  z-index: 1;
  color: #050D4F;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 12px;
}

.hero-service-card p {
  position: relative;
  z-index: 1;
  color: #475569;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .hero-section {
    padding: 110px 0 105px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-visual-panel {
    min-height: 280px;
    border-radius: 28px;
  }

  .hero-visual-img {
    height: 280px;
  }

  .hero-service-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 105px 0 96px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-service-card-section {
    margin-top: -54px;
  }

  .hero-service-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-service-card {
    min-height: auto;
  }
}

/* ================= PELLET PLATFORM HOME SECTION ================= */

.pellet-platform-section {
  padding: 70px 0;
  background: #F8FAFC;
}

.pellet-platform-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}

.pellet-platform-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.pellet-platform-header p {
  color: #14B8A6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pellet-platform-header h2 {
  color: #1E3A8A;
  font-size: 34px;
  line-height: 1.22;
  font-weight: 900;
  margin-bottom: 14px;
}

.pellet-platform-header span {
  display: block;
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
}

.pellet-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pellet-platform-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 330px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  text-decoration: none;
  transition: all 0.25s ease;
}

.pellet-platform-card:hover {
  transform: translateY(-7px);
  border-color: #14B8A6;
  box-shadow: 0 24px 48px rgba(20, 184, 166, 0.18);
}

.pellet-platform-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.pellet-platform-card > span:not(.card-cta) {
  display: inline-flex;
  margin: 18px 20px 10px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #EAFDFB;
  color: #0F766E;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pellet-platform-card h3 {
  color: #1E3A8A;
  font-size: 18px;
  font-weight: 900;
  margin: 0 20px 10px;
}

.pellet-platform-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 20px 22px;
}

@media (max-width: 1024px) {
  .pellet-platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pellet-platform-grid {
    grid-template-columns: 1fr;
  }

  .pellet-platform-header h2 {
    font-size: 27px;
  }
}

/* ================= CAPABILITY SECTION ================= */

.capability-section {
  padding: 66px 0;
  background: #F8FAFC;
}

.capability-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}

.capability-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.capability-kicker {
  color: #14B8A6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.capability-header h2 {
  color: #1E3A8A;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 900;
}

.capability-header p {
  margin-top: 14px;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.capability-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 30px 26px;
  border-radius: 24px;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  transition: all 0.25s ease;
}

.capability-card:nth-child(1) {
  background: linear-gradient(135deg, #1E3A8A, #0B5ED7);
}

.capability-card:nth-child(2) {
  background: linear-gradient(135deg, #0F766E, #14B8A6);
}

.capability-card:nth-child(3) {
  background: linear-gradient(135deg, #0F172A, #1E3A8A);
}

.capability-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 48px rgba(15, 23, 42, 0.22);
}

.capability-card h3 {
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 14px;
  color: #ffffff;
}

.capability-card p {
  color: #EAF2FF;
  font-size: 14px;
  line-height: 1.7;
}

.capability-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.capability-card a:hover {
  text-decoration: underline;
}

.page-share-bar {
  max-width: 1180px;
  margin: -28px auto 0;
  padding: 0 22px;
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: flex-end;
}

.page-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(20, 184, 166, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0F766E;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-share-btn span {
  font-size: 16px;
  line-height: 1;
}

.page-share-btn:hover,
.page-share-btn:focus-visible {
  transform: translateY(-2px);
  border-color: #14B8A6;
  box-shadow: 0 20px 38px rgba(20, 184, 166, 0.18);
  outline: none;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 10000;
  transform: translate(-50%, 18px);
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0F766E 0%, #1E3A8A 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(2, 12, 27, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-toast--show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.card-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: auto;
  margin-left: auto;
  padding-top: 18px;
  color: #0F766E;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.card-cta span {
  transition: transform 0.25s ease;
}

a:hover .card-cta span,
.card-cta:hover span {
  transform: translateX(4px);
}

.hero-service-card:focus-visible,
.pellet-platform-card:focus-visible,
.service-card .card-cta:focus-visible,
.capability-card .card-cta:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.55);
  outline-offset: 4px;
}

.service-card:hover .card-cta,
.pellet-platform-card:hover .card-cta,
.capability-card .card-cta,
.detail-link-card:hover .card-cta,
.product-category-card:hover .card-cta {
  color: #ffffff;
}

.product-category-card .card-cta,
.detail-link-card .card-cta {
  color: #0F766E;
}

.pellet-platform-card .card-cta {
  margin-right: 20px;
  margin-bottom: 20px;
}

.product-category-card .card-cta,
.detail-link-card .card-cta {
  margin-top: auto;
  padding-top: 18px;
}

.product-category-card p,
.product-inline-header span,
.product-list-download p {
  color: #334155;
}

@media (max-width: 900px) {
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-header h2 {
    font-size: 27px;
  }
}

/* ================= FINAL CTA ================= */

.final-cta-section {
  padding: 58px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 20%, rgba(20, 184, 166, 0.32), transparent 40%),
    radial-gradient(circle at 88% 60%, rgba(11, 94, 215, 0.32), transparent 45%),
    linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
}

.final-cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.final-cta-content {
  max-width: 760px;
}

.final-cta-kicker {
  color: #BFFBF4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.final-cta-content h2 {
  color: #ffffff;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 900;
}

.final-cta-content p {
  margin-top: 14px;
  color: #EAF2FF;
  font-size: 15px;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.final-cta-primary,
.final-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.final-cta-primary {
  background: #ffffff;
  color: #0B5ED7;
}

.final-cta-secondary {
  border: 1px solid rgba(255,255,255,0.55);
  color: #ffffff;
}

.final-cta-primary:hover,
.final-cta-secondary:hover {
  background: #14B8A6;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta-content h2 {
    font-size: 27px;
  }
}

/* ================= LEADERSHIP PAGE ================= */

.leadership-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 22px 0;
  display: grid;
  gap: 34px;
}

.leader-profile-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.10);
  transition: all 0.25s ease;
}

.leader-profile-card--featured {
  border-color: rgba(20, 184, 166, 0.38);
}

.leader-profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(11, 94, 215, 0.16);
}

.leader-profile-img {
  min-height: 520px;
  height: 100%;
  background: #EAF2FF;
  overflow: hidden;
  padding: 0;
}

.leader-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  filter: saturate(1.02) contrast(1.02);
}

.leader-profile-body {
  padding: 38px;
}

.leader-role {
  color: #14B8A6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.leader-profile-body h2 {
  color: #1E3A8A;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 900;
  margin-bottom: 16px;
}

.leader-profile-body p,
.leader-detail-grid p {
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
}

.leader-intro {
  font-size: 16px !important;
  color: #334155 !important;
  margin-bottom: 24px;
}

.leader-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.leader-detail-grid div {
  padding: 18px;
  border-radius: 18px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

.leader-detail-grid h3 {
  color: #0B5ED7;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .leader-profile-card {
    grid-template-columns: 1fr;
  }

  .leader-profile-img {
    min-height: 0;
    height: auto;
    background: #F8FAFC;
  }

  .leader-profile-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }
}

@media (max-width: 640px) {
  .leadership-section {
    padding: 38px 14px 0;
    gap: 24px;
  }

  .leader-profile-img {
    min-height: 0;
    height: auto;
    border-radius: 24px 24px 0 0;
    background: #F8FAFC;
  }

  .leader-profile-img img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    object-fit: cover;
    object-position: center top;
  }

  .leader-profile-body {
    padding: 24px 20px;
  }

  .leader-profile-body h2 {
    font-size: 26px;
  }

  .leader-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= PRODUCTS PAGE ================= */

.product-page-card {
  min-height: 240px;
  padding: 28px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: all 0.25s ease;
}

.product-page-card h2 {
  color: #1E3A8A;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}

.product-page-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.product-page-card:hover {
  transform: translateY(-6px);
  border-color: #14B8A6;
  box-shadow: 0 22px 44px rgba(20, 184, 166, 0.16);
}

.product-list-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 20%, rgba(20, 184, 166, 0.22), transparent 34%),
    linear-gradient(135deg, #1E3A8A, #0B5ED7);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(11, 94, 215, 0.18);
}

.product-list-kicker {
  color: #1c7e76;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-radius: 2px;
  padding-left:5px;
}

.product-list-download h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
}

.product-list-download p {
  max-width: 720px;
  color: #EAF2FF;
  font-size: 15px;
  line-height: 1.7;
}

.product-list-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #0B5ED7;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.product-list-download-btn:hover {
  background: #14B8A6;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 780px) {
  .product-list-download {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ================= SHARED DETAIL PAGES ================= */

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 76px;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 20%, rgba(20, 184, 166, 0.32), transparent 36%),
    linear-gradient(135deg, #1E3A8A 0%, #0B5ED7 58%, #0F172A 100%);
}

.detail-hero--about {
  background:
    radial-gradient(circle at 12% 18%, rgba(20, 184, 166, 0.30), transparent 36%),
    linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
}

.detail-hero--services {
  background:
    radial-gradient(circle at 84% 26%, rgba(20, 184, 166, 0.32), transparent 34%),
    linear-gradient(135deg, #0F766E 0%, #1E3A8A 100%);
}

.detail-hero--products {
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #0B5ED7 0%, #1E3A8A 55%, #0F172A 100%);
}

.detail-hero--rnd {
  background:
    radial-gradient(circle at 18% 24%, rgba(20, 184, 166, 0.26), transparent 34%),
    radial-gradient(circle at 84% 32%, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(135deg, #0F766E 0%, #0B5ED7 48%, #1E3A8A 100%);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
}

.detail-hero-inner {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 22px;
}

.detail-kicker {
  color: #BFFBF4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.detail-hero h1 {
  max-width: 840px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
}

.detail-hero p:not(.detail-kicker) {
  max-width: 820px;
  margin-top: 18px;
  color: #EAF2FF;
  font-size: 17px;
  line-height: 1.75;
}

.detail-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 22px 0;
}

.detail-section--compact {
  padding-top: 42px;
}

.detail-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 40px;
}

.detail-copy h2 {
  color: #1E3A8A;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 16px;
}

.detail-copy p {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.detail-image-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.detail-image-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.detail-image-card--rounded {
  border-radius: 26px;
}

.detail-card-grid,
.product-category-grid,
.product-item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.detail-card-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.detail-card-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.detail-feature-card,
.detail-link-card,
.product-category-card,
.product-item-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 26px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  text-decoration: none;
  transition: all 0.25s ease;
}

.detail-feature-card:hover,
.detail-link-card:hover,
.product-category-card:hover,
.product-item-card:hover {
  transform: translateY(-6px);
  border-color: #14B8A6;
  box-shadow: 0 22px 44px rgba(20, 184, 166, 0.16);
}

.detail-link-card > span:not(.card-cta),
.product-category-card > span:not(.card-cta) {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: #EAFDFB;
  color: #0F766E;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.detail-feature-card h2,
.detail-feature-card h3,
.detail-link-card h2,
.product-category-card h2,
.product-item-card h3 {
  color: #1E3A8A;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 12px;
}

.detail-feature-card--large h2 {
  font-size: 28px;
}

.detail-feature-card--image {
  padding: 0;
}

.detail-feature-card--image h3,
.detail-feature-card--image p {
  margin-left: 22px;
  margin-right: 22px;
}

.detail-feature-card--image h3 {
  margin-top: 18px;
}

.detail-feature-card--image p {
  margin-bottom: 22px;
}

.detail-card-image,
.detail-feature-card--image img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.detail-feature-card--large .detail-card-image {
  height: 210px;
  margin: -26px -24px 22px;
  width: calc(100% + 48px);
}

.detail-feature-card p,
.detail-link-card p,
.product-category-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.product-item-card {
  min-height: 150px;
}

.product-item-card span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #EAFDFB;
  color: #0F766E;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.product-item-card a {
  display: inline-flex;
  margin-top: 10px;
  color: #0B5ED7;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.product-item-card a:hover {
  color: #14B8A6;
}

.detail-cta {
  margin-top: 34px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1E3A8A, #0B5ED7);
  color: #ffffff;
}

.detail-cta h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
}

.detail-cta p {
  max-width: 760px;
  color: #EAF2FF;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.detail-cta a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #0B5ED7;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.detail-cta a:hover {
  background: #14B8A6;
  color: #ffffff;
}

/* ================= PROFESSIONAL CARD HOVER SYSTEM ================= */

.career-card,
.career-opening-card,
.contact-info-card,
.detail-feature-card,
.detail-link-card,
.product-category-card,
.product-item-card,
.product-page-card,
.service-card,
.services-page-card,
.services-detail-card,
.qbd-card,
.rnd-card,
.capability-card,
.pellet-platform-card,
.hero-service-card,
.leader-detail-grid div {
  will-change: transform;
}

.career-card::after,
.career-opening-card::after,
.contact-info-card::after,
.detail-feature-card::after,
.detail-link-card::after,
.product-category-card::after,
.product-item-card::after,
.product-page-card::after,
.services-page-card::after,
.services-detail-card::after,
.qbd-card::after,
.rnd-card::after,
.pellet-platform-card::after,
.leader-detail-grid div::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 84% 26%, rgba(20, 184, 166, 0.32), transparent 34%),
    linear-gradient(135deg, #0F766E 0%, #1E3A8A 100%);
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.career-card,
.career-opening-card,
.contact-info-card,
.detail-feature-card,
.detail-link-card,
.product-category-card,
.product-item-card,
.product-page-card,
.services-page-card,
.services-detail-card,
.qbd-card,
.rnd-card,
.pellet-platform-card,
.leader-detail-grid div {
  position: relative;
  overflow: hidden;
}

.career-card > *,
.career-opening-card > *,
.contact-info-card > *,
.detail-feature-card > *,
.detail-link-card > *,
.product-category-card > *,
.product-item-card > *,
.product-page-card > *,
.services-page-card > *,
.services-detail-card > *,
.qbd-card > *,
.rnd-card > *,
.pellet-platform-card > *,
.leader-detail-grid div > * {
  position: relative;
  z-index: 1;
}

.career-card:hover::after,
.career-opening-card:hover::after,
.contact-info-card:hover::after,
.detail-feature-card:hover::after,
.detail-link-card:hover::after,
.product-category-card:hover::after,
.product-item-card:hover::after,
.product-page-card:hover::after,
.services-page-card:hover::after,
.services-detail-card:hover::after,
.qbd-card:hover::after,
.rnd-card:hover::after,
.pellet-platform-card:hover::after,
.leader-detail-grid div:hover::after {
  opacity: 1;
}

.career-card:hover h2,
.career-card:hover p,
.career-card:hover a,
.career-opening-card:hover h3,
.career-opening-card:hover p,
.career-opening-card:hover a,
.contact-info-card:hover h2,
.contact-info-card:hover p,
.contact-info-card:hover a,
.detail-feature-card:hover h2,
.detail-feature-card:hover h3,
.detail-feature-card:hover p,
.detail-link-card:hover h2,
.detail-link-card:hover p,
.product-category-card:hover h2,
.product-category-card:hover p,
.product-item-card:hover h3,
.product-item-card:hover a,
.product-page-card:hover h2,
.product-page-card:hover p,
.services-page-card:hover h2,
.services-page-card:hover li,
.services-detail-card:hover h3,
.services-detail-card:hover p,
.qbd-card:hover h3,
.qbd-card:hover p,
.rnd-card:hover h2,
.rnd-card:hover p,
.pellet-platform-card:hover h3,
.pellet-platform-card:hover p,
.leader-detail-grid div:hover h3,
.leader-detail-grid div:hover p {
  color: #ffffff;
}

.product-category-card:hover > span:not(.card-cta),
.product-item-card:hover span,
.detail-link-card:hover > span:not(.card-cta),
.pellet-platform-card:hover > span:not(.card-cta) {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}

.product-category-card::after,
.product-item-card::after,
.product-page-card::after {
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #0B5ED7 0%, #1E3A8A 55%, #0F172A 100%);
}

.rnd-card::after {
  background:
    radial-gradient(circle at 18% 24%, rgba(20, 184, 166, 0.26), transparent 34%),
    linear-gradient(135deg, #0F766E 0%, #0B5ED7 48%, #1E3A8A 100%);
}

.content-loading-card {
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: 18px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
}

/* ================= FLOATING ACTIONS ================= */

/* =====================================================
   FLOATING ACTIONS
   ===================================================== */

.floating-actions {
  position: fixed;

  right: 14px;
  top: 50%;

  transform: translateY(-50%);

  z-index: 9000;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 9px;

  pointer-events: auto;
}


/* ================= CONTACT US ================= */

.floating-contact-us {
  min-height: 126px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 15px 10px;

  writing-mode: vertical-rl;
  transform: rotate(180deg);

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      #0B5ED7,
      #14B8A6
    );

  color: #ffffff;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.05em;

  text-decoration: none;

  box-shadow:
    0 12px 28px
    rgba(15, 23, 42, 0.24);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}


.floating-contact-us:hover {
  color: #ffffff;

  transform:
    rotate(180deg)
    translateY(3px);

  box-shadow:
    0 16px 32px
    rgba(11, 94, 215, 0.3);
}


/* ================= ROUND BUTTONS ================= */

.floating-action {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;

  color: #ffffff;

  cursor: pointer;
  text-decoration: none;

  flex-shrink: 0;

  box-shadow:
    0 10px 24px
    rgba(15, 23, 42, 0.22);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;

  pointer-events: auto;
}


.floating-action:hover {
  transform: translateX(-3px);

  box-shadow:
    0 14px 30px
    rgba(15, 23, 42, 0.30);
}


/* Phone */

.floating-phone {
  background:
    linear-gradient(
      135deg,
      #0F766E,
      #14B8A6
    );
}


/* Email */

.floating-email {
  background:
    linear-gradient(
      135deg,
      #1E3A8A,
      #0B5ED7
    );
}


/* LinkedIn */

.floating-linkedin {
  background: #0A66C2;
}


/* ================= SCROLL TO TOP ================= */

.floating-top {
  background: #ffffff;
  color: #1E3A8A;

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}


.floating-top.show {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}


.floating-top:hover {
  background: #1E3A8A;
  color: #ffffff;
}


/* =====================================================
   TABLET
   Contact Us + scroll top only.
   Header navigation remains normal.
   ===================================================== */

@media (min-width: 641px) {

  .floating-actions {
    right: 18px;
  }

}

/* =========================================
   FLOATING ICON READING-FRIENDLY ANIMATION
   ========================================= */

.floating-actions {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Soft idle state */
@media (max-width: 950px) {
  .floating-actions {
    opacity: 0.72;
    transform: translateY(-50%) translateX(5px);
  }

  .floating-actions:hover,
  .floating-actions:focus-within,
  .floating-actions.floating-active {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  .floating-action,
  .floating-contact-us {
    transition:
      transform 0.25s ease,
      opacity 0.25s ease,
      box-shadow 0.25s ease;
  }

  .floating-action:active {
    transform: scale(0.92);
  }

  .floating-contact-us:active {
    transform: rotate(180deg) scale(0.96);
  }
}

/* Very small screen - keep closer to edge */
@media (max-width: 480px) {
  .floating-actions {
    right: 4px;
    opacity: 0.68;
  }

  .floating-actions.floating-active {
    opacity: 1;
  }
}

/* =====================================================
   MOBILE
   Contact + phone/email/linkedin + top.
   ===================================================== */

@media (max-width: 640px) {

  .floating-actions {
    right: 9px;
    top: 55%;

    gap: 7px;
  }


  .floating-contact-us {
    min-height: 105px;

    padding: 12px 8px;

    font-size: 11px;
  }


  .floating-action {
    width: 40px;
    height: 40px;
  }


  .floating-action svg {
    width: 18px;
    height: 18px;
  }

}


@media (max-width: 1024px) {

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

}

/* =====================================================
   MOBILE HEADER ONLY
   ===================================================== */

@media (max-width: 950px) {

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }


  .site-nav-inner {
    padding: 9px 14px;
  }


  .site-logo {
    gap: 8px;
  }


  .site-logo img {
    width: 38px;
    height: 38px;
  }


  .site-logo span {
    font-size: 11px;
    letter-spacing: 0;
  }


  .mobile-menu-btn {
    padding: 7px 10px;
    font-size: 20px;
  }


  .mobile-nav {
    padding: 8px 12px 14px;

    max-height:
      calc(100vh - 96px);

    overflow-y: auto;

    border-top:
      1px solid #E2E8F0;
  }

}


/* =====================================================
   TABLET + DESKTOP
   ===================================================== */

@media (min-width: 641px) {

  .desktop-nav {
    display: flex;
  }


  .mobile-menu-btn {
    display: none;
  }


  #mobileNav {
    display: none !important;
  }

}
/* Mobile:
   Floating contact icons are available,
   so hide the contact information from header */
@media (max-width: 640px) {
  .header-contact-inner {
    display: none !important;
  }

  /* Optional: remove the whole empty strip */
  .header-contact-strip {
    display: none !important;
  }
}

/* ================= TABLE RESPONSIVE SAFETY ================= */

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 12px 14px;
  border: 1px solid #E2E8F0;
  text-align: left;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .detail-two-col,
  .detail-card-grid,
  .detail-card-grid--two,
  .detail-card-grid--four,
  .product-category-grid,
  .product-item-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .detail-hero {
    padding: 66px 0 56px;
  }

  .detail-hero p:not(.detail-kicker) {
    font-size: 15px;
  }

  .detail-image-card img {
    height: 240px;
  }
}

/* ================= MOBILE POLISH OVERRIDES ================= */

@media (max-width: 780px) {
  main.pt-32 {
    padding-top: 4.75rem;
  }

  .hero-section {
    min-height: auto;
    padding: 94px 0 92px;
  }

  .hero-actions {
    gap: 9px;
  }

  .hero-btn-primary,
  .hero-btn-outline,
  .hero-btn-light,
  .final-cta-primary,
  .final-cta-secondary,
  .contact-submit-btn,
  .career-submit-btn {
    width: 100%;
    border-radius: 14px;
    white-space: normal;
    text-align: center;
  }

  .hero-service-card-grid,
  .pellet-platform-grid,
  .qbd-grid,
  .services-grid,
  .product-inner,
  .capability-grid,
  .detail-card-grid,
  .product-category-grid,
  .product-item-grid,
  .career-openings-grid,
  .career-apply-layout {
    grid-template-columns: 1fr;
  }

  .hero-service-card {
    padding: 24px 22px;
  }

  .hero-service-card h3,
  .pellet-platform-card h3,
  .product-content h2,
  .services-title,
  .qbd-title,
  .capability-header h2,
  .final-cta-content h2,
  .detail-copy h2 {
    font-size: 25px;
  }

  .product-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-thumb {
    width: 100%;
    height: 138px;
    border-radius: 16px;
  }

  .final-cta-inner,
  .product-list-download {
    align-items: stretch;
  }

  .contact-form-card,
  .career-form-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .contact-highlight-section {
    padding: 34px 0 40px;
  }

  .contact-highlight-title {
    font-size: 28px;
  }

  .page-skeleton-inner {
    grid-template-columns: 1fr;
    padding: 46px 18px;
  }

  .page-skeleton-card {
    height: 190px;
  }

  .skeleton-nav {
    display: none;
  }

  .skeleton-logo {
    width: 210px;
  }

  .floating-actions {
    right: 10px;
  }

  .floating-contact {
    min-height: 112px;
    padding: 13px 9px;
    font-size: 12px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 25px;
  }

  .hero-subtitle,
  .detail-hero p:not(.detail-kicker) {
    font-size: 13px;
  }

  .hero-service-icon {
    width: 58px;
    height: 58px;
    font-size: 14px;
  }
}


/* ================= R&D PAGE ================= */

.rnd-card {
  min-height: 260px;
  padding: 28px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: all 0.25s ease;
}

.rnd-card span {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: #EAFDFB;
  color: #0F766E;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.rnd-card h2 {
  color: #1E3A8A;
  font-size: 21px;
  line-height: 1.28;
  font-weight: 900;
  margin-bottom: 12px;
}

.rnd-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.rnd-card:hover {
  transform: translateY(-8px);
  border-color: #14B8A6;
  box-shadow: 0 22px 44px rgba(20, 184, 166, 0.16);
}

.rnd-card:hover span {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}

.rnd-expertise-panel {
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 24%, rgba(20, 184, 166, 0.18), transparent 32%),
    linear-gradient(135deg, #F8FAFC, #ffffff);
  border: 1px solid #E2E8F0;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.rnd-expertise-panel h2 {
  max-width: 820px;
  color: #1E3A8A;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 24px;
}

.rnd-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.rnd-chip {
  padding: 16px 18px;
  border-radius: 18px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  color: #1E3A8A;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
}

.rnd-chip:hover {
  background:
    radial-gradient(circle at 18% 24%, rgba(20, 184, 166, 0.26), transparent 34%),
    linear-gradient(135deg, #0F766E 0%, #0B5ED7 48%, #1E3A8A 100%);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(11, 94, 215, 0.20);
}

@media (max-width: 1024px) {
  .rnd-chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .rnd-expertise-panel {
    padding: 24px 18px;
  }

  .rnd-expertise-panel h2 {
    font-size: 24px;
  }

  .rnd-chip-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= SERVICES PAGE ================= */

.services-page-card {
  min-height: 330px;
  padding: 28px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: all 0.25s ease;
}

.services-page-card:hover {
  transform: translateY(-6px);
  border-color: #14B8A6;
  box-shadow: 0 22px 44px rgba(20, 184, 166, 0.16);
}

.services-page-pill {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: #EAFDFB;
  color: #0F766E;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.services-page-card h2 {
  color: #1E3A8A;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 14px;
}

.services-page-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-page-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 9px;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.services-page-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #14B8A6;
  font-weight: 900;
}

.services-detail-card {
  padding: 26px 24px;
  border-radius: 24px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.services-detail-card h3 {
  color: #1E3A8A;
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 12px;
}

.services-detail-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

/* ================= CAREERS PAGE ================= */

.career-card {
  min-height: 220px;
  padding: 28px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: all 0.25s ease;
}

.career-card h2 {
  color: #1E3A8A;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}

.career-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.career-card:hover {
  transform: translateY(-6px);
  border-color: #14B8A6;
  box-shadow: 0 22px 44px rgba(20, 184, 166, 0.16);
}

.career-apply-card {
  background: linear-gradient(135deg, #1E3A8A, #0B5ED7);
}

.career-apply-card h2,
.career-apply-card p,
.career-apply-card a {
  color: #ffffff;
}

.career-apply-card a {
  font-weight: 900;
  text-decoration: underline;
}

.career-section-header {
  max-width: 780px;
  margin-bottom: 30px;
}

.career-section-header p,
.career-apply-kicker {
  color: #14B8A6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.career-section-header h2,
.career-apply-intro h2 {
  color: #1E3A8A;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 12px;
}

.career-section-header span,
.career-apply-intro p {
  display: block;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.career-openings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.career-opening-card {
  min-height: 220px;
  padding: 26px 24px;
  border-radius: 24px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: all 0.25s ease;
}

.career-opening-card:hover {
  transform: translateY(-6px);
  border-color: #14B8A6;
  box-shadow: 0 22px 44px rgba(20, 184, 166, 0.16);
}

.career-opening-card h3 {
  color: #1E3A8A;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}

.career-opening-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.career-opening-card a {
  color: #0B5ED7;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.career-opening-card a:hover {
  color: #14B8A6;
}

.career-apply-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 34px;
  align-items: start;
}

.career-apply-intro {
  position: sticky;
  top: 125px;
}

.career-privacy-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #EAFDFB;
  color: #0F766E;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 800;
  border: 1px solid #BFFBF4;
}

.career-form-card {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.career-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.career-form-card label {
  display: block;
  color: #1E3A8A;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 7px;
}

.career-form-card input,
.career-form-card select,
.career-form-card textarea {
  width: 100%;
  border: 1px solid #CBD5E1;
  border-radius: 14px;
  padding: 12px 14px;
  color: #1F2937;
  font-size: 14px;
  outline: none;
  background: #ffffff;
}

.career-form-card input:focus,
.career-form-card select:focus,
.career-form-card textarea:focus {
  border-color: #0B5ED7;
  box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
}

.career-form-card input[type="file"] {
  padding: 10px;
}

.career-form-card small {
  display: block;
  margin-top: 7px;
  color: #64748B;
  font-size: 12px;
  line-height: 1.5;
}

.career-full {
  grid-column: 1 / -1;
}

.career-submit-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #0B5ED7;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.career-submit-btn:hover {
  background: #1E3A8A;
  transform: translateY(-2px);
}

.career-form-msg {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.career-form-msg--success {
  color: #0F766E;
  background: #EAFDFB;
  border: 1px solid #BFFBF4;
}

.career-form-msg--error {
  color: #991B1B;
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

@media (max-width: 1024px) {
  .career-openings-grid,
  .career-apply-layout {
    grid-template-columns: 1fr;
  }

  .career-apply-intro {
    position: static;
  }
}

@media (max-width: 768px) {
  .career-form-grid {
    grid-template-columns: 1fr;
  }

  .career-section-header h2,
  .career-apply-intro h2 {
    font-size: 26px;
  }
}

/* ================= CONTACT PAGE ================= */

.contact-info-card,
.contact-form-card,
.contact-map-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.contact-highlight-section {
  padding: 46px 0 58px;
  background:
    radial-gradient(circle at 84% 26%, rgba(20, 184, 166, 0.32), transparent 34%),
    linear-gradient(135deg, #0F766E 0%, #1E3A8A 100%);
  color: #ffffff;
}

.contact-highlight-kicker {
  color: #B8FFF5;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-highlight-title {
  margin-top: 10px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 900;
}

.contact-highlight-copy {
  margin: 16px auto 0;
  max-width: 760px;
  color: #EAFDFB;
  font-size: 16px;
  line-height: 1.7;
}

.contact-highlight-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #0F766E;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(2, 12, 27, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-highlight-btn:hover,
.contact-highlight-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(2, 12, 27, 0.3);
  outline: none;
}

.contact-main-grid {
  align-items: stretch;
  margin-top: 42px;
}

.contact-info-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-info-stack > * {
  margin-top: 0 !important;
}

.contact-info-stack .contact-info-card {
  min-height: 142px;
}

.contact-form-panel {
  height: 100%;
}

.contact-map-panel {
  margin-top: 34px;
}

.product-inline-category {
  margin-top: 42px;
  padding: 30px;
  border-radius: 24px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

.product-inline-header {
  max-width: 100%;
  margin-bottom: 24px;
}

.product-inline-header h2 {
  margin-top: 8px;
  color: #1E3A8A;
  font-size: 28px;
  font-weight: 900;
}

.product-inline-header span {
  display: block;
  margin-top: 10px;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .contact-highlight-section {
    padding: 34px 0 40px;
  }

  .contact-highlight-title {
    font-size: 28px;
  }

  .product-inline-category {
    padding: 22px 18px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .page-loader-mark,
  .page-loader-mark::after {
    animation: none !important;
  }
}

.contact-info-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-card h2 {
  color: #1E3A8A;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

.contact-info-card strong {
  display: inline-block;
  margin-top: 8px;
  color: #1E3A8A;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-map-card {
  overflow: hidden;
}

.contact-info-card a {
  text-decoration: none;
}

.contact-info-card a:hover {
  color: #0B5ED7;
}

.contact-response-box {
  padding: 18px 20px;
  border-radius: 18px;
  background: #EAFDFB;
  color: #0F766E;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid #BFFBF4;
  display: flex;
  align-items: center;
}

.contact-form-card {
  padding: 30px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-form-card label {
  display: block;
  color: #1E3A8A;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 7px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid #CBD5E1;
  border-radius: 14px;
  padding: 12px 14px;
  color: #1F2937;
  font-size: 14px;
  outline: none;
  background: #ffffff;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: #0B5ED7;
  box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
}

.contact-full {
  grid-column: 1 / -1;
}

.contact-submit-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #0B5ED7;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-submit-btn:hover {
  background: #1E3A8A;
  transform: translateY(-2px);
}

.contact-success-msg {
  margin-top: 14px;
  color: #0F766E;
  font-size: 14px;
  font-weight: 800;
}

.contact-map-card {
  overflow: hidden;
}

.contact-map-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

@media (max-width: 1024px) {
  .contact-main-grid {
    gap: 24px;
    margin-top: 34px;
  }

  .contact-info-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-response-box {
    grid-column: 1 / -1;
  }

  .contact-info-stack .contact-info-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .contact-info-stack {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-main-grid {
    margin-top: 26px;
    gap: 18px;
  }

  .contact-info-card,
  .contact-form-card,
  .contact-map-card {
    border-radius: 18px;
  }

  .contact-info-card {
    padding: 20px;
    align-items: flex-start;
  }

  .contact-form-card {
    padding: 22px 18px;
  }

  .contact-form-grid {
    gap: 16px;
  }

  .contact-map-panel {
    margin-top: 24px;
  }

  .contact-map-card iframe {
    height: 300px;
  }
}

/* ================= FOOTER ================= */

.site-footer {
  background: #0F172A;
  color: #ffffff;
  margin-top: 0;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 52px 22px 36px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 34px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #CBD5E1;
  font-size: 14px;
  line-height: 1.7;
}

.footer-small {
  margin-top: 12px;
  max-width: 360px;
}

.footer-col h4 {
  color: #14B8A6;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #CBD5E1;
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px 22px;
  text-align: center;
  color: #CBD5E1;
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}




/* =========================================================
   FINAL RESPONSIVE HEADER + FLOATING ACTION OVERRIDES
   Breakpoint:
   - 951px and above: desktop/tablet navigation
   - 950px and below: hamburger + floating contact icons
   ========================================================= */

/* ---------- Desktop / tablet navigation: 951px+ ---------- */
@media (min-width: 951px) {
  .desktop-nav {
    display: flex !important;
    align-items: center;
  }

  .mobile-menu-btn {
    display: none !important;
  }

  #mobileNav,
  .mobile-nav {
    display: none !important;
  }

  .header-contact-strip {
    display: block !important;
  }

  .header-contact-inner {
    display: flex !important;
  }

  /* Desktop/tablet: phone/email/linkedin floating icons are hidden */
  .floating-phone,
  .floating-email,
  .floating-linkedin {
    display: none !important;
  }
}

/* ---------- Hamburger/mobile mode: <=950px ---------- */
@media (max-width: 950px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  /* .hidden still controls whether the mobile menu is open */
  #mobileNav.mobile-nav:not(.hidden) {
    display: block !important;
  }

  .site-nav-inner {
    padding: 9px 14px;
  }

  .site-logo {
    gap: 8px;
  }

  .site-logo img {
    width: 38px;
    height: 38px;
  }

  .site-logo span {
    font-size: 12px;
    letter-spacing: 0.01em;
  }

  .mobile-menu-btn {
    padding: 7px 10px;
    font-size: 20px;
    line-height: 1;
  }

  .mobile-nav {
    padding: 8px 12px 14px;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    border-top: 1px solid #E2E8F0;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  }

  /* Header phone/email strip is replaced by floating icons */
  .header-contact-strip {
    display: none !important;
  }

  .header-contact-inner {
    display: none !important;
  }

  .floating-phone,
  .floating-email,
  .floating-linkedin {
    display: flex !important;
  }
}

/* ---------- Very small phones ---------- */
@media (max-width: 480px) {
  .site-logo span {
    font-size: 10.5px;
  }

  .site-logo img {
    width: 35px;
    height: 35px;
  }

  .floating-actions {
    right: 8px;
    top: 54%;
    gap: 7px;
  }

  .floating-action {
    width: 40px;
    height: 40px;
  }

  .floating-contact-us {
    min-height: 102px;
    padding: 11px 8px;
    font-size: 10.5px;
  }
}

/* =========================================================
   FLOATING ACTIONS — FINAL BEHAVIOUR
   - Contact Us: all screen sizes except contact page (JS)
   - Back to top: all screen sizes after scroll (JS)
   - Phone / Email / LinkedIn: only <=950px
   ========================================================= */

.floating-actions {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  pointer-events: auto;
}

.floating-contact-us {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-radius: 999px;
  background: linear-gradient(135deg, #0B5ED7, #14B8A6);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-contact-us:hover,
.floating-contact-us:focus-visible {
  color: #ffffff;
  transform: rotate(180deg) translateY(3px);
  box-shadow: 0 16px 32px rgba(11, 94, 215, 0.30);
  outline: none;
}

.floating-action {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
  pointer-events: auto;
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateX(-3px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.30);
  outline: none;
}

.floating-phone {
  background: linear-gradient(135deg, #0F766E, #14B8A6);
}

.floating-email {
  background: linear-gradient(135deg, #1E3A8A, #0B5ED7);
}

.floating-linkedin {
  background: #0A66C2;
}

.floating-top {
  background: #ffffff;
  color: #1E3A8A;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.floating-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-top:hover,
.floating-top:focus-visible {
  background: #1E3A8A;
  color: #ffffff;
}

/* ================= FINAL REVIEW FIXES ================= */


.product-category-card h2,
.product-category-card p,
.product-item-card h3,
.product-item-card p {
  color: #172554;
}

.product-category-card .card-cta,
.product-item-card a {
  color: #064E3B;
}

.product-category-card:hover h2,
.product-category-card:hover p,
.product-category-card:hover .card-cta,
.product-item-card:hover h3,
.product-item-card:hover p,
.product-item-card:hover a {
  color: #ffffff;
}

.contact-info-card strong {
  color: #063F78;
  background: #EAFDFB;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  padding: 3px 8px;
  margin-bottom: 3px;
}

.contact-info-card:hover strong,
.contact-info-card:focus-within strong {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-info-card:hover a,
.contact-info-card:focus-within a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rnd-card,
.rnd-card + .rnd-card {
  margin: 0;
}

.rnd-expertise-panel .detail-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  color: #063F78;
  background: #EAFDFB;
  border: 1px solid rgba(20, 184, 166, 0.25);
}

.crs-reference-hero {
  margin: 0 auto;
  max-width: 1240px;
  padding: 24px 22px 0;
}

.crs-reference-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.10);
}

.crs-reference-copy h1 {
  margin-top: 10px;
  color: #1E3A8A;
  font-size: 40px;
  line-height: 1.13;
  font-weight: 900;
}

.crs-reference-copy > p:not(.detail-kicker) {
  margin-top: 16px;
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
}

.crs-reference-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0F766E, #1E3A8A);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.18);
}

.crs-reference-btn:hover {
  transform: translateY(-2px);
}

.crs-reference-image {
  overflow: hidden;
  border-radius: 24px;
  background: #F8FAFC;
}

.crs-reference-image img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.crs-reference-services {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 22px 0;
}

.crs-reference-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.crs-reference-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.crs-reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 84% 26%, rgba(20, 184, 166, 0.32), transparent 34%),
    linear-gradient(135deg, #0F766E 0%, #1E3A8A 100%);
  transition: opacity 0.25s ease;
}

.crs-reference-card > * {
  position: relative;
  z-index: 1;
}

.crs-reference-card:hover {
  transform: translateY(-6px);
  border-color: #14B8A6;
  box-shadow: 0 24px 48px rgba(20, 184, 166, 0.18);
}

.crs-reference-card:hover::after {
  opacity: 1;
}

.crs-reference-no {
  display: inline-flex;
  margin-bottom: 14px;
  color: #14B8A6;
  font-size: 13px;
  font-weight: 900;
}

.crs-reference-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B5ED7, #14B8A6);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.crs-reference-card h2 {
  color: #1E3A8A;
  font-size: 19px;
  line-height: 1.28;
  font-weight: 900;
  margin-bottom: 10px;
}

.crs-reference-card p {
  color: #475569;
  font-size: 13px;
  line-height: 1.65;
}

.crs-reference-card:hover h2,
.crs-reference-card:hover p,
.crs-reference-card:hover .crs-reference-no {
  color: #ffffff;
}

.crs-reference-card:hover .crs-reference-icon {
  background: rgba(255, 255, 255, 0.2);
}

.core-values-reference-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  background:
    radial-gradient(circle at 86% 20%, rgba(20, 184, 166, 0.10), transparent 32%),
    linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
}

.core-values-page .detail-hero {
  padding: 46px 0 42px;
}

.core-values-page .detail-hero h1 {
  font-size: clamp(34px, 4vw, 48px);
}

.core-values-page .detail-hero p:not(.detail-kicker) {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
}

.core-values-page .core-values-reference-section {
  padding-top: 40px;
}

.core-values-reference-header {
  position: sticky;
  top: 120px;
  max-width: 380px;
  margin-bottom: 0;
  padding: 18px 0;
}

.core-values-reference-header h2 {
  color: #1E3A8A;
  font-size: 31px;
  line-height: 1.2;
  font-weight: 900;
  margin-top: 8px;
}

.core-values-reference-header span {
  display: block;
  margin-top: 10px;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.core-values-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.core-value-reference-card {
  position: relative;
  overflow: hidden;
  min-height: 246px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.core-value-reference-card:nth-child(1),
.core-value-reference-card:nth-child(3) {
  min-height: 266px;
}

.core-value-reference-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(20, 184, 166, 0.18);
}

.core-value-reference-card img {
  display: block;
  width: 100%;
  height: 138px;
  object-fit: cover;
}

.core-value-reference-card:nth-child(1) img,
.core-value-reference-card:nth-child(3) img {
  height: 158px;
}

.core-value-reference-card div {
  min-height: 108px;
  padding: 16px 18px 20px;
  background: #ffffff;
}

.core-value-reference-card span {
  position: absolute;
  right: 16px;
  top: 117px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #0F766E;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.core-value-reference-card:nth-child(1) span,
.core-value-reference-card:nth-child(3) span {
  top: 137px;
}

.core-value-reference-card h3 {
  margin-top: 0;
  color: #1E3A8A;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.core-value-reference-card p {
  margin-top: 8px;
  color: #475569;
  font-size: 12.5px;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .crs-reference-inner {
    grid-template-columns: 1fr;
  }

  .core-values-reference-section {
    grid-template-columns: 1fr;
  }

  .core-values-reference-header {
    position: static;
    max-width: 760px;
    padding: 0;
  }

  .crs-reference-card-grid,
  .core-values-reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-value-reference-card:nth-child(2),
  .core-value-reference-card:nth-child(5),
  .core-value-reference-card:nth-child(6),
  .core-value-reference-card:nth-child(2):hover,
  .core-value-reference-card:nth-child(5):hover,
  .core-value-reference-card:nth-child(6):hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  

  .crs-reference-hero {
    padding: 12px 14px 0;
  }

  .crs-reference-inner {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .crs-reference-copy h1,
  .core-values-reference-header h2 {
    font-size: 28px;
  }

  .crs-reference-image img {
    height: 235px;
  }

  .crs-reference-services {
    padding: 22px 14px 0;
  }

  .crs-reference-card-grid,
  .core-values-reference-grid {
    grid-template-columns: 1fr;
  }

  .crs-reference-card,
  .core-value-reference-card {
    min-height: auto;
    border-radius: 20px;
  }

  .core-value-reference-card img {
    height: 190px;
  }

  .core-value-reference-card:nth-child(1) img,
  .core-value-reference-card:nth-child(3) img {
    height: 190px;
  }

  .core-value-reference-card span,
  .core-value-reference-card:nth-child(1) span,
  .core-value-reference-card:nth-child(3) span {
    top: 168px;
  }
}

/* Preserve hidden helper */
.hidden {
  display: none !important;
}


/* ==========================================================
   CORE VALUES PAGE
   ========================================================== */

.core-values-page {
  padding-top: 92px;
  padding-bottom: 0;
  background: #fff;
}


/* ----------------------------------------------------------
   Main section
---------------------------------------------------------- */

.values-showcase {
  position: relative;
  overflow: hidden;
  padding: 54px 24px 74px;

  background:
    radial-gradient(
      circle at 53% 15%,
      rgba(35, 158, 196, 0.08),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 58%,
      rgba(32, 129, 194, 0.07),
      transparent 24%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f8fcff 48%,
      #f1f8fd 100%
    );
}

.values-showcase::before,
.values-showcase::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.42;
  width: 160px;
  height: 160px;

  background-image:
    radial-gradient(
      circle,
      rgba(39, 153, 196, 0.45) 1.5px,
      transparent 1.7px
    );

  background-size: 12px 12px;
}

.values-showcase::before {
  left: -22px;
  bottom: 110px;
}

.values-showcase::after {
  right: -28px;
  top: 190px;
}

.values-container {
  width: min(1420px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


/* ==========================================================
   TOP
   ========================================================== */

.values-top-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.88fr) minmax(600px, 1.35fr);
  gap: 68px;
  align-items: center;
  margin-bottom: 38px;
}


/* ----------------------------------------------------------
   Intro
---------------------------------------------------------- */

.values-intro {
  padding-left: 20px;
  max-width: 500px;
}

.values-eyebrow {
  margin: 0 0 22px;

  color: #1ba3b8;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.values-intro h1 {
  margin: 0;

  color: #10264c;
  font-size: clamp(37px, 3.6vw, 59px);
  line-height: 1.08;
  letter-spacing: -2.2px;
  font-weight: 800;
}

.values-title-line {
  display: block;

  width: 52px;
  height: 3px;

  margin-top: 25px;

  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #19a9b9,
    #66d4d6
  );
}

.values-intro-text {
  max-width: 365px;
  margin-top: 28px;

  color: #4c586b;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}


/* ----------------------------------------------------------
   Top cards
---------------------------------------------------------- */

.values-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}


/* ==========================================================
   CARD
   ========================================================== */

.value-card {
  --card-angle: -1deg;

  position: relative;
  min-width: 0;
  min-height: 425px;

  overflow: hidden;

  border: 1px solid rgba(24, 74, 123, 0.09);
  border-radius: 25px;

  background: #fff;

  box-shadow:
    0 24px 54px rgba(25, 59, 102, 0.09),
    0 6px 16px rgba(23, 83, 127, 0.07);

  transform: rotate(var(--card-angle));

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


/* alternate card angle */
.value-card:nth-child(even) {
  --card-angle: 1deg;
}

.value-card:hover {
  transform:
    rotate(0deg)
    translateY(-8px);

  box-shadow:
    0 30px 64px rgba(25, 59, 102, 0.15),
    0 9px 22px rgba(23, 83, 127, 0.1);
}


/* ----------------------------------------------------------
   Image
---------------------------------------------------------- */

.value-card-image {
  position: relative;

  height: 215px;

  overflow: hidden;

  border-radius: 24px 24px 0 0;
}

.value-card-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(6, 32, 67, 0.02) 35%,
    rgba(6, 32, 67, 0.13) 100%
  );

  pointer-events: none;
}

.value-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.value-card:hover .value-card-image img {
  transform: scale(1.055);
}


/* ==========================================================
   ICON
   ========================================================== */

.value-icon {
  position: absolute;

  top: 184px;
  left: 18px;

  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 66px;
  height: 66px;

  border: 6px solid #fff;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f4f9fd
    );

  box-shadow:
    0 8px 22px rgba(30, 71, 122, 0.15);
}

.value-icon svg {
  width: 29px;
  height: 29px;

  fill: none;
  stroke: #16449b;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ==========================================================
   CONTENT
   ========================================================== */

.value-card-body {
  padding: 43px 30px 57px;
}

.value-card-body h2 {
  margin: 0;

  color: #143d91;

  font-size: 22px;
  line-height: 1.16;
  font-weight: 800;

  letter-spacing: -0.45px;
}

.value-heading-line {
  display: block;

  width: 31px;
  height: 2px;

  margin-top: 8px;
  margin-bottom: 13px;

  border-radius: 99px;

  background: #26b6c5;
}

.value-card-body p {
  margin: 0;

  color: #3f4c5f;

  font-size: 14px;
  line-height: 1.64;
  font-weight: 500;
}


/* ==========================================================
   NUMBER BADGE
   ========================================================== */

.value-number {
  position: absolute;

  right: -2px;
  bottom: -2px;

  width: 67px;
  height: 57px;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 5px 0 0 7px;

  color: #fff;

  font-size: 20px;
  line-height: 1;
  font-weight: 800;

  border-radius: 19px 0 20px 0;

  background:
    linear-gradient(
      135deg,
      #0757bd 0%,
      #1643a1 100%
    );

  box-shadow:
    -8px -8px 25px rgba(14, 76, 169, 0.11);
}

.value-card:nth-child(3n + 1) .value-number,
.value-card:nth-child(3n) .value-number {
  background:
    linear-gradient(
      135deg,
      #12b6bd,
      #0796aa
    );
}


/* ==========================================================
   BOTTOM 4 CARDS
   ========================================================== */

.values-bottom-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 28px;

  padding: 0 13px;
}

.values-bottom-grid .value-card {
  min-height: 435px;
}

.values-bottom-grid .value-card:nth-child(1) {
  --card-angle: -1.4deg;
}

.values-bottom-grid .value-card:nth-child(2) {
  --card-angle: 0.8deg;
}

.values-bottom-grid .value-card:nth-child(3) {
  --card-angle: -0.8deg;
}

.values-bottom-grid .value-card:nth-child(4) {
  --card-angle: 1.4deg;
}


/* ==========================================================
   LARGE DESKTOP
   ========================================================== */

@media (min-width: 1400px) {

  .values-showcase {
    padding-left: 48px;
    padding-right: 48px;
  }

  .values-top-layout {
    grid-template-columns:
      minmax(390px, 0.92fr)
      minmax(680px, 1.35fr);
  }

  .value-card-image {
    height: 230px;
  }

  .value-icon {
    top: 198px;
  }

  .value-card {
    min-height: 445px;
  }

  .value-card-body h2 {
    font-size: 23px;
  }

}


/* ==========================================================
   LAPTOP
   ========================================================== */

@media (max-width: 1180px) {

  .values-top-layout {
    grid-template-columns:
      minmax(270px, 0.8fr)
      minmax(550px, 1.4fr);

    gap: 38px;
  }

  .values-intro h1 {
    font-size: 42px;
  }

  .values-bottom-grid {
    gap: 20px;
  }

  .value-card-body {
    padding-left: 23px;
    padding-right: 23px;
  }

  .value-card-body h2 {
    font-size: 19px;
  }

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 950px) {

  .core-values-page {
    padding-top: 90px;
  }

  .values-showcase {
    padding:
      42px 22px
      65px;
  }

  .values-top-layout {
    display: block;

    margin-bottom: 28px;
  }

  .values-intro {
    padding: 0;
    margin: 0 auto 42px;

    max-width: 700px;

    text-align: center;
  }

  .values-title-line {
    margin-left: auto;
    margin-right: auto;
  }

  .values-intro-text {
    margin-left: auto;
    margin-right: auto;
  }

  .values-featured-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .values-bottom-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 27px;

    padding: 0;
  }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 640px) {

  .core-values-page {
    padding-top: 82px;
  }

  .values-showcase {
    padding:
      36px 17px
      55px;
  }

  .values-eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .values-intro {
    margin-bottom: 35px;
  }

  .values-intro h1 {
    font-size: clamp(32px, 9vw, 42px);
    letter-spacing: -1.5px;
  }

  .values-intro-text {
    margin-top: 21px;

    font-size: 15px;
    line-height: 1.7;
  }

  .values-featured-grid,
  .values-bottom-grid {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .values-bottom-grid {
    margin-top: 25px;
  }

  .value-card,
  .values-bottom-grid .value-card {
    --card-angle: 0deg;

    width: min(100%, 410px);

    min-height: auto;

    margin-left: auto;
    margin-right: auto;
  }

  .value-card-image {
    height: 230px;
  }

  .value-icon {
    top: 197px;
  }

  .value-card-body {
    min-height: 190px;

    padding:
      44px 27px
      58px;
  }

  .value-card-body h2 {
    font-size: 21px;
  }

  .value-card-body p {
    max-width: 285px;
    font-size: 14px;
  }

}


/* ==========================================================
   VERY SMALL MOBILE
   ========================================================== */

@media (max-width: 390px) {

  .values-showcase {
    padding-left: 12px;
    padding-right: 12px;
  }

  .value-card-image {
    height: 205px;
  }

  .value-icon {
    top: 172px;

    width: 62px;
    height: 62px;
  }

  .value-card-body {
    padding-left: 23px;
    padding-right: 23px;
  }

}

/* ================= SERVICE CARD NUMBERING - FINAL OVERRIDE ================= */

.service-numbered-card {
  position: relative;
  overflow: hidden;
}

.detail-link-card.service-numbered-card,
.detail-feature-card.service-numbered-card,
.rnd-card.service-numbered-card,
.hero-service-card.service-numbered-card,
.service-card.service-numbered-card,
.crs-reference-card.service-numbered-card {
  padding-right: 28px;
  padding-bottom: 76px;
}

.service-card-number,
.crs-reference-no.service-card-number,
.detail-link-card > .service-card-number:not(.card-cta),
.product-category-card > .service-card-number:not(.card-cta),
.rnd-card .service-card-number {
  position: absolute;
  right: 0;
  bottom: 0;
  top: auto;
  z-index: 5;
  min-width: 66px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 22px 0 0 0;
  background: linear-gradient(135deg, #1267D6, #21B4C5);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0;
  box-shadow: 0 8px 18px rgba(25, 59, 102, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-numbered-card:hover .service-card-number,
.service-numbered-card:focus-visible .service-card-number {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(25, 59, 102, 0.24);
}

.hero-service-card.service-numbered-card .hero-service-icon,
.service-card.service-numbered-card .service-pill,
.rnd-card.service-numbered-card h2,
.detail-feature-card.service-numbered-card h3,
.detail-link-card.service-numbered-card h2,
.crs-reference-card.service-numbered-card .crs-reference-icon {
  margin-right: 0;
}

.hero-service-card.service-numbered-card,
.service-card.service-numbered-card,
.detail-link-card.service-numbered-card,
.detail-feature-card.service-numbered-card,
.rnd-card.service-numbered-card,
.crs-reference-card.service-numbered-card {
  display: flex;
  flex-direction: column;
}

.service-numbered-card .card-cta {
  align-self: flex-start;
  margin-top: auto;
  margin-left: 0;
  padding-right: 78px;
  padding-top: 20px;
}

.crs-reference-card.service-numbered-card .crs-reference-no {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .detail-link-card.service-numbered-card,
  .detail-feature-card.service-numbered-card,
  .rnd-card.service-numbered-card,
  .hero-service-card.service-numbered-card,
  .service-card.service-numbered-card,
  .crs-reference-card.service-numbered-card {
    padding-right: 18px;
    padding-bottom: 70px;
  }

  .service-card-number,
  .crs-reference-no.service-card-number,
  .detail-link-card > .service-card-number:not(.card-cta),
  .product-category-card > .service-card-number:not(.card-cta),
  .rnd-card .service-card-number {
    right: 0;
    bottom: 0;
    top: auto;
    min-width: 58px;
    height: 50px;
    padding: 0 13px;
    border-radius: 18px 0 0 0;
    font-size: 14px;
  }

  .service-numbered-card .card-cta {
    padding-top: 18px;
    padding-right: 68px;
  }
}
