/* ==========================================================================
   KNC GROUP CSS
   ========================================================================== */

:root {
    /* Custom brand tokens (from the Tailwind config in demo.html) */
    --color-primary: #0F172A;
    --color-primary-fixed: #D2F832;
    --color-primary-fixed-dim: #b5db24;
    --color-secondary: #475569;
    --color-background: #FFFFFF;
    --color-surface: #F8FAFC;
    --color-surface-container: #F1F5F9;
    --color-surface-container-low: #F8FAFC;
    --color-surface-container-high: #E2E8F0;
    --color-surface-container-highest: #CBD5E1;
    --color-surface-container-lowest: #FFFFFF;
    --color-on-surface: #0F172A;
    --color-on-surface-variant: #475569;
    --color-outline: #CBD5E1;
    --color-outline-variant: #E2E8F0;

    /* Standard Tailwind slate scale */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    /* Standard Tailwind lime scale */
    --lime-50: #f7fee7;
    --lime-100: #ecfccb;
    --lime-200: #d9f99d;
    --lime-300: #bef264;
    --lime-400: #a3e635;
    --lime-500: #84cc16;
    --lime-600: #65a30d;
    --lime-700: #4d7c0f;
    --lime-800: #3f6212;
    --lime-900: #365314;

    --font-headline: 'Space Grotesk', sans-serif;
    --font-body: 'Hanken Grotesk', sans-serif;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--color-background);
    font-family: var(--font-body);
    color: var(--slate-800);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1rem;
    line-height: 1.625;
}

::selection {
    background: #D2F832;
    color: var(--slate-950);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
address,
form {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font-family: inherit;
    color: inherit;
}

button {
    cursor: pointer;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-variation-settings: 'FILL'0, 'wght'400, 'GRAD'0, 'opsz'24;
}

.card-hover-effect:hover {
    border-color: #84CC16;
    box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.08), 0 0 20px -2px rgba(210, 248, 50, 0.35);
}

.hero-sec .banner-inner .banner-bg:after {
	content:"";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top:0;
	background: linear-gradient(to right, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0.05) 100%);
	z-index: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(203, 213, 225, 0.8);
  width: fit-content;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--lime-500);
}

.hero__badge-text {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  color: var(--slate-900);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

h1.hero__title {
  font-family: var(--font-headline);
  font-size: 2.25rem;
  color: var(--slate-950);
  font-weight: 900 !important;
  letter-spacing: -0.025em;
  line-height: 1.14 !important;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .hero__title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 54px; }
}

.hero__title-mark {
  color: var(--slate-950);
  background: #D2F832;
  padding: 0.125rem 0.75rem;
  border-radius: 0.375rem;
  display: inline-block;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
}

.hero__lead {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--slate-800);
  max-width: 42rem;
  font-weight: 400;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .hero__lead { font-size: 1.25rem; }
}

.hero__trust {
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    font-size: 1rem;
    border-top: 1px solid rgba(203, 213, 225, 0.8);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__trust-item .material-symbols-outlined {
  color: var(--lime-700);
  font-size: 1.25rem;
  font-weight: 700;
}


.metrics-sec .counter {
    font-family: var(--font-headline);
    font-size: 2.25rem;
    color: #D2F832;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.metrics-sec h3 {
    font-family: var(--font-headline);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-top: 0.25rem;
}

.metrics-sec p {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--slate-400);
    margin-top: 0.125rem;
}

.about-intro {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 48rem;
    margin: 0 auto;
    align-items: center;
    text-align: center; 
}

.about-intro .eyebrow {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: var(--lime-50);
    border: 1px solid var(--lime-200);
    font-family: var(--font-headline);
    font-size: 0.75rem;
    color: var(--lime-700);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    width: fit-content;
}

.about-intro h2 {
    font-family: var(--font-headline);
    font-size: 40px;
    color: var(--slate-950);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 0;
}

.about-intro p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--slate-600);
    max-width: 42rem;
    font-weight: 400;
}

.pillar-card {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--slate-200);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    transition: all .3s;
    height: 100%;
}
.pillar-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1);
    border-color: var(--lime-500);
}
.pillar-card .icon-box-img {
    margin-bottom: 0;
}
.icon-box-img img, .icon-box-img svg {
  padding-top: 0.5em !important;
}
.contact-iconbox .icon,
.pillar-card .icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: var(--lime-50);
    border: 1px solid var(--lime-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-950);
    margin-bottom: 0;
    transition: background-color .2s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}

