/* ============================================================
   ALCHEMISE — GLOBAL STYLES
   ============================================================ */

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

:root {
  --navy:       #0D1B2A;
  --navy-light: #162236;
  --teal:       #0E7C7B;
  --teal-light: #129796;
  --amber:      #D97706;
  --amber-dark: #B45309;
  --warm:       #ffffff; /* Global background set to white */
  --slate:      #6B7280;
  --white:      #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Inter', sans-serif; font-weight: 700; line-height: 1.2; }
.mono { font-family: 'JetBrains Mono', monospace; }

::selection { background: rgba(14,124,123,.2); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── UTILITIES ── */
.text-teal    { color: var(--teal); }
.text-white   { color: #fff; }
.text-white-60{ color: rgba(255,255,255,.6); }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,27,42,.06);
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}

/* Updated logo structural wrapper to completely feature logo.png instead of text */
.logo { 
  display: flex; 
  align-items: center; 
  text-decoration: none;
  height: 40px; /* Constrains navbar logo area framework height */
}

/* Replaced small structural icon layout with full horizontal image configuration */
.logo-icon { 
  width: 250px; 
  height: 100%; 
  background-image: url('logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  transition: opacity .2s; 
}
.logo:hover .logo-icon { opacity: .85; }

/* Removed/Deactivated old text branding element layout */
.logo-text { display: none; }

.nav-links { display: flex; align-items: center; gap: 2rem; }

/* Isolated navbar-specific button/link dark color values */
.navbar .nav-link {
  font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 500;
  color: var(--navy); text-decoration: none;
  transition: color .2s; letter-spacing: .01em;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--teal); }

.btn-cta-nav {
  padding: .6rem 1.25rem;
  background: var(--amber); color: #fff;
  font-family: 'Inter', sans-serif; font-size: .85rem; font-weight: 600;
  border-radius: 10px; text-decoration: none;
  transition: background .2s, box-shadow .2s;
}
.btn-cta-nav:hover { background: var(--amber-dark); box-shadow: 0 4px 16px rgba(217,119,6,.35); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media(max-width: 900px){
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start; gap: .5rem;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(12px);
    padding: 1rem 1.5rem 1.5rem; border-bottom: 1px solid rgba(13,27,42,.08);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: .6rem .5rem; width: 100%; font-size: 1rem; }
  .btn-cta-nav { margin-top: .5rem; width: 100%; text-align: center; padding: .75rem; }
}

/* ============================================================
   HEX PATTERN BACKGROUND
   ============================================================ */
.hex-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zm0-2.11L54 49V19L28 4 2 19v30l26 14.89z' fill='%230E7C7B' fill-opacity='0.07'/%3E%3C/svg%3E");
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 140px 1.5rem 80px;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.glow-1 { width: 480px; height: 480px; background: rgba(14,124,123,.1); top: 20%; left: 15%; }
.glow-2 { width: 320px; height: 320px; background: rgba(217,119,6,.07); bottom: 20%; right: 15%; }
.hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(14,124,123,.4); border-radius: 99px;
  padding: .4rem 1rem; margin-bottom: 2rem;
  font-family: 'JetBrains Mono', monospace; font-size: .72rem;
  color: var(--teal); letter-spacing: .1em; text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px; background: var(--teal); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-headline {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900; color: #fff; letter-spacing: -.02em;
  margin-bottom: 1.5rem; line-height: 1.05;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.6);
  max-width: 660px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-stats {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.1);
}
.stat { text-align: center; }
.stat-val { display: block; font-family: 'Inter', sans-serif; font-weight: 900; font-size: 2rem; color: var(--teal); }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: .2rem; }

.hero-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--warm), transparent);
  pointer-events: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem;
  background: var(--teal); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem;
  border-radius: 12px; text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.btn-primary:hover { background: var(--teal-light); box-shadow: 0 8px 24px rgba(14,124,123,.4); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem;
  background: rgba(255,255,255,.1); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem;
  border-radius: 12px; text-decoration: none; border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px); transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.16); }

.btn-amber {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem;
  background: var(--amber); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem;
  border-radius: 12px; text-decoration: none;
  transition: background .2s, box-shadow .2s;
}
.btn-amber:hover { background: var(--amber-dark); box-shadow: 0 6px 20px rgba(217,119,6,.35); }

