/* ============================================================
   PT. INTI FAJAR PRATAMA
   Montserrat (headings) + Open Sans (body)
   Navy #1A1464 · Teal #5DB8A0
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1A1464;
  --navy-dark:  #0F0D3D;
  --navy-mid:   #231A8C;
  --teal:       #5DB8A0;
  --teal-dark:  #3E9E87;
  --teal-light: #7ECFBB;
  --white:      #FFFFFF;
  --offwhite:   #F8F9FB;
  --gray-50:    #F9FAFB;
  --gray-100:   #EEF0F4;
  --gray-300:   #D1D5DB;
  --gray-400:   #9CA3AF;
  --gray-500:   #6B7280;
  --gray-700:   #374151;
  --dark:       #080720;

  --ff-head: 'Montserrat', sans-serif;
  --ff-body: 'Open Sans', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 6px rgba(15,13,61,.07);
  --shadow-md: 0 4px 20px rgba(15,13,61,.10);
  --shadow-lg: 0 12px 40px rgba(15,13,61,.15);
  --shadow-xl: 0 24px 64px rgba(15,13,61,.22);

  --ease: cubic-bezier(.4,0,.2,1);
}

html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--ff-body); color: var(--gray-700); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; }
strong { font-weight: 600; }

/* ── UTILITIES ── */
.container  { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--dark  { background: var(--navy-dark); padding: 96px 0; position: relative; }
.section--light { background: var(--offwhite); padding: 96px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--teal-light); }

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.section-title--light { color: var(--white); }

.section-desc {
  margin-top: 16px;
  font-size: .9625rem;
  color: var(--gray-500);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.section-desc--light { color: rgba(255,255,255,.58); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--ff-head);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s var(--ease);
  white-space: nowrap;
}
.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(93,184,160,.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.75);
}
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #1EAE54;
  border-color: #1EAE54;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.btn--submit {
  width: 100%;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  padding: 14px 28px;
  border-radius: 6px;
}
.btn--submit:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
.btn--submit:disabled { opacity: .6; cursor: not-allowed; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 1px 12px rgba(15,13,61,.1);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .3s var(--ease);
}
.navbar.scrolled .navbar__logo img { filter: none; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar__links a {
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.navbar__links a:hover { color: var(--teal-light); }
.navbar.scrolled .navbar__links a { color: var(--gray-700); }
.navbar.scrolled .navbar__links a:hover { color: var(--teal); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 6px;
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.45);
  color: var(--white) !important;
  transition: all .22s var(--ease);
}
.btn-nav:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.navbar.scrolled .btn-nav { border-color: var(--navy); color: var(--navy) !important; }
.navbar.scrolled .btn-nav:hover { background: var(--navy); color: var(--white) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s var(--ease);
}
.navbar.scrolled .burger span { background: var(--navy); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Actions wrapper (lang toggle + burger) */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 6px 10px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.lang-toggle:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.5);
}
.navbar.scrolled .lang-toggle {
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--navy);
}
.navbar.scrolled .lang-toggle:hover {
  background: var(--gray-200);
  border-color: var(--gray-300);
}

.navbar__links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 20px 24px 28px;
  gap: 16px;
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.navbar__links.open a { color: var(--gray-700) !important; font-size: .9rem; letter-spacing: .04em; }
.navbar__links.open .btn-nav { border-color: var(--navy); color: var(--navy) !important; justify-content: center; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(10,8,48,0.94) 0%,
    rgba(15,13,61,0.88) 40%,
    rgba(15,13,61,0.65) 70%,
    rgba(15,13,61,0.35) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 88px;
  padding-bottom: 64px;
  max-width: 660px;
}

.hero__pill { animation: fadeUp .8s .1s both; }
.hero__title { animation: fadeUp .8s .25s both; }
.hero__sub   { animation: fadeUp .8s .4s both; }
.hero__cta   { animation: fadeUp .8s .52s both; }
.hero__principals { animation: fadeUp .8s .64s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 4px;
  border: 1px solid rgba(93,184,160,.3);
  background: rgba(93,184,160,.1);
  color: var(--teal-light);
  font-family: var(--ff-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .25; }
}

.hero__title {
  font-family: var(--ff-head);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero__accent { color: var(--teal); }

.hero__sub {
  font-family: var(--ff-body);
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,.68);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 40px;
}
.hero__sub strong { color: rgba(255,255,255,.9); font-weight: 600; }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__principals {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__principals-label {
  font-family: var(--ff-head);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.hero__divider { width: 36px; height: 1px; background: rgba(255,255,255,.15); }
.hero__principal {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .02em;
  cursor: default;
  transition: color .2s;
}
.hero__principal:hover { color: rgba(255,255,255,.8); }

.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-label {
  font-family: var(--ff-head);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.hero__scroll-track {
  width: 20px; height: 32px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.22);
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.hero__scroll-thumb {
  width: 4px; height: 8px;
  border-radius: 2px;
  background: rgba(255,255,255,.45);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(8px); opacity: .3; }
}

/* ══════════════════════════════════════
   PARTNER LOGO STRIP
══════════════════════════════════════ */
.partner-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0 24px;
}
.partner-strip__label {
  display: block;
  font-family: var(--ff-head);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 16px;
}
.partner-strip__track-wrapper {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.partner-strip__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
  animation: partner-marquee 38s linear infinite;
}
.partner-strip__track:hover { animation-play-state: paused; }
.partner-strip__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  border-right: 1px solid var(--gray-100);
}
.partner-strip__logo:last-child { border-right: none; }
.partner-strip__logo img {
  height: 32px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.45);
  transition: filter .25s var(--ease);
  display: block;
}
.partner-strip__track:hover .partner-strip__logo img { filter: grayscale(1) opacity(.65); }
.partner-strip__logo:hover img { filter: grayscale(0) opacity(1) !important; }