.contact-iconbox p {
  margin-bottom: 0;
}
.contact-iconbox b {
  font-size: 18px;
}
.contact-iconbox {
  padding-bottom: 10px;
}
.pillar-card:hover .icon  {
    background: #D2F832;
}
.pillar-card h3 {
    font-family: var(--font-headline);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-950);
    transition: color .2s;
    margin-bottom: 0.625rem;
}

.pillar-card p {
        font-family: var(--font-body);
    font-size: 0.975rem;
    color: var(--slate-600);
    line-height: 1.625;
}

.pillar-card__footer {
    padding-top: 1rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pillar-card__footer span:last-child {
    font-family: var(--font-headline);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTORS
   ========================================================================== */
.sector-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .sector-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.sector-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
  transition: all .3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sector-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
}

.sector-card__media {
  position: relative;
  height: 14rem;
  width: 100%;
  overflow: hidden;
  background: var(--slate-100);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .sector-card__media { height: 16rem; }
}

.sector-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}

.sector-card:hover .sector-card__media img {
  transform: scale(1.05);
}

.sector-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,0.7), rgba(2,6,23,0.2), transparent);
}

.sector-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sector-card__tag span {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid var(--slate-700);
  font-weight: 700;
}

.sector-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  flex: 1 1 auto;
  background: #fff;
}

.sector-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.sector-card__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-950);
  transition: color .2s;
  line-height: 1.375;
  margin-bottom: 0;
}

.sector-card:hover .sector-card__title {
  color: var(--lime-700);
}

.sector-card__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.625;
    margin-bottom: 0;
}

.sector-card__footer {
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.sector-card__unit {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.sector-card__unit-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  font-family: var(--font-headline);
}

.sector-card__unit-value {
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  background: var(--lime-50);
  color: var(--lime-800);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--lime-200);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--slate-900);
  transition: color .2s;
}

.sector-card:hover .link-arrow {
  color: var(--lime-700);
}

.link-arrow .material-symbols-outlined {
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform .2s;
}

.sector-card:hover .link-arrow .material-symbols-outlined {
  transform: translateX(0.25rem);
}

/* =========================================================
   NẾU HÀNG CUỐI CÓ 2 ITEM
   Ví dụ tổng cộng: 5, 8, 11... item
========================================================= */
/* Mỗi card = 1/3 chiều rộng */
.sector-card {
    grid-column: span 2;
}
.sector-card:nth-last-child(2):nth-child(3n + 1) {
    grid-column: 2 / span 2;
}

.sector-card:nth-last-child(2):nth-child(3n + 1)+.sector-card {
    grid-column: 4 / span 2;
}
.sector-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

/* =========================================================
   TABLET - 2 CỘT
========================================================= */

@media (max-width: 991px) {

    .sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sector-card,
    .sector-card:nth-last-child(2):nth-child(3n + 1),
    .sector-card:nth-last-child(2):nth-child(3n + 1)+.sector-card,
    .sector-card:last-child:nth-child(3n + 1) {
        grid-column: auto;
    }

}


/* =========================================================
   MOBILE - 1 CỘT
========================================================= */

@media (max-width: 575px) {

    .sector-grid {
        grid-template-columns: 1fr;
    }

}

.main-tt h2{
    font-family: var(--font-headline);
    font-size: 2.25rem;
    color: var(--slate-950);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1.2;
}
.main-tt h3 {
    font-family: var(--font-headline);
    font-size: 0.75rem;
    color: var(--lime-700);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* ==========================================================================
   5. ECOSYSTEM SHOWCASE (Company rows)
   ========================================================================== */
.company-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.company-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
  transition: box-shadow .3s;
}

.company-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
}

.company-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .company-card__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
}

.company-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 640px) { .company-card__content { padding: 2rem; } }
@media (min-width: 1024px) {
  .company-card__content { grid-column: span 7 / span 7; padding: 2.5rem; }
}

.company-card__top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.company-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--slate-100);
}

.company-card__brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.company-card__logo-box {
  height: 2.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-card__logo-box--dark {
  background: var(--slate-950);
}

.company-card__logo-box img {
  height: 1.75rem;
  width: auto;
  object-fit: contain;
}

.company-card__logo-box span {
  font-family: var(--font-headline);
  font-size: 0.875rem;
  font-weight: 700;
  color: #D2F832;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-card__logo-box--dark.company-card__logo-box--white-text span {
  color: #fff;
  font-size: 0.75rem;
}

.company-card__name {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-950);
  display: block;
}

