/* -- hero.css -- */
/* ── Hero (Home only) — ported 1:1 from the React build's home.css ── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('../../images/hero-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 160px 0 90px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.hero__heading {
  font-family: 'Inter', sans-serif;
  font-size: 58px;
  line-height: 68px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 auto 28px;
  letter-spacing: -0.5px;
}

.hero__heading-accent {
  display: block;
  color: #2AF6E1;
}

.hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 400;
  max-width: 60%;
  margin: 0 auto 40px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #29F6E0;
  color: #000818;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-bottom: 60px;
  transition: background-color 0.15s ease;
  line-height: 1;
}

.hero__cta:hover { background-color: #1ADECE; text-decoration: none; }

.hero__cta-arrow { display: flex; align-items: center; flex-shrink: 0; }
.hero__cta-arrow svg { width: 18px; height: 14px; }

.hero__cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 158px;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero__card:hover { background: rgba(42, 246, 225, 0.06); border-color: rgba(42, 246, 225, 0.22); }

.hero__card-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; }
.hero__card-icon svg { width: 100%; height: 100%; }

.hero__card-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  letter-spacing: 0.01em;
  white-space: pre-line;
}

@media (max-width: 1024px) {
  .hero__heading { font-size: 47px; }
}

@media (max-width: 768px) {
  .hero__heading { font-size: 40px; letter-spacing: -0.3px; }
  .hero__sub { font-size: 17px; max-width: 420px; }
  .hero__cards { gap: 14px; }
  .hero__card { width: 140px; padding: 22px 16px; }
}

@media (max-width: 520px) {
  .hero__heading { font-size: 32px; }
  .hero__sub { font-size: 16px; }
  .hero__cards { display: grid; grid-template-columns: 1fr 1fr; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero__card { width: 100%; }
  .hero__cta { font-size: 12px; padding: 13px 22px; }
}

/* -- services.css -- */
/* ── Services (tabbed, Home only) — ported 1:1 from home.css ── */
.services { padding: 100px 0; background: #FFFFFF; }

.services__header { text-align: center; margin-bottom: 56px; }
.services__title { font-size: 45px; line-height: 54px; font-weight: 700; color: #0F172A; }

.services__layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }

.services__tabs { display: flex; flex-direction: column; gap: 4px; }

.services__tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 22px;
  cursor: pointer;
  transition: background 0.18s ease;
  text-align: left;
  background: transparent;
  border: none;
  width: 100%;
  font-family: inherit;
  border-radius: 8px;
}

.services__tab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 3px;
  border-radius: 2px;
  background: transparent;
  transition: background 0.18s ease;
}