.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 2rem; background: #fff; color: var(--teal);
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem;
  border-radius: 12px; text-decoration: none;
  transition: background .2s;
}
.btn-white:hover { background: var(--warm); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 2rem; background: transparent; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem;
  border-radius: 12px; text-decoration: none; border: 2px solid rgba(255,255,255,.4);
  transition: background .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

.btn-dark-sm {
  display: block; text-align: center;
  padding: .65rem 1rem; margin-top: auto;
  background: var(--navy); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .85rem;
  border-radius: 10px; text-decoration: none;
  transition: background .2s;
}
.btn-dark-sm:hover { background: var(--teal); }

.btn-quote {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .8rem 1rem; margin-top: auto;
  background: var(--amber); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .9rem;
  border-radius: 12px; text-decoration: none;
  transition: background .2s, box-shadow .2s;
}
.btn-quote:hover { background: var(--amber-dark); box-shadow: 0 4px 16px rgba(217,119,6,.3); }

.link-teal {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--teal); font-family: 'Inter', sans-serif; font-weight: 600;
  text-decoration: none; transition: color .2s;
}
.link-teal:hover { color: var(--teal-light); }
.link-teal svg { transition: transform .2s; }
.link-teal:hover svg { transform: translateX(3px); }

/* ============================================================
   LAYOUT
   ============================================================ */
.section { padding: 6rem 1.5rem; }
.bg-warm  { background: var(--warm); }
.bg-white { background: #fff; }
.bg-navy  { background: var(--navy); position: relative; overflow: hidden; }
.container { max-width: 1280px; margin: 0 auto; }
.text-center { text-align: center; }
.relative { position: relative; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: .72rem;
  font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--navy);
}
.section-title.text-white { color: #fff; }
.body-text { color: var(--slate); line-height: 1.75; margin-bottom: 1rem; }

.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
@media(max-width:900px){ .two-col { grid-template-columns:1fr; gap:3rem; } }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

@media(max-width:900px){
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:560px){ .grid-4 { grid-template-columns:1fr; } }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff; border: 1px solid #f0f0ee;
  border-radius: 20px; padding: 2rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.card:hover {
  border-color: rgba(14,124,123,.2);
  box-shadow: 0 16px 48px rgba(14,124,123,.08);
  transform: translateY(-3px);
}
.card-icon {
  width: 48px; height: 48px; background: var(--navy);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: background .3s;
}
.card:hover .card-icon { background: var(--teal); }
.card:hover .card-icon svg { stroke: #fff; }
.card-title { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; }
.card-text  { font-size: .9rem; color: var(--slate); line-height: 1.7; }

/* ── VALUES GRID (navy bg) ── */
.values-grid { display: grid; grid-template-columns:1fr 1fr; gap:1rem; }
.value-tile {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 1.5rem;
  transition: background .3s, border-color .3s;
}
.value-tile:hover { background: rgba(255,255,255,.09); border-color: rgba(14,124,123,.3); }
.hex-icon { color: var(--teal); font-size: 1.8rem; margin-bottom: .5rem; }
.value-tile h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.value-tile p  { color: rgba(255,255,255,.45); font-size: .82rem; }

/* ── PRODUCT IMAGE CARDS (NTT-style: photo bg + overlay + text-on-image) ── */
.product-mini-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 8px 24px rgba(13,27,42,.12);
}
.product-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13,27,42,.25);
}
.pmc-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .5s ease;
}
.product-mini-card:hover .pmc-bg {
  transform: scale(1.06);
}
.pmc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0) 35%, rgba(13,27,42,.55) 70%, rgba(13,27,42,.92) 100%);
  z-index: 1;
  transition: background .35s ease;
}
.product-mini-card:hover .pmc-overlay {
  background: linear-gradient(180deg, rgba(13,27,42,.05) 25%, rgba(13,27,42,.65) 65%, rgba(13,27,42,.95) 100%);
}
.pmc-content { position: relative; z-index: 2; }