.company-card__tag {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  color: var(--lime-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.company-card__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.company-card__field-label {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lime-800);
}

.company-card__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.625;
}


.company-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 0.5rem;
}

@media (min-width: 640px) {
  .company-card__stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.stat-box {
  padding: 0.875rem;
  border-radius: 0.75rem;
  background: var(--slate-50);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.stat-box--span2 { grid-column: span 2 / span 2; }

@media (min-width: 640px) {
  .stat-box--span2 { grid-column: span 1 / span 1; }
}

.stat-box__label {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  color: var(--slate-500);
  text-transform: uppercase;
  display: block;
  font-weight: 600;
}

.stat-box__value {
  font-family: var(--font-headline);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-950);
  margin-top: 0.25rem;
  display: block;
}

.company-card__cta-row {
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--slate-900);
  color: #fff;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
  transition: all .2s;
}

.btn-dark:hover {
  background: #D2F832;
  color: var(--slate-950);
}

.btn-dark .material-symbols-outlined {
  font-size: 1rem;
  font-weight: 700;
  transition: transform .2s;
}

.btn-dark:hover .material-symbols-outlined {
  transform: translateX(0.375rem);
}

.company-card__media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--slate-100);
}

@media (min-width: 1024px) {
  .company-card__media { grid-column: span 5 / span 5; min-height: 100%; }
}

.company-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}

.company-card:hover .company-card__media img {
  transform: scale(1.05);
}

.company-card__media-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,0.6), transparent, transparent);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .company-card__media-scrim {
    background: linear-gradient(to right, rgba(2,6,23,0.2), transparent);
  }
}


.capability-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--slate-200);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    transition: all .3s;
    height: 100%;
}

@media (min-width: 640px) {
    .capability-card {
        padding: 2rem;
    }
}

.capability-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1);
    border-color: var(--lime-500);
}

.capability-card .icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: var(--lime-50);
    border: 1px solid var(--lime-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime-800);
    flex-shrink: 0;
    transition: all .2s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}

.capability-card:hover .icon {
    background: #D2F832;
    color: var(--slate-950);
}

.capability-card .icon-box-img {
    width: 44px !important;
}

.capability-card h3{
    font-family: var(--font-headline);
    font-size: 1.25rem;
    color: var(--slate-950);
    font-weight: 700;
    line-height: 1.2;
}





/* =========================================================
   PROJECT CAROUSEL
========================================================= */

.project-carousel {
    position: relative;
    width: 100%;
}


/* =========================================================
   TRACK
========================================================= */

.project-carousel__track {
    display: flex;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    scrollbar-width: none;
}

.project-carousel__track::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   ITEM
   Desktop = 2 items
========================================================= */

.project-carousel__item {
    flex: 0 0 calc((100% - 24px) / 2);

    min-width: 0;

    scroll-snap-align: start;
}


/* Giữ card full height */
.project-carousel__item .project-card {
    height: 100%;
}


/* =========================================================
   NAVIGATION
========================================================= */

.project-carousel__navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    gap: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 28px;
    width: 100%;
    padding: 0 10px;

}


/* Button */

.project-carousel__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    margin-bottom: 0;
    width: 46px;
    height: 46px;
    padding: 0;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #dfe4e8;
    border-radius: 50%;
    cursor: pointer;
    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.project-carousel__nav:hover {
    background: #D2F832;
    color: #0f172a;
    border-color: #D2F832;
    transform: translateY(-2px);
}


.project-carousel__nav .material-symbols-outlined {
    font-size: 21px;
}


/* Disabled */

.project-carousel__nav:disabled {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .project-carousel__track {
        gap: 16px;
    }


    .project-carousel__item {
        flex: 0 0 88%;
    }


    .project-carousel__navigation {
        margin-top: 20px;
    }

}

.project-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--slate-200);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    transition: box-shadow .3s;
}

.project-card:hover {
    border-color: #84CC16;
}

.project-card__media {
    width: 100%;
    height: 20rem;
    position: relative;
    overflow: hidden;
    background: var(--slate-100);
}

.project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.project-card:hover .project-card__media img {
    transform: scale(1.05);
}