.services__tab:hover { background: #F1F5F9; }
.services__tab--active { background: #EEF4FF; }
.services__tab--active::before { background: #2563EB; }

.services__tab-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 22px; height: 22px; color: #94A3B8; transition: color 0.18s ease; }
.services__tab-icon svg { width: 20px; height: 20px; }
.services__tab--active .services__tab-icon { color: #2563EB; }

.services__tab-label { font-size: 15px; font-weight: 500; color: #64748B; transition: color 0.18s ease; line-height: 1.3; }
.services__tab--active .services__tab-label { color: #0F172A; font-weight: 600; }

.services__panel {
  background: #EEF4FF;
  border-radius: 16px;
  padding: 44px 48px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  min-height: 420px;
}

.services__panel-sub { font-size: 13px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: #2563EB; margin-bottom: 14px; }
.services__panel-heading { font-size: 26px; line-height: 1.35; font-weight: 700; color: #0F172A; margin-bottom: 16px; max-width: 100%; }
.services__panel-body { font-size: 15px; line-height: 1.75; color: #475569; margin-bottom: 28px; max-width: 100%; }

.services__panel-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; margin-bottom: 36px; }
.services__panel-item { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: #1E293B; line-height: 1.4; }

.services__panel-item-arrow { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: #2563EB; display: flex; align-items: center; justify-content: center; }
.services__panel-item-arrow svg { width: 12px; height: 12px; color: #FFFFFF; }

.services__panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.services__panel-cta:hover { background: #1D4ED8; text-decoration: none; color: #FFFFFF; }

@media (max-width: 1024px) {
  .services__layout { grid-template-columns: 1fr; }
  .services__tabs { flex-direction: row; flex-wrap: wrap; }
  .services__panel { padding: 28px 24px; }
}

@media (max-width: 768px) {
  .services__title { font-size: 32px; line-height: 42px; }
  .services__panel-cols { grid-template-columns: 1fr; }
}

/* -- trusted-by.css -- */
/* ── Trusted By — reused on Home, About, Service, Industry pages ── */
.trusted { padding: 80px 0; background: #FFFFFF; overflow: hidden; }

.trusted__header { text-align: center; margin-bottom: 52px; }

.trusted__title {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  line-height: 54px;
  font-weight: 700;
  color: #0D1535;
  margin-bottom: 20px;
}

.trusted__sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #475569;
  max-width: 860px;
  margin: 0 auto 30px;
}

.trusted__slider-outer { position: relative; width: 100%; overflow: hidden; }

.trusted__slider-outer::before,
.trusted__slider-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trusted__slider-outer::before { left: 0;  background: linear-gradient(to right, #ffffff 0%, transparent 100%); }
.trusted__slider-outer::after  { right: 0; background: linear-gradient(to left, #ffffff 0%, transparent 100%); }

.trusted__track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: trusted-marquee 38s linear infinite;
  will-change: transform;
}

.trusted__slider-outer:hover .trusted__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .trusted__track { animation-play-state: paused; } }

@keyframes trusted-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trusted__card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.trusted__card:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10); border-color: rgba(0, 0, 0, 0.14); }
.trusted__card img { max-width: 100%; max-height: 100%; width: auto; height: 84px; object-fit: contain; display: block; }

@media (max-width: 1024px) {
  .trusted__title { font-size: 36px; line-height: 45px; }
  .trusted__sub   { font-size: 16px; max-width: 680px; }
  .trusted__card  { width: 150px; height: 76px; }
}

@media (max-width: 768px) {
  .trusted { padding: 60px 0; }
  .trusted__title  { font-size: 30px; line-height: 40px; }
  .trusted__sub    { font-size: 15px; }
  .trusted__header { margin-bottom: 36px; }
  .trusted__card   { width: 136px; height: 68px; padding: 10px 16px; }
  .trusted__track  { gap: 12px; }
}

@media (max-width: 480px) {
  .trusted__title { font-size: 26px; line-height: 34px; }
  .trusted__card  { width: 120px; height: 62px; }
}

/* -- kpi.css -- */
/* ── KPI / "Our Impact" — reused on Home and Industry pages ─── */
.kpi {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.kpi__inner { position: relative; z-index: 1; text-align: center; }

.kpi__heading {
  font-family: 'Inter', sans-serif;
  font-size: 45px;
  line-height: 54px;
  font-weight: 700;
  color: #4AEFED;
  margin-bottom: 20px;
}

.kpi__sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #FFFFFF;
  max-width: 100%;
  margin: 0 auto 64px;
}

.kpi__grid { display: flex; align-items: flex-start; justify-content: center; gap: 80px; flex-wrap: wrap; }
.kpi__item { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 140px; }

.kpi__number { font-family: 'Inter', sans-serif; font-size: 38px; line-height: 48px; font-weight: 600; color: #4AEFED; }
.kpi__label  { font-family: 'Inter', sans-serif; font-size: 18px; line-height: 28px; font-weight: 400; color: #FFFFFF; text-align: center; }

@media (max-width: 1024px) {
  .kpi__heading { font-size: 38px; }
  .kpi__grid    { gap: 52px; }
}

@media (max-width: 768px) {
  .kpi          { padding: 70px 0; }
  .kpi__heading { font-size: 34px; }
  .kpi__sub     { font-size: 16px; margin-bottom: 48px; }
  .kpi__grid    { gap: 40px 60px; }
  .kpi__number  { font-size: 32px; line-height: 42px; }
  .kpi__label   { font-size: 16px; }
}

@media (max-width: 520px) {
  .kpi__heading { font-size: 28px; }
  .kpi__grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px; width: 100%; }
}

/* -- industries.css -- */
/* ── Industries (tabbed dashboards, Home only) — ported 1:1 ── */
.industries { padding: 100px 0; background: #F1F4F8; }

.industries__title { font-size: 45px; line-height: 54px; font-weight: 700; color: #0F172A; text-align: center; margin-bottom: 40px; }

.industries__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #D1D9E6;
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.industries__tabs::-webkit-scrollbar { display: none; }

.industries__tab {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #4B5563;
  padding: 14px 32px;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s ease, border-color 0.18s ease;
  line-height: 1;
}
.industries__tab:hover { color: #1E293B; }
.industries__tab--active { color: #2563EB; border-bottom-color: #2563EB; font-weight: 700; }

.industries__card { background: #FFFFFF; border-radius: 20px; border: 1px solid #E2E8F0; padding: 32px; }

.industries__dashboard-wrap {
  border-radius: 14px;
  border: 1px solid #CBD5E1;
  overflow: hidden;
  margin-bottom: 28px;
  background: #EEF4FF;
  min-height: 460px;
  display: flex;
  align-items: stretch;
}

.industries__dashboard-container { width: 100%; min-height: 460px; display: flex; align-items: center; justify-content: center; }
.industries__dashboard-placeholder { font-size: 14px; color: #94A3B8; font-style: italic; }

.industries__dashboard-skeleton {
  width: 100%;
  min-height: 460px;
  border-radius: 20px;
  background: linear-gradient(90deg, #f0f4f8 25%, #e2e8f0 50%, #f0f4f8 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
}
@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.industries__bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.industries__bottom-left { flex: 1; min-width: 0; }

.industries__desc { font-size: 16px; line-height: 1.7; color: #374151; margin-bottom: 12px; max-width: 680px; }

.industries__link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2563EB;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.industries__link:hover { color: #1D4ED8; text-decoration: underline; }

.industries__bottom-right { flex-shrink: 0; }

.industries__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2563EB;
  color: #FFFFFF;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.industries__cta:hover { background: #1D4ED8; color: #FFFFFF; text-decoration: none; }

@media (max-width: 768px) {
  .industries__title { font-size: 32px; line-height: 42px; }
}

@media (max-width: 480px) {
  .industries__tabs { justify-content: flex-start; }
  .industries__card { padding: 20px; }
  .industries__bottom { flex-direction: column; align-items: flex-start; }
  .industries__dashboard-wrap { min-height: 300px; }
  .industries__dashboard-container { min-height: 300px; }
}

/* -- cta-banner.css -- */
/* ── CTA Banner — reused twice on Home, plus Industry pages ─── */
.cta-banner {
  padding: var(--sp-16) 0;
  background-color: transparent;
  background-image: linear-gradient(90deg, #000818 0%, #002A7E 100%);
  position: relative;
  overflow: hidden;
}

.cta-link { padding-top: 10px; }

.cta-banner__inner { position: relative; z-index: 1; text-align: center; }

.cta-banner__title { font-size: var(--h2-size); line-height: var(--h2-line); font-weight: var(--h2-weight); color: var(--clr-white); margin-bottom: var(--sp-4); }

.cta-banner__sub { font-size: 15px; color: var(--clr-text-on-dark); margin-bottom: var(--sp-8); }
.cta-banner__sub a { color: var(--clr-teal); text-decoration: none; }
.cta-banner__sub a:hover { text-decoration: underline; }

.cta-banner__actions { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); flex-wrap: wrap; }

@media (max-width: 768px) {
  .cta-banner__title { font-size: 32px; line-height: 42px; }
}

/* -- process.css -- */
/* ── Process — reused on Home (4 steps) and Industry pages (5 steps) ── */
.process { padding: var(--sp-20) 0; background: var(--clr-white); }

.process__header { text-align: center; margin-bottom: var(--sp-16); }
.process__title { font-size: var(--h2-size); line-height: var(--h2-line); font-weight: var(--h2-weight); color: var(--clr-text-dark); }
.process__subheading { display: block; margin-top: var(--sp-2); color: var(--clr-text-muted); font-size: 16px; }

.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process__grid--5col { grid-template-columns: repeat(5, 1fr); }

.process__connector {
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, #CBD5E1 0px, #CBD5E1 8px, transparent 8px, transparent 20px);
  background-size: 20px 2px;
  animation: dashFlow 3s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes dashFlow {
  from { background-position: 0 0; }
  to   { background-position: 40px 0; }
}

.process__step { position: relative; z-index: 1; text-align: center; padding: 0 var(--sp-6) var(--sp-8); }

.process__step-icon {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-full);
  background: var(--clr-white);
  border: 2px solid #DBEAFE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  position: relative;
}
.process__step-icon svg { width: 32px; height: 32px; color: var(--clr-text-dark); }

.process__step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--clr-teal);
  color: var(--clr-dark);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process__step-title { font-size: var(--h3-size); line-height: var(--h3-line); font-weight: var(--h3-weight); color: var(--clr-text-dark); margin-bottom: var(--sp-3); }
.process__step-desc { font-size: 15px; line-height: 1.65; color: var(--clr-text-muted); max-width: 22ch; margin: 0 auto; }

.process__bottom { text-align: center; color: var(--clr-text-muted); margin-top: var(--sp-8); }

@media (max-width: 1024px) {
  .process__grid, .process__grid--5col { grid-template-columns: repeat(2, 1fr); }
  .process__connector { display: none; }
}

@media (max-width: 768px) {
  .process__title { font-size: 32px; line-height: 42px; }
}

@media (max-width: 480px) {
  .process__grid, .process__grid--5col { grid-template-columns: repeat(2, 1fr); }
  .process__step { padding-bottom: var(--sp-10); }
}

/* -- case-studies.css -- */
/* ── Case Studies — reused on Home and almost every other page ── */
.case-studies { padding: var(--sp-20) 0; background: #EEF2F8; }

.case-studies__header { text-align: center; margin-bottom: var(--sp-12); }
.case-studies__title { font-size: var(--h2-size); line-height: var(--h2-line); font-weight: var(--h2-weight); color: var(--clr-text-dark); margin-bottom: var(--sp-5); }
.case-studies__subtitle { font-size: var(--body-size); line-height: var(--body-line); font-weight: 400; color: var(--clr-text-body); max-width: 100%; margin: 0 auto; }

.case-studies__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin-bottom: var(--sp-12); }

.case-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 3 / 4; display: flex; flex-direction: column; }
.case-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }

.case-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 15, 35, 0.08) 0%, rgba(5, 15, 35, 0.30) 35%, rgba(5, 15, 35, 0.82) 70%, rgba(5, 15, 35, 0.95) 100%);
}

.case-card__content { position: relative; z-index: 1; margin-top: auto; padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-5); }
.case-card__title { font-size: 18px; font-weight: 700; line-height: 1.45; color: var(--clr-white); }

.case-card__metrics { display: flex; gap: 0; }
.case-card__metric { flex: 1; display: flex; flex-direction: column; gap: 4px; padding-right: var(--sp-4); border-right: 1px solid rgba(255, 255, 255, 0.25); }
.case-card__metric:last-child { border-right: none; padding-right: 0; padding-left: var(--sp-4); }
.case-card__metric:not(:first-child):not(:last-child) { padding-left: var(--sp-4); }
.case-card__metric-value { font-size: 26px; font-weight: 700; line-height: 1; color: var(--clr-white); }
.case-card__metric-label { font-size: 11px; line-height: 1.45; color: rgba(255, 255, 255, 0.75); font-weight: 400; }

.case-card__read-more {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-white);
  text-decoration: none;
  background: transparent;
  transition: background var(--ease), border-color var(--ease);
}
.case-card__read-more:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--clr-white); }

.case-studies__footer { text-align: center; }
.case-studies__cta { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; padding: 14px 32px; border-radius: var(--radius-md); }

@media (max-width: 1024px) {
  .case-studies__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .case-studies__title { font-size: 32px; line-height: 42px; }
  .case-studies__grid { grid-template-columns: 1fr; }
}

/* -- insights.css -- */
/* ── Insights — reused on Home; also the basis for the blog card look ── */
.insights { padding: var(--sp-20) 0; background: var(--clr-white); }

.insights__header { text-align: center; margin-bottom: var(--sp-12); }
.insights__title { font-size: var(--h2-size); line-height: var(--h2-line); font-weight: var(--h2-weight); color: var(--clr-text-dark); margin-bottom: var(--sp-5); }
.insights__subtitle { font-size: var(--body-size); line-height: var(--body-line); font-weight: 400; color: var(--clr-text-body); max-width: 72ch; margin: 0 auto; }

.insights__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); align-items: stretch; }

.icard { display: flex; flex-direction: column; border-radius: var(--radius-xl); overflow: hidden; text-decoration: none; min-height: 480px; }

.icard--image { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; justify-content: space-between; }

.icard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 30, 0.15) 0%, rgba(5, 12, 30, 0.35) 40%, rgba(5, 12, 30, 0.88) 100%);
  border-radius: inherit;
  transition: opacity 0.35s ease-in-out;
  z-index: 1;
}

.icard__hover-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #01297A 0%, #00091D 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
  z-index: 2;
}

.icard--image:hover .icard__hover-bg { opacity: 1; }
.icard--image:hover .icard__overlay { opacity: 0; }

.icard__default-content { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: space-between; flex: 1; transition: opacity 0.25s ease-in-out; }
.icard--image:hover .icard__default-content { opacity: 0; pointer-events: none; }

.icard__read-time { align-self: flex-end; margin: var(--sp-5) var(--sp-5) 0 0; font-size: 13px; font-weight: 400; color: rgba(255, 255, 255, 0.88); letter-spacing: 0.01em; }

.icard__content { padding: var(--sp-6); }
.icard__title { font-size: 20px; font-weight: 700; line-height: 1.4; color: var(--clr-white); }

.icard__hover-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
  pointer-events: none;
}
.icard--image:hover .icard__hover-layer { opacity: 1; transform: translateY(0); pointer-events: auto; }

.icard__watermark {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 260px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-family);
}

.icard__featured-top { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.icard__tag { font-size: 15px; font-weight: 600; color: var(--clr-white); }
.icard__author { font-size: 14px; font-weight: 400; color: rgba(255, 255, 255, 0.85); }

.icard__featured-body { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; gap: var(--sp-5); padding: var(--sp-8) 0 var(--sp-4); }
.icard__featured-title { font-size: 24px; font-weight: 700; line-height: 1.4; color: var(--clr-white); }
.icard__featured-desc { font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, 0.78); }

.icard__featured-footer { position: relative; z-index: 1; display: flex; justify-content: flex-end; }
.icard__expand { font-size: 16px; font-weight: 600; color: var(--clr-teal); letter-spacing: 0.01em; }

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

@media (max-width: 768px) {
  .insights__title { font-size: 32px; line-height: 42px; }
}

/* -- contact.css -- */
/* ── Contact — reused on Home and every Service/Industry page ── */
.contact { padding: var(--sp-20) 0; background: var(--clr-bg-light); }

.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }

.contact__form-side { background: var(--clr-white); padding: 52px 52px; }
.contact__form-heading { font-size: 45px; line-height: 54px; font-weight: 800; color: var(--clr-blue); margin-bottom: var(--sp-3); }
.contact__form-sub { font-size: 16px; line-height: 1.65; color: var(--clr-text-muted); margin-bottom: var(--sp-8); max-width: 44ch; }

.contact__form { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact__field { display: flex; flex-direction: column; gap: 6px; }
.contact__label { font-size: 14px; font-weight: 500; color: var(--clr-text-body); }
.contact__required { color: #DC2626; margin-left: 2px; }

.contact__input,
.contact__textarea {
  border: 1.5px solid #DDE3EF;
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--clr-text-dark);
  background: #F4F7FC;
  transition: border-color var(--ease), background var(--ease);
  outline: none;
  width: 100%;
  font-family: inherit;
}
.contact__input:focus, .contact__textarea:focus { border-color: var(--clr-blue); background: var(--clr-white); }
.contact__input--error { border-color: #DC2626 !important; }
.contact__textarea { resize: none; min-height: 110px; }
.contact__input::placeholder, .contact__textarea::placeholder { color: var(--clr-text-light); }

select.contact__input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23677489' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact__error { font-size: 12px; color: #DC2626; font-weight: 500; }

.contact__phone-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--clr-text-dark);
  min-width: 0;
}

.contact__submit-row { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; padding-top: var(--sp-2); }
.contact__submit-btn { font-size: 13px; font-weight: 700; letter-spacing: 0.07em; padding: 14px 30px; }
.contact__submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }

.contact__recaptcha-note { font-size: 11px; color: var(--clr-text-muted, #888); margin-top: var(--sp-2, 8px); }
.contact__recaptcha-note a { text-decoration: underline; color: inherit; }

.contact__status { font-size: 14px; font-weight: 500; }
.contact__status--ok  { color: #16A34A; }
.contact__status--err { color: #DC2626; }

.contact__info-side {
  position: relative;
  background: url('../../images/contact-bg.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 44px;
  overflow: hidden;
}

.contact__info-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 60% 20%, rgba(0, 180, 220, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(37,99,235,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.contact__info-cards { position: relative; z-index: 1; display: flex; flex-direction: column; gap: var(--sp-5); width: 100%; max-width: 420px; }

.contact__info-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact__info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: #00D2D8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__info-icon svg { width: 22px; height: 22px; color: #031224; }

.contact__info-divider { width: 1px; height: 44px; background: rgba(255, 255, 255, 0.2); flex-shrink: 0; margin: 0 var(--sp-5); }

.contact__info-content { display: flex; flex-direction: column; gap: 3px; }
.contact__info-content a { font-size: 16px; font-weight: 500; color: var(--clr-white); text-decoration: none; transition: color var(--ease); line-height: 1.5; }
.contact__info-content a:hover { color: var(--clr-teal); }

.contact__card-country { display: block; font-size: 16px; font-weight: 700; color: var(--clr-white); line-height: 1.4; }
.contact__card-address { display: block; font-size: 14px; font-weight: 400; color: rgba(255, 255, 255, 0.8); line-height: 1.55; }

@media (max-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-sub { max-width: 100%; }
}

@media (max-width: 768px) {
  .contact__form-heading { font-size: 32px; line-height: 42px; }
  .contact__form-side { padding: 36px 28px; }
  .contact__info-side { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .contact__form-side { padding: 24px 16px; }
  .contact__info-side { padding: 28px 16px; }
  .contact__form-heading { font-size: 26px; line-height: 36px; }
  .contact__info-card { padding: 14px 16px; }
  .contact__submit-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .contact__submit-btn { width: 100%; text-align: center; }
}