@keyframes partner-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid var(--gray-100);
  transition: background .2s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--offwhite); }
.stat__num {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  transition: color .2s;
}
.stat:hover .stat__num { color: var(--teal); }
.stat__sup { font-size: 1.3rem; color: var(--teal); }
.stat__label {
  font-family: var(--ff-head);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--navy);
  opacity: .7;
  margin-top: 10px;
}
.stat__sub { font-size: .78rem; color: var(--gray-400); margin-top: 4px; }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 48px;
}
.about__text .eyebrow { display: block; }
.about__text .section-title { margin-bottom: 24px; }
.about__body p {
  font-size: .9375rem;
  color: var(--gray-500);
  line-height: 1.82;
  margin-bottom: 14px;
}
.about__body strong { color: var(--navy); }

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 4px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

.about__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}
.about__image:hover img { transform: scale(1.03); }

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.about-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.about-card--navy { border-left: 3px solid var(--navy); }
.about-card--teal { border-left: 3px solid var(--teal); }
.about-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.about-card h3 {
  font-family: var(--ff-head);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.about-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.72; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: background .25s, border-color .25s, transform .25s;
}
.service-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(93,184,160,.3);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(93,184,160,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  margin-bottom: 20px;
  transition: background .25s;
}
.service-card:hover .service-card__icon { background: rgba(93,184,160,.2); }
.service-card h3 {
  font-family: var(--ff-head);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.service-card p { font-size: .875rem; color: rgba(255,255,255,.52); line-height: 1.82; }

/* ══════════════════════════════════════
   PRODUCTS
══════════════════════════════════════ */
.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.tab {
  padding: 10px 28px;
  border-radius: 6px;
  border: 2px solid var(--gray-100);
  background: var(--white);
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
  cursor: pointer;
  transition: all .22s var(--ease);
}
.tab:hover { border-color: var(--navy); color: var(--navy); }
.tab--active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.tab--active:hover { color: var(--white); }

.tab-panel { display: none; }
.tab-panel--active { display: block; }

.products__intro {
  text-align: center;
  font-size: .9375rem;
  color: var(--gray-500);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.8;
}
.products__intro strong { color: var(--navy); }

/* IFSORB brand block */
.ifsorb-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--offwhite) 0%, rgba(93,184,160,.08) 100%);
  border: 1px solid rgba(93,184,160,.25);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 48px 40px 40px;
  margin-bottom: 36px;
}
.ifsorb-brand__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ifsorb-brand__logo img {
  height: 140px;
  max-width: 360px;
  width: auto;
  object-fit: contain;
}
.ifsorb-brand p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin: 0;
  max-width: 580px;
}

/* Absorbent feature image */
.absorbent-feature {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 48px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}
.absorbent-feature img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.absorbent-feature__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(10,8,48,.88), transparent);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.absorbent-feature__caption strong {
  font-family: var(--ff-head);
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.absorbent-feature__caption span {
  font-size: .8125rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.products__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.products__grid--hscroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px;
  padding-top: 10px;
}
.products__grid--hscroll::-webkit-scrollbar { height: 4px; }
.products__grid--hscroll::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 2px; }
.products__grid--hscroll::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }
.products__grid--hscroll .product-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.product-card:hover { box-shadow: none; transform: translateY(-4px); }
.product-card--soon {
  border-style: dashed;
  background: var(--gray-50);
  opacity: .75;
}
.product-card--soon:hover { transform: none; box-shadow: none; opacity: 1; }
.product-card__icon--muted svg { opacity: .4; }
.product-soon-label {
  display: inline-block;
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--ff-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.product-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--ff-head);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}
.product-badge--navy  { background: var(--navy);  color: var(--white); }
.product-badge--teal  { background: var(--teal);  color: var(--white); }
.product-badge--green { background: #2E7D32; color: var(--white); }

.product-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 16px;
}
.product-card h3 {
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  padding-right: 52px;
  letter-spacing: .01em;
}
.product-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.74; margin-bottom: 18px; }
.product-list { list-style: none; margin-top: auto; display: flex; flex-direction: column; gap: 6px; }
.product-list li {
  font-size: .8375rem;
  color: var(--gray-500);
  padding-left: 16px;
  position: relative;
}
.product-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  font-weight: 700;
  font-size: .75rem;
}