.category-badge {
  display: inline-block; font-size: .68rem; font-weight: 600;
  color: #fff; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  padding: .3rem .75rem; border-radius: 99px;
  font-family: 'Inter', sans-serif;
  letter-spacing: .02em;
  margin-bottom: .85rem;
}
.product-name {
  font-size: 1.3rem; font-weight: 800; color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.2; margin-bottom: .4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.cas { font-size: .74rem; color: rgba(255,255,255,.75); letter-spacing: .06em; margin-bottom: .15rem; }
.synonym { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: .9rem; }
.pmc-readmore {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: 'Inter', sans-serif; font-size: .85rem; font-weight: 600;
  color: #fff; text-decoration: none;
  transition: gap .2s;
}
.pmc-readmore svg { transition: transform .2s; }
.product-mini-card:hover .pmc-readmore svg { transform: translateX(3px); }

@media(max-width: 640px) {
  .product-mini-card { aspect-ratio: 4 / 5; }
}

/* ── FULL PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
@media(max-width:1100px){ .products-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:640px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: #fff; border: 1px solid #f0f0ee;
  border-radius: 20px; padding: 1.75rem;
  display: flex; flex-direction: column;
  transition: box-shadow .4s, transform .4s, border-color .4s;
  position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0; transition: opacity .4s;
}
.product-card:hover { box-shadow: 0 20px 60px rgba(14,124,123,.12); transform: translateY(-4px); border-color: rgba(14,124,123,.15); }
.product-card:hover::before { opacity: 1; }

.pc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.pc-name { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.pc-meta { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1rem; }
.cas-badge {
  font-family: 'JetBrains Mono', monospace; font-size: .72rem;
  color: var(--teal); background: rgba(14,124,123,.09);
  padding: .3rem .7rem; border-radius: 6px; letter-spacing: .05em;
}
.formula-badge {
  font-family: 'JetBrains Mono', monospace; font-size: .72rem;
  color: var(--slate); background: #f4f4f2;
  padding: .3rem .7rem; border-radius: 6px;
}
.pc-also { margin-bottom: 1rem; }
.pc-also-label { font-size: .7rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--slate); margin-bottom: .3rem; }
.pc-also-text { font-size: .85rem; color: var(--slate); }
.pc-desc { font-size: .88rem; color: var(--slate); line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }

/* Applications accordion */
.pc-accordion { border: 1px solid #f0f0ee; border-radius: 12px; overflow: hidden; margin-bottom: 1.25rem; }
.pc-accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 1rem; background: #fafaf8;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  font-size: .85rem; font-weight: 600; color: var(--navy);
  transition: background .2s;
}
.pc-accordion-btn:hover { background: #f4f4f0; }
.pc-chevron { transition: transform .3s; font-size: .8rem; }
.pc-chevron.open { transform: rotate(180deg); }
.pc-apps {
  display: none; padding: .75rem 1rem; border-top: 1px solid #f0f0ee; flex-wrap: wrap; gap: .5rem;
}
.pc-apps.open { display: flex; }
.pc-apps span {
  font-size: .78rem; font-family: 'DM Sans', sans-serif;
  background: rgba(13,27,42,.06); color: var(--navy);
  padding: .3rem .75rem; border-radius: 99px;
}

/* ── ENQUIRY CARD ── */
.enquiry-card {
  background: var(--navy); border-radius: 20px; padding: 1.75rem;
  position: relative; overflow: hidden; min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.enquiry-card .hex-pattern { opacity: .05; }
.enquiry-card-body { position: relative; z-index: 1; }
.enquiry-card .hex-icon-lg { color: var(--teal); font-size: 2rem; margin-bottom: 1rem; }
.enquiry-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: .75rem; }
.enquiry-card p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.65; }

/* ── QUALITY STRIP ── */
.quality-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media(max-width:700px){ .quality-strip { grid-template-columns: 1fr; } }
.qs-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  border: 1px solid #ebebeb; border-radius: 14px;
  transition: border-color .3s;
}
.qs-item:hover { border-color: rgba(14,124,123,.2); }
.qs-icon {
  width: 36px; height: 36px; background: rgba(14,124,123,.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.qs-icon svg { stroke: var(--teal); }
.qs-item h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.qs-item p  { font-size: .82rem; color: var(--slate); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--teal); padding: 5.5rem 1.5rem;
  position: relative; overflow: hidden;
}
.cta-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 1.25rem; }
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: rgba(14,124,123,.2);
  transform: translateX(-50%);
}
@media(max-width:700px){ .timeline-line { left: 28px; } }

.timeline-item {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  margin-bottom: 3.5rem; align-items: flex-start;
}
@media(max-width:700px){
  .timeline-item { grid-template-columns: 1fr; padding-left: 60px; gap: .5rem; }
  .timeline-item.reverse .content { order: unset; text-align: left; }
}

.timeline-item.reverse .content { order: 2; text-align: right; }
.timeline-item.reverse .spacer { order: 1; }
@media(max-width:700px){ .timeline-item.reverse .content { text-align: left; } }