.project-card__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.7), transparent);
}

.project-card__tags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.project-card__tag {
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-family: var(--font-headline);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}

.project-card__tag--light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    color: var(--slate-900);
}

.project-card__tag--lime {
    background: #D2F832;
    color: var(--slate-950);
}

.project-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1 1 auto;
    justify-content: space-between;
    text-align: start;
}

@media (min-width: 640px) {
    .project-card__body {
        padding: 2rem;
    }
}

.project-card__text {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.project-card__eyebrow {
    font-family: var(--font-headline);
    font-size: 0.75rem;
    color: var(--lime-700);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.project-card__title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--slate-950);
    font-weight: 700;
    letter-spacing: -0.025em;
}

.project-card__desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.625;
}

.project-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0.875rem;
    border-radius: 0.75rem;
    background: var(--slate-50);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.project-card__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.project-card__meta-label {
    font-family: var(--font-headline);
    font-size: 0.625rem;
    color: var(--slate-500);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.project-card__meta-value {
    font-family: var(--font-headline);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-900);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-card__meta-value--lime {
    color: var(--lime-700);
}

.project-card__footer {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link-arrow-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-headline);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--slate-900);
    transition: color .2s;
}

.link-arrow-sm:hover {
    color: var(--lime-700);
}

.link-arrow-sm .material-symbols-outlined {
    font-size: 1rem;
    font-weight: 700;
    transition: transform .2s;
}

.link-arrow-sm:hover .material-symbols-outlined {
    transform: translateX(0.25rem);
}


.news-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
  transition: box-shadow .3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
}

.news-card__media {
  height: 13rem;
  overflow: hidden;
  position: relative;
  background: var(--slate-100);
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.news-card:hover .news-card__media img {
  transform: scale(1.05);
}

.news-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}

.news-card__badge span {
  padding: 0.25rem 0.625rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  border-radius: 0.25rem;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate-900);
}

.news-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1 1 auto;
  justify-content: space-between;
}

.news-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
	text-align: start;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-family: var(--font-headline);
  color: var(--slate-500);
}

.news-card__meta .material-symbols-outlined {
  font-size: 0.875rem;
  color: var(--lime-700);
}

.news-card__meta .sep { color: var(--slate-300); }

.news-card__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: var(--slate-950);
  font-weight: 700;
  transition: color .2s;
  line-height: 1.375;
  margin-bottom: 0;
   display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover .news-card__title {
  color: var(--lime-700);
}

.news-card__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.625;
  margin-bottom: 0;
}

.news-card__footer {
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-card__cta {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--slate-900);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.news-card:hover .news-card__cta {
  color: var(--lime-700);
}

.news-card__cta .material-symbols-outlined {
  font-size: 0.875rem;
  font-weight: 700;
}


.job-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .job-list { grid-column: span 8 / span 8; }
}

.job-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .job-card {
    padding: 1.75rem;
    flex-direction: row;
    align-items: center;
  }
}

.job-card:hover {
  border-color: var(--lime-500);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
}

.job-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.job-card__title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.job-card__title {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-950);
}

.job-card__badge {
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  background: #D2F832;
  color: var(--slate-950);
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.job-card__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-700);
  margin-bottom: 0;
  font-size: 14px;
}

.job-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-family: var(--font-headline);
  color: var(--slate-500);
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

.job-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.job-card__meta-item .material-symbols-outlined {
  font-size: 0.875rem;
  color: var(--lime-700);
}

.job-card__apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--slate-100);
  color: var(--slate-900);
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all .2s;
  white-space: nowrap;
}

.job-card__apply:hover {
  background: #D2F832;
  color: var(--slate-950);
}

@media(max-width: 549px){
    .banner h1.hero__title {
        font-size: 2rem;
    }
    .transparent .header-main {
        height: 66px !important;
    }
    .hero__lead {
        font-size: 1rem;
    }
    .hero__trust {
        font-size: 0.875rem;
    }

    .about-intro h2, .main-tt h2 {
        font-size: 26px;
    }
    .about-intro p {
        font-size: 16px;
    }
    .pillar-card h3 {font-size: 18px;}
    .section-head > .col {
        padding-bottom: 0 !important;
    }
    .contact-panel__grid h2 {
        font-size: 2rem;
    }
    .contact-panel__grid > .col-inner {
        padding: 1.5rem;
    }
}