/* ══════════════════════════════════════
   PRINCIPALS
══════════════════════════════════════ */
.principals__grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px;
  padding-top: 10px;
}
.principals__grid::-webkit-scrollbar { height: 4px; }
.principals__grid::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 2px; }
.principals__grid::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }
.principal-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}
.principal-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.principal-card:hover { box-shadow: none; transform: translateY(-4px); }
.principal-card--navy { border-top: 3px solid var(--navy); }
.principal-card--teal { border-top: 3px solid var(--teal); }
.principal-card__logo {
  height: 72px;
  margin: 24px 24px 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}
.principal-card__logo img {
  max-height: 44px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.principal-card__desc {
  margin: 16px 24px 18px;
  font-size: .855rem;
  color: var(--gray-500);
  line-height: 1.78;
}
.principal-card__tags {
  padding: 0 24px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.principal-card__tags span {
  padding: 4px 10px;
  background: var(--offwhite);
  border: 1px solid var(--gray-100);
  border-radius: 4px;
  font-family: var(--ff-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
}

.more-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  cursor: default;
}
.more-card:hover {
  box-shadow: none;
  transform: translateY(-4px);
}
.more-card__dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.more-card__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .35;
}
.more-card__dots span:nth-child(2) { opacity: .6; }
.more-card__dots span:nth-child(3) { opacity: .9; }
.more-card__label {
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
}
.more-card__sub {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════ */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  background: var(--offwhite);
  transition: border-color .2s, box-shadow .2s, background .2s, transform .2s;
  cursor: default;
}
.industry-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transform: translateY(-3px);
}
.industry-item__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background .2s, color .2s;
}
.industry-item:hover .industry-item__icon {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.industry-item span:last-child {
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--navy);
  line-height: 1.35;
}
.industry-item--more { opacity: .6; }
.industry-item--more:hover { opacity: 1; border-color: var(--teal); }
.industry-item--more span:last-child { color: var(--teal-dark); }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.contact__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10,8,48,.9);
}
.contact__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact__desc {
  color: rgba(255,255,255,.6);
  font-size: .9375rem;
  line-height: 1.8;
  margin-top: 18px;
  margin-bottom: 36px;
}
.contact__details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact__detail  { display: flex; gap: 14px; align-items: flex-start; }
.contact__detail-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(93,184,160,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__detail strong {
  display: block;
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}
.contact__detail p { color: rgba(255,255,255,.55); font-size: .875rem; line-height: 1.65; }
.contact__detail a { color: var(--teal-light); }
.contact__detail a:hover { text-decoration: underline; }

.contact__form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
}
.contact__form h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .01em;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--ff-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-100);
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--gray-700);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,20,100,.08);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 106px; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: flex; }
.form-success__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(93,184,160,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 16px;
}
.form-success p { color: var(--gray-500); font-size: .9rem; line-height: 1.65; }
.form-success strong { color: var(--navy); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--dark); color: rgba(255,255,255,.5); }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer__logo {
  height: 30px; width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: .7;
}
.footer__brand { max-width: 340px; }
.footer__brand p { font-size: .875rem; line-height: 1.75; }
.footer__brand strong { color: rgba(255,255,255,.75); }
.footer__cols-right { display: flex; gap: 48px; }
.footer__col h4 {
  font-family: var(--ff-head);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: .875rem; color: rgba(255,255,255,.48); transition: color .2s; }
.footer__col a:hover { color: var(--teal-light); }
.footer__col address { font-style: normal; }
.footer__col address p { font-size: .875rem; line-height: 1.72; margin-bottom: 10px; }
.footer__col address a { color: var(--teal-light); }
.footer__col address a:hover { text-decoration: underline; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
}
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about__grid        { grid-template-columns: 1fr; }
  .about__image img   { height: 360px; }
  .products__grid--4  { grid-template-columns: repeat(2, 1fr); }
  .industries__grid   { grid-template-columns: repeat(4, 1fr); }
  .footer__inner      { flex-wrap: wrap; }
  .footer__brand      { max-width: 100%; width: 100%; }
}

@media (max-width: 768px) {
  .section, .section--dark, .section--light { padding: 64px 0; }

  .burger { display: flex; }
  .navbar__links { display: none; }
  .navbar__links.open { display: flex; }

  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .stat:last-child { border-bottom: none; }

  .about__cards    { grid-template-columns: 1fr; }
  .services__grid  { grid-template-columns: 1fr; }
  .products__grid  { grid-template-columns: 1fr; }
  .principals__grid { -webkit-mask-image: none; mask-image: none; }
  .industries__grid{ grid-template-columns: repeat(2, 1fr); }
  .contact__grid   { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner   { flex-direction: column; gap: 28px; }
  .footer__cols-right { flex-wrap: wrap; gap: 28px; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }

  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .form-row  { grid-template-columns: 1fr; }
  .tabs      { flex-direction: column; align-items: center; }
  .absorbent-feature img { height: 220px; }
}

@media (max-width: 480px) {
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__form    { padding: 28px 20px; }
  .about__image img { height: 280px; }
}