.timeline-dot {
  position: absolute; left: 50%; top: 4px;
  width: 12px; height: 12px; background: var(--teal); border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(14,124,123,.2);
}
@media(max-width:700px){ .timeline-dot { left: 28px; } }

.timeline-year {
  font-family: 'JetBrains Mono', monospace; font-size: .85rem;
  font-weight: 700; color: var(--teal); display: block; margin-bottom: .5rem;
}
.timeline-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.timeline-desc { font-size: .88rem; color: var(--slate); line-height: 1.7; }

/* Founder quote */
.founder-quote {
  background: var(--navy); border-radius: 20px; padding: 2rem;
  position: relative; overflow: hidden;
}
.founder-quote::before {
  content:''; position:absolute; top:0;left:0;right:0;height:2px;
  background: linear-gradient(90deg,var(--teal),transparent);
}
.quote-mark { font-size: 3.5rem; color: var(--teal); opacity: .6; line-height: 1; margin-bottom: .5rem; font-family: serif; }
.quote-text { color: rgba(255,255,255,.9); font-size: 1.05rem; font-style: italic; line-height: 1.75; margin-bottom: 1.5rem; }
.quote-author { display: flex; align-items: center; gap: .75rem; }
.qa-avatar { width: 40px; height: 40px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .9rem; flex-shrink:0; }
.qa-name { color: #fff; font-weight: 600; font-size: .9rem; }
.qa-role { color: rgba(255,255,255,.4); font-size: .78rem; }

/* Values section */
.values-full { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
@media(max-width:1000px){ .values-full { grid-template-columns: repeat(2,1fr); } }
@media(max-width:540px) { .values-full { grid-template-columns: 1fr; } }
.value-card {
  background: #fff; border: 1px solid #f0f0ee;
  border-radius: 18px; padding: 1.75rem;
  transition: border-color .3s, box-shadow .3s;
}
.value-card:hover { border-color: rgba(14,124,123,.2); box-shadow: 0 8px 24px rgba(14,124,123,.06); }
.vc-hex { color: var(--teal); font-size: 2rem; margin-bottom: 1rem; }
.vc-name { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.vc-text { font-size: .88rem; color: var(--slate); line-height: 1.7; }

/* Regions */
.regions-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
@media(max-width:900px){ .regions-grid { grid-template-columns: repeat(2,1fr); } }
.region-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; padding: 1.75rem; text-align: center;
  transition: background .3s, border-color .3s;
}
.region-card:hover { background: rgba(255,255,255,.09); border-color: rgba(14,124,123,.3); }
.region-flag { font-size: 2rem; margin-bottom: .75rem; }
.region-name { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: .3rem; }
.region-detail { color: rgba(255,255,255,.4); font-size: .8rem; }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.dept-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media(max-width:700px){ .dept-grid { grid-template-columns: 1fr; } }
.dept-card {
  background: #fff; border: 1px solid #f0f0ee;
  border-radius: 20px; padding: 2rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.dept-card:hover { border-color: rgba(14,124,123,.2); box-shadow: 0 12px 40px rgba(14,124,123,.07); transform: translateY(-2px); }
.dept-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: background .3s; }
.dept-card:hover .dept-icon { background: var(--teal); }
.dept-card:hover .dept-icon svg { stroke: #fff; }
.dept-title { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; }
.dept-desc  { font-size: .88rem; color: var(--slate); line-height: 1.7; margin-bottom: 1rem; }
.skill-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.skill-tag  { font-size: .78rem; background: rgba(13,27,42,.06); color: var(--navy); padding: .3rem .75rem; border-radius: 99px; }

.why-list { list-style: none; space-y: 1rem; }
.why-list li { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.why-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; flex-shrink: 0; margin-top: .55rem; }
.why-label { font-weight: 600; color: var(--navy); }
.why-detail { color: var(--slate); font-size: .9rem; margin-left: .35rem; }

.apply-card {
  background: var(--navy); border-radius: 20px; padding: 2rem;
  position: relative; overflow: hidden;
}
.apply-card::before { content:''; position:absolute; top:0;left:0;right:0;height:2px; background: linear-gradient(90deg,var(--teal),transparent); }
.apply-email-box {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 1.5rem;
}
.apply-email-label { color: rgba(255,255,255,.4); font-size: .75rem; margin-bottom: .25rem; }
.apply-email-link {
  font-family: 'JetBrains Mono', monospace; color: var(--teal);
  font-size: .95rem; text-decoration: none; word-break: break-all;
  transition: color .2s;
}
.apply-email-link:hover { color: var(--teal-light); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 2.5rem; align-items: flex-start; }
@media(max-width:900px){ .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--navy); border-radius: 20px; padding: 2rem; position: relative; overflow: hidden;
}
.contact-info-card::before { content:''; position:absolute;top:0;left:0;right:0;height:2px; background:linear-gradient(90deg,var(--teal),transparent);border-radius:20px 20px 0 0; }
.contact-info-title { color:#fff; font-size:1.2rem; font-weight:700; margin-bottom:1.75rem; }
.ci-item { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1.5rem; }
.ci-icon { width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.ci-icon.teal { background:rgba(14,124,123,.2); }
.ci-icon.green{ background:rgba(37,211,102,.2); }
.ci-icon svg  { width:18px;height:18px; }
.ci-icon.teal svg { stroke:var(--teal); }
.ci-icon.green svg{ stroke:#25D366; }
.ci-label { color:rgba(255,255,255,.4);font-size:.75rem;margin-bottom:.2rem; }
.ci-val   { color:#fff;font-size:.9rem; }
.ci-val a { color:#fff;text-decoration:none;transition:color .2s; }
.ci-val a:hover { color:var(--teal); }
.ci-val.green a:hover { color:#25D366; }
.ci-val.mono-val { font-family:'JetBrains Mono',monospace;font-size:.85rem; }

.map-wrap { border-radius:16px;overflow:hidden;margin-top:1.25rem;height:220px;border:1px solid rgba(255,255,255,.1); }
.map-wrap iframe { width:100%;height:100%;border:0; }

/* Form */
.form-card { background:#fff;border:1px solid #f0f0ee;border-radius:20px;padding:2.25rem;box-shadow:0 2px 12px rgba(0,0,0,.04); }
.form-title { font-size:1.4rem;font-weight:700;color:var(--navy);margin-bottom:.35rem; }
.form-sub { font-size:.88rem;color:var(--slate);margin-bottom:2rem; }
.form-row { display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;margin-bottom:1.25rem; }
@media(max-width:560px){ .form-row { grid-template-columns:1fr; } }
.form-group { margin-bottom:1.25rem; }
.form-label {
  display:block;font-family:'Inter',sans-serif;font-size:.72rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.08em;color:var(--navy);margin-bottom:.5rem;
}
.form-input, .form-select, .form-textarea {
  width:100%;padding:.8rem 1rem;
  border:1.5px solid #e8e8e5;border-radius:12px;
  background:#fafaf8;font-family:'DM Sans',sans-serif;font-size:.9rem;color:var(--navy);
  outline:none;transition:border-color .2s,background .2s;
  appearance:none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--teal);background:#fff;
}
.form-input.error, .form-select.error, .form-textarea.error { border-color:#ef4444;background:#fff5f5; }
.form-textarea { resize:none;min-height:130px;line-height:1.6; }
.error-msg { color:#ef4444;font-size:.78rem;margin-top:.35rem; }

.btn-submit {
  width:100%;padding:1rem;
  background:var(--amber);color:#fff;
  font-family:'Inter',sans-serif;font-weight:700;font-size:1rem;
  border:none;border-radius:12px;cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  transition:background .2s,box-shadow .2s;
}
.btn-submit:hover { background:var(--amber-dark);box-shadow:0 6px 20px rgba(217,119,6,.3); }
.btn-submit:disabled { background:rgba(217,119,6,.5);cursor:not-allowed; }

.spinner {
  width:18px;height:18px;border:2px solid rgba(255,255,255,.3);
  border-top-color:#fff;border-radius:50%;
  animation:spin .8s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

.success-state { text-align:center;padding:4rem 2rem; }
.success-icon { width:64px;height:64px;background:rgba(14,124,123,.12);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem; }
.success-icon svg { stroke:var(--teal);width:32px;height:32px; }
.success-title { font-size:1.5rem;font-weight:700;color:var(--navy);margin-bottom:.75rem; }
.success-msg { color:var(--slate);max-width:340px;margin:0 auto;line-height:1.7; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background:var(--navy);padding:140px 1.5rem 80px;
  position:relative;overflow:hidden;
}
.page-hero .hero-fade-bottom { background:linear-gradient(to top,var(--warm),transparent); }
.page-hero-inner { max-width:900px;margin:0 auto;position:relative;z-index:1; }
.page-title {
  font-size:clamp(2.2rem,6vw,4rem);font-weight:900;color:#fff;
  line-height:1.1;margin-bottom:1.25rem;
}
.page-sub { font-size:1.05rem;color:rgba(255,255,255,.6);max-width:600px;line-height:1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background:#F0F2F5;color:#1a2740; }
.footer-inner {
  max-width:1280px;margin:0 auto;
  padding:4.5rem 1.5rem 3rem;
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1.25fr;gap:3rem;
}
@media(max-width:900px){ .footer-inner { grid-template-columns:1fr 1fr;gap:2rem; } }
@media(max-width:540px){ .footer-inner { grid-template-columns:1fr; } }

.footer-tagline { color:#4B5563;font-size:.88rem;line-height:1.6;margin-bottom:1rem; }
.footer-est { color:var(--teal);font-size:.72rem;letter-spacing:.1em; }
.footer-heading { font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.12em;color:#9CA3AF;margin-bottom:1rem; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:.6rem; }
.footer-links a { color:#374151;text-decoration:none;font-size:.88rem;transition:color .2s; }
.footer-links a:hover { color:var(--teal); }
.footer-contact { list-style:none; }
.footer-contact li { color:#374151;font-size:.85rem;margin-bottom:.75rem;line-height:1.5; }
.footer-contact a { color:#374151;text-decoration:none;transition:color .2s; }
.footer-contact a:hover { color:var(--teal); }

.footer-bar {
  border-top:1px solid rgba(13,27,42,.1);
  max-width:1280px;margin:0 auto;
  padding:1.25rem 1.5rem;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.75rem;
}
.footer-bar span { color:#6B7280;font-size:.82rem; }
.footer-cin { font-family:'JetBrains Mono',monospace;font-size:.7rem; }
.mb-3 { margin-bottom:.75rem; }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
  position:fixed;bottom:1.5rem;right:1.5rem;z-index:9999;
  width:56px;height:56px;background:#25D366;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(0,0,0,.25);
  transition:transform .3s,box-shadow .3s;text-decoration:none;
}
.whatsapp-btn:hover { transform:scale(1.1);box-shadow:0 6px 28 rgba(0,0,0,.3); }
.wa-tooltip {
  position:absolute;right:68px;
  background:var(--navy);color:#fff;
  font-family:'DM Sans',sans-serif;font-size:.78rem;font-weight:500;
  padding:.4rem .9rem;border-radius:8px;white-space:nowrap;
  opacity:0;pointer-events:none;transition:opacity .2s;
  box-shadow:0 2px 8px rgba(0,0,0,.2);
}
.whatsapp-btn:hover .wa-tooltip { opacity:1; }



/* ── Hero badge — lighter, more visible ── */
.hero-badge {
  border-color: rgba(242,201,122,.45);
}
.hero-badge .mono {
  color: #F2C97A;
  font-size: .82rem;
  letter-spacing: .14em;
}
.badge-dot { background: #F2C97A; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in { opacity:0;transform:translateY(24px);animation:fadeIn .7s ease forwards; }
.fade-in.delay-1 { animation-delay:.12s; }
.fade-in.delay-2 { animation-delay:.24s; }
.fade-in.delay-3 { animation-delay:.36s; }
.fade-in.delay-4 { animation-delay:.5s; }
@keyframes fadeIn { to { opacity:1;transform:translateY(0); } }

.reveal { opacity:0;transform:translateY(28px);transition:opacity .65s ease,transform .65s ease; }
.reveal.delay-1 { transition-delay:.1s; }
.reveal.delay-2 { transition-delay:.2s; }
.reveal.delay-3 { transition-delay:.3s; }
.reveal.delay-4 { transition-delay:.4s; }
.reveal.visible { opacity:1;transform:translateY(0); }


/* ==========================================================================
   PRODUCT FILTERING SYSTEM
   ========================================================================== */

/* Change cursor to pointer to let users know the pills are clickable */
.filter-pill {
  cursor: pointer !important;
}

/* Hidden utility class to filter out unmatched products seamlessly */
.product-card.hidden {
  display: none !important;
}

/* Optional: Smooth fade-in animation when items change */
.product-card {
  animation: fadeInFilter 0.4s ease forwards;
}

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