@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

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

:root {
  --navy: #1b2d4b;
  --navy-deep: #0f1d33;
  --navy-mid: #253d5e;
  --teal: #2ca5a0;
  --teal-dark: #1e8c87;
  --teal-light: #3cc4bf;
  --cyan-glow: #5dddd8;
  --lime: #8cc63f;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --gray-100: #eef1f5;
  --gray-200: #d8dde5;
  --gray-400: #8d99ae;
  --gray-600: #4a5568;
  --gray-800: #2d3748;
  /* Single typeface system — Avenir family, with Nunito Sans as the web fallback. */
  --font-display: 'Avenir Next', 'Avenir', 'Google Sans', 'Nunito Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Avenir Next', 'Avenir', 'Google Sans', 'Nunito Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-800);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ═══ MOBILE TOUCH FIXES ═══ */
* { -webkit-tap-highlight-color: transparent; }

button,
.nav-logo,
.nav-toggle,
.btn,
[onclick],
a {
  cursor: pointer !important;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

/* Ensure all page links and interactive cards are tappable */
.nav-links li button,
.nav-cta,
.btn-primary,
.btn-secondary,
.btn-outline-dark,
.btn-lime {
  touch-action: manipulation;
  -webkit-appearance: none;
}

/* Remove iOS input shadows */
input, select, textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

/* ── NAV ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  background: rgba(15,29,51,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(24px,4vw,56px);
  height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; cursor:pointer; }
.logo-mark { flex-shrink:0; display:block; }
.logo-wordmark {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13.5px;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.nav-right { display:flex; align-items:center; gap:6px; }
.nav-links {
  list-style:none;
}
.nav-links li a, .nav-links li button {
  background:none; border:none; cursor:pointer;
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration:none;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.nav-links li a:hover, .nav-links li button:hover {
  color: var(--white); background: rgba(255,255,255,0.06);
}
.nav-links li.active button,
.nav-links li.active a { color: var(--white) !important; font-weight: 600; background: rgba(44,165,160,0.18); }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  font-weight: 500 !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  transition: all var(--transition) !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--teal-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(44,165,160,0.3) !important;
}

/* ── Language switch (EN | PT-BR) ── */
.lang-switch {
  display: inline-flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 3px;
  margin-left: 6px;
  margin-right: 4px;
  position: relative;
}
.lang-switch button {
  background: transparent !important;
  border: none;
  cursor: pointer;
  padding: 6px 12px !important;
  border-radius: 100px !important;
  font-family: var(--font-body);
  font-size: 11px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.55) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  min-width: 58px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-sizing: border-box;
}
.lang-switch button.active {
  background: rgba(255,255,255,0.14) !important;
  color: var(--white) !important;
}
.lang-flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 0.5px rgba(255,255,255,0.15);
}

/* Mobile nav (mobile-first: hamburger visible by default) */
.nav-toggle {
  display:block; background:none; border:none; cursor:pointer;
  width:44px; height:44px; position:relative;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display:block; width:22px; height:2px; background:rgba(255,255,255,0.85);
  position:absolute; left:11px; transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  border-radius: 1px;
}
.nav-toggle span:nth-child(1) { top:13px; }
.nav-toggle span:nth-child(2) { top:21px; }
.nav-toggle span:nth-child(3) { top:29px; }

.nav-links {
  display:none; position:absolute; top:72px; left:0; right:0;
  background: var(--navy-deep); flex-direction:column;
  align-items: center;
  padding: 12px 20px 20px;
  gap: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  animation: navSlideDown 0.25s ease;
}
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-links.open { display:flex; }
.nav-links li a, .nav-links li button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-size: 15px;
  border-radius: var(--radius);
  width: 100%;
  text-align: center;
}
.nav-links li {
  width: 100%;
}
.nav-links li:has(.lang-switch) {
  display: flex;
  justify-content: center;
  width: 100%;
}
.nav-links .lang-switch {
  margin: 12px 0 8px;
}
.nav-links .nav-cta {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
  width: 100%;
  padding: 14px 22px !important;
}

@media (min-width: 1001px) {
  .nav-toggle { display:none; }
  .nav-links {
    display:flex; position:static;
    background: none; flex-direction:row;
    padding: 0; gap: 4px;
    border-bottom: none;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    animation: none;
    align-items: center;
  }
  .nav-links li {
    width: auto;
  }
  .nav-links li a, .nav-links li button {
    min-height: auto;
    padding: 8px 14px;
    font-size: 13px;
    min-width: max-content;
    text-wrap: nowrap;
    width: auto;
    justify-content: flex-start;
  }
  .nav-links .lang-switch {
    margin: 0 0 0 6px;
    align-self: auto;
  }
  .nav-links .nav-cta {
    margin-top: 0;
    width: auto;
    padding: 8px 24px !important;
    font-size: 14px !important;
    line-height: 1;
  }
}

/* ── Pages ── */
.page { display:none; }
.page.active { display:block; }

/* ── CSS :target fallback — works even without JS (iOS Quick Look, etc.) ── */
.page:target { display:block; }
/* When any non-home page is targeted, home hides */
body:has(.page:not(#page-home):target) #page-home { display:none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(24px,4vw,56px); }
.section { padding: clamp(64px,8vw,120px) 0; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content:""; width:24px; height:1.5px; background: var(--teal-light);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300; /* Avenir Light */
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; font-weight: 300; }
.section-title-light {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title-light em { color: var(--teal-light); font-style: italic; font-weight: 300; }
.section-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 640px;
}
.section-subtitle-light {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 640px;
}

/* Buttons */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-body);
  font-weight: 500; font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius);
  border:none; cursor:pointer; text-decoration:none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(44,165,160,0.25); }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--gray-200); }
.btn-outline-dark:hover { border-color: var(--teal); color: var(--teal); background: rgba(44,165,160,0.04); }
.btn-ghost-light { background:transparent; color: var(--teal); border: 1.5px solid rgba(44,165,160,0.3); }
.btn-ghost-light:hover { background: rgba(44,165,160,0.06); border-color: var(--teal); }
.btn-lime { background: var(--lime); color: var(--navy-deep); }
.btn-lime:hover { background: #9dd44e; transform: translateY(-1px); }

/* Grids */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.grid-3 { display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.grid-4 { display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns:1fr; }
}
@media (min-width: 481px) and (max-width:768px) {
  .grid-3, .grid-4 { grid-template-columns:1fr 1fr; }
}

/* Animations */
@keyframes fadeUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 0 0 rgba(44,165,160,0.3); } 50% { box-shadow: 0 0 0 12px rgba(44,165,160,0); } }

/* ═════════ HOME ═════════ */
.hero {
  background: var(--navy-deep);
  padding: 160px 0 100px;
  position: relative; overflow: hidden;
  min-height: 88vh; display:flex; align-items:center;
}
.hero::before {
  content:""; position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(to right, var(--navy-deep) 38%, rgba(10,22,40,0.82) 58%, rgba(10,22,40,0.3) 80%, transparent 100%),
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(44,165,160,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after { display:none; }
.hero-molecule {
  position: absolute;
  right: 0; top: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero-molecule { width: 100%; opacity: 0.15; }
  .hero { min-height: auto; padding: 120px 0 80px; }
}
@media (max-width: 480px) {
  .hero-molecule { display: none; }
  .hero { padding: 100px 0 64px; }
}
.hero-inner { position:relative; z-index:2; max-width: 600px; }
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 11px; font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeUp 0.6s ease both;
}
.hero-dot {
  width:24px; height:1.5px; border-radius:0;
  background: var(--teal-light);
  flex-shrink:0;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400; /* Avenir Light */
  font-size: clamp(40px, 6vw, 78px);
  color: var(--white);
  line-height: 1.04;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  animation: fadeUp 0.7s ease both 0.1s;
}
.hero-title em { color: var(--teal-light); font-style: italic; font-weight: 400; }
.hero-body {
  font-size: 19px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 44px;
  animation: fadeUp 0.7s ease both 0.2s;
}
.hero-cta-group {
  display:flex; align-items:center; gap:14px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease both 0.3s;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.7s ease both 0.4s;
}
@media (max-width: 560px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 42px);
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hero-stat-num span { color: rgba(255,255,255,0.55); font-size: 0.72em; }
.hero-stat-label {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.03em;
}

/* ── Single big proof ── */
.proof-section {
  background: var(--white);
  padding: clamp(80px, 10vw, 140px) 0;
}
.proof-grid {
  display:grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .proof-grid { grid-template-columns:1fr; gap:48px; } }
.proof-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(80px, 11vw, 160px);
  line-height: 0.9;
  color: var(--teal);
  letter-spacing: -0.04em;
}
.proof-number span {
  font-size: 0.4em;
  color: var(--gray-400);
  font-weight: 400;
  vertical-align: top;
  margin-left: 4px;
}
.proof-caption {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--navy);
  line-height: 1.3;
  margin-top: 20px;
}

/* Compact value row */
.value-row {
  background: var(--off-white);
  padding: clamp(64px, 8vw, 100px) 0;
}
.value-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width:900px) { .value-grid { grid-template-columns:1fr; } }
.value-card {
  background: transparent;
  padding: 0;
}
.value-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(54px, 6vw, 88px);
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.value-caption {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-700);
  line-height: 1.65;
}

/* What we make — teaser */
.make-section {
  background: var(--navy-deep);
  position: relative; overflow:hidden;
}
.make-section::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(ellipse at 80% 50%, rgba(44,165,160,0.08) 0%, transparent 60%);
  pointer-events:none;
}
.make-section .container { position:relative; z-index:1; }
.make-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width:900px) { .make-grid { grid-template-columns:1fr; gap:40px; } }
.make-mini-list {
  display:flex; flex-direction:column; gap: 14px;
  margin-top: 32px;
}
.make-mini-item {
  display:flex; align-items:flex-start; gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
}
.make-mini-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(44,165,160,0.2);
}
.make-mini-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(44,165,160,0.15);
  display:flex; align-items:center; justify-content:center;
  color: var(--teal-light);
  font-size: 13px;
  flex-shrink: 0;
}
.make-mini-text {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}

/* Team / Track record one-liner */
.team-strip {
  background: var(--white);
  padding: clamp(80px,8vw,120px) 0;
}
.team-strip-inner {
  text-align: center; max-width: 880px; margin: 0 auto;
}

/* Pipeline teaser */
.pipeline-teaser-h {
  background: var(--off-white);
}
.pipeline-mini {
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
@media (max-width:900px) { .pipeline-mini { grid-template-columns:1fr; } }
.pipeline-mini-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.pipeline-mini-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pipeline-mini-badge {
  display:inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(44,165,160,0.10); color: var(--teal);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 16px;
}
.pipeline-mini-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 6px;
}
.pipeline-mini-card .pm-sub {
  font-size: 14px; color: var(--gray-600);
  margin-bottom: 16px;
  font-weight: 500;
}
.pipeline-mini-card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-700);
  line-height: 1.65;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events:none;
}
.cta-banner .container { position:relative; z-index:1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.cta-pre {
  display:block;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.cta-main {
  display:block;
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.05;
}
.cta-banner h2 em { font-style: italic; }
.cta-banner p {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 520px; margin: 0 auto 36px;
}
.cta-group { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.cta-group .btn { min-width: 220px; justify-content:center; }

/* ═════════ PRODUCT PAGE ═════════ */
.product-hero {
  background: var(--navy-deep);
  padding: 140px 0 80px;
  position:relative; overflow:hidden;
}
.product-hero::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(ellipse at 70% 30%, rgba(44,165,160,0.1) 0%, transparent 60%);
  pointer-events:none;
}
.product-hero .container { position:relative; z-index:1; }
.product-hero-grid {
  display:grid; grid-template-columns: 1fr 400px;
  gap: 80px; align-items:start;
}
@media (max-width:900px) { .product-hero-grid { grid-template-columns:1fr; } }
.product-specs {
  display:grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 32px;
}
.spec-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.spec-label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}
.spec-value { font-size: 17px; font-weight: 500; color: var(--white); }
.spec-value.best { color: var(--teal-light); }
.cert-list-label {
  font-size:11px; font-weight:600; letter-spacing:0.16em;
  text-transform:uppercase; color: var(--teal-light);
  margin-bottom: 20px;
}
.cert-list { display:flex; flex-direction:column; gap: 10px; }
.cert-item {
  display:flex; align-items:center; gap: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.cert-dot { width:8px; height:8px; border-radius:50%; background: var(--teal-light); flex-shrink:0; }
.cert-text { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.8); }

.product-content { background: var(--white); }
.gen-cards {
  display:grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2px; background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow:hidden;
  margin-top: 48px;
}
@media (max-width:900px) { .gen-cards { grid-template-columns:1fr; } }
.gen-card { background: var(--white); padding: 28px 24px; }
.gen-card.featured { background: var(--navy-deep); }
.gen-card.featured .gen-label { color: var(--teal-light); }
.gen-card.featured .gen-name { color: var(--teal-light) !important; }
.gen-card.featured .gen-subtitle { color: rgba(44,165,160,0.75) !important; font-weight:500; }
.gen-card.featured .gen-list li { color: rgba(255,255,255,0.85); }
.gen-card.featured .gen-pro::before { color: var(--teal-light); }
.gen-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.gen-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}
.gen-subtitle { font-size: 12px; color: var(--gray-600); margin-bottom: 16px; font-weight: 400; }
.gen-list { list-style:none; }
.gen-list li {
  font-size: 13px; font-weight: 400;
  color: var(--gray-600);
  padding: 4px 0;
  display:flex; gap: 8px;
}
.gen-issue::before { content:"—"; color:#c0392b; font-size:13px; font-weight:600; }
.gen-pro::before { content:"✓"; color: var(--teal); font-size:12px; font-weight:700; }

.performance-section { background: var(--off-white); }
.perf-grid {
  display:grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 48px;
}
@media (max-width:700px) { .perf-grid { grid-template-columns:1fr; } }
.perf-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.perf-card h4 {
  font-size: 11px; font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.perf-big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 66px;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
}
.perf-context {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-700);
  margin-top: 16px;
  line-height: 1.65;
}
.perf-source {
  font-size: 13px;
  color: var(--teal);
  margin-top: 14px;
  font-style: italic;
  line-height: 1.55;
  opacity: 0.8;
}

.app-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 40px; }
@media (max-width:700px) { .app-grid { grid-template-columns:1fr 1fr; } }
.prod-app-card {
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
/* app-card hover removed */
.app-icon { font-size: 32px; margin-bottom: 12px; }
.app-name { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.app-dose { font-size: 13px; color: var(--gray-600); font-weight: 400; }

/* Process / Production section (new) */
.process-section { background: var(--white); }
.process-grid {
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px;
}
@media (max-width:900px) { .process-grid { grid-template-columns:1fr; } }
.process-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}
.process-card:hover { border-color: var(--gray-200); box-shadow: var(--shadow-md); }
.process-step {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.process-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 14px;
}
.process-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Data table */
.data-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; margin-top: 40px;
}
.data-table th {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
}
.data-table th:first-child { border-radius: var(--radius) 0 0 0; }
.data-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.data-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 400;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--off-white); }
.data-table .highlight-col {
  background: rgba(44,165,160,0.06) !important;
  font-weight: 600;
  color: var(--teal-dark);
}
.data-table th.highlight-col { background: var(--teal) !important; color: var(--white); }

/* ═════════ ABOUT PAGE ═════════ */
.about-hero {
  background: var(--navy-deep);
  padding: 140px 0 80px;
  position:relative; overflow:hidden;
}
.about-hero::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(ellipse at 30% 50%, rgba(44,165,160,0.08) 0%, transparent 60%);
  pointer-events:none;
}
.about-hero .container { position:relative; z-index:1; }
.about-mission {
  border-left: 3px solid var(--teal);
  padding: 16px 32px;
  margin-top: 40px;
  font-size: 19px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}
.about-mission-cite {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding-left: 32px;
}

.team-section { background: var(--white); }
.team-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width:900px) { .team-grid { grid-template-columns:1fr; } }
@media (min-width:601px) and (max-width:900px) { .team-grid { grid-template-columns:1fr 1fr; } }
.team-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: all var(--transition);
  text-align: center;
  padding-top: 0;
}
.team-card::before { display: none; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-photo-area {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  overflow: hidden;
  margin: 32px auto 16px;
  border: 3px solid rgba(44,165,160,0.35);
  box-shadow: 0 6px 28px rgba(0,0,0,0.14);
  position: relative;
  background: var(--white);
  flex-shrink: 0;
}
.team-photo-area::after { display: none; }
.team-photo-area img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 12%;
  position: absolute; inset: 0;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 22px; font-weight: 500;
  color: var(--white);
  border: 3px solid rgba(255,255,255,0.18);
  margin: 32px auto 20px;
  position: relative; z-index: 1;
}
.team-card-body { padding: 0 26px 32px; }
.team-card-body h3 {
  font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.team-card-body .role {
  font-size: 14px; color: var(--teal);
  font-weight: 500; margin-bottom: 18px;
}
.team-card-body ul { list-style:none; text-align: left; }
.team-card-body ul li {
  font-size: 14px; font-weight: 400;
  color: var(--gray-700);
  padding: 4px 0;
  display:flex; gap: 8px;
}
.team-card-body ul li::before { content:"—"; color: var(--gray-400); }

.exits-section { background: var(--off-white); }
.exit-table-con { overflow-x: scroll; }
.exit-table { width:100%; border-collapse:collapse; font-size:14px; margin-top:40px; }
.exit-table th {
  text-align:left; padding:12px 18px;
  font-size:11px; font-weight:700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-400);
  border-bottom: 2px solid var(--gray-200);
}
.exit-table td { padding:16px 18px; border-bottom:1px solid var(--gray-100); font-weight: 400; }
.exit-table tr:last-child td { border-bottom:none; }
.exit-table .value-col { font-weight:600; color: var(--teal); }
.exit-year { font-size: 12px; color: var(--gray-400); }

.total-value-banner {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-radius: var(--radius-xl);
  padding: 44px 52px;
  margin-top: 48px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 40px; flex-wrap: wrap;
}
.total-value-banner h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.total-value-banner p { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.65); margin-top: 6px; }

/* ═════════ PIPELINE PAGE ═════════ */
.pipeline-hero {
  background: var(--navy-deep);
  padding: 140px 0 80px;
  position:relative; overflow:hidden;
}
.pipeline-hero::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 30%, rgba(44,165,160,0.08) 0%, transparent 60%);
  pointer-events:none;
}
.pipeline-hero .container { position:relative; z-index:1; }

.pipeline-detail {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-top: 32px;
}
@media (max-width:700px) { .pipeline-detail { padding: 28px; } }
.pipeline-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap: 48px; align-items: start; }
@media (max-width:700px) { .pipeline-detail-grid { grid-template-columns:1fr; } }
.pipeline-detail h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 6px;
}
.pipeline-detail .subtitle { font-size: 15px; color: var(--gray-600); margin-bottom: 16px; font-weight: 400; }
.pipeline-detail p { font-size: 15px; font-weight: 400; color: var(--gray-600); line-height: 1.7; }
.pipeline-badge {
  display:inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(44,165,160,0.08); color: var(--teal);
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 18px;
}
.benefit-list { list-style:none; display:flex; flex-direction:column; gap: 12px; }
.benefit-list li {
  display:flex; align-items:flex-start; gap:14px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.6;
}
.benefit-icon {
  width:20px; height:20px;
  background: none;
  display:flex; align-items:center; justify-content:center;
  color: var(--teal); font-size: 16px; font-weight: 700;
  flex-shrink:0; margin-top: 2px;
}

/* HMO Hero metrics block */
.hmo-metrics {
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 32px;
}
@media (max-width:700px) { .hmo-metrics { grid-template-columns:1fr; } }
.hmo-metric {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.hmo-metric-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hmo-metric-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ═════════ CONTACT PAGE ═════════ */
.contact-hero {
  background: var(--navy-deep);
  padding: 140px 0 36px;
  position:relative; overflow:hidden;
}
.contact-hero::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 40%, rgba(44,165,160,0.08) 0%, transparent 60%);
  pointer-events:none;
}
.contact-hero .container { position:relative; z-index:1; }

.contact-body { background: var(--white); padding-top: clamp(48px,5vw,72px); }
.contact-grid { display:grid; grid-template-columns: 1fr 380px; gap: 64px; }
@media (max-width:900px) { .contact-grid { grid-template-columns:1fr; } }
.form-field { margin-bottom: 20px; }
.form-field label {
  display:block;
  font-size: 13px; font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline:none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44,165,160,0.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ═══ "by Cataya" sub-brand tagline — small attribution, not a headline ═══ */
.by-cataya {
  font-size: 0.42em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.7;
  white-space: nowrap;
}
/* Hero treatment: stack under the brand mark, centered, subtle */
.hero-title .by-cataya {
  display: block;
  margin-top: 10px;
  font-size: 0.22em;
  font-weight: 300;
  opacity: 0.7;
  letter-spacing: 0.04em;
  text-align: center;
}
/* Section title treatment (home product callout, product hero) */
.section-title .by-cataya,
.section-title-light .by-cataya {
  font-size: 0.26em;
  font-weight: 300;
  opacity: 0.7;
  margin-left: 8px;
  vertical-align: 0.25em;
}

.combobox { position: relative; }
.combobox-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 1000;
  max-height: 260px;
  overflow-y: auto;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 29, 51, 0.12);
}
.combobox-list[hidden] { display: none; }
.combobox-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--gray-800);
  cursor: pointer;
  transition: background var(--transition);
}
.combobox-option:hover,
.combobox-option[aria-selected="true"] { background: rgba(44, 165, 160, 0.10); color: var(--navy); }
.combobox-flag {
  flex: 0 0 auto;
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 29, 51, 0.08);
}
.combobox-empty {
  padding: 14px;
  font-size: 13px;
  color: var(--gray-400, #8a93a3);
  text-align: center;
}

.contact-info {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.contact-info h3 { font-size: 17px; font-weight: 500; color: var(--navy); margin-bottom: 24px; }
.contact-person {
  display:flex; gap:16px; align-items:flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-person:last-of-type { border-bottom: none; }
.avatar-sm {
  width: 48px; height: 48px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 14px; font-weight: 500;
  color: var(--white); flex-shrink: 0;
}
.contact-person h4 { font-size: 14px; font-weight: 500; color: var(--navy); }
.contact-person .cp-role { font-size: 12px; color: var(--gray-400); }
.contact-person .cp-email { font-size: 12px; color: var(--teal); margin-top: 4px; }
.region-badges { display:flex; gap: 6px; margin-top: 8px; }
.region-badge {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em;
  background: rgba(44,165,160,0.08);
  color: var(--teal);
  padding: 3px 10px;
  border-radius: 100px;
}

.steps-box {
  margin-top: 32px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.steps-box h4 { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 20px; }
.step-item { display:flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.step-item:last-child { margin-bottom: 0; }
.step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal);
  display:flex; align-items:center; justify-content:center;
  font-size: 11px; font-weight: 600; color: white;
  flex-shrink: 0;
}
.step-item strong { font-size: 13px; font-weight: 500; color: var(--navy); }
.step-item span { font-size: 12px; font-weight: 400; color: var(--gray-600); }

/* ═════════ SEARCH PAGE ═════════ */
.search-hero { background: var(--navy-deep); padding: clamp(100px,12vw,160px) 0 clamp(48px,6vw,80px); }
.search-hero .section-label { color: var(--teal-light); }
.search-input-wrap {
  position: relative; max-width: 640px; margin-top: 32px;
}
.search-input-wrap svg {
  position:absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width:20px; height:20px;
  stroke: var(--gray-400); fill:none; stroke-width:2;
  stroke-linecap:round; pointer-events:none;
}
.search-input {
  width:100%; padding: 16px 48px 16px 52px;
  font-family: var(--font-body); font-size: 16px;
  color: var(--gray-800); background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  outline: none;
}
.search-input:focus { border-color: var(--teal); }
.search-input::placeholder { color: var(--gray-400); font-weight: 400; }
.search-clear-btn {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background:none; border:none; cursor:pointer;
  padding: 4px; color: var(--gray-400); display:none;
}
.search-clear-btn.visible { display: flex; align-items: center; }
.search-hint { margin-top: 12px; font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.4); }
.search-results-section { padding: clamp(40px,5vw,72px) 0 clamp(64px,8vw,120px); min-height: 320px; }
.search-results-meta { font-size: 13px; color: var(--gray-400); margin-bottom: 28px; font-weight: 400; }
.search-results-meta strong { color: var(--teal); font-weight: 500; }
.search-results-grid {
  display:grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.search-result-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  cursor: pointer;
  transition: all var(--transition);
  display:flex; flex-direction:column; gap:8px;
}
.search-result-card:hover {
  border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.search-result-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal);
  display:flex; align-items:center; gap: 8px;
}
.search-result-tag::before { content:""; width:16px; height:1.5px; background: var(--teal); }
.search-result-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.3;
}
.search-result-desc { font-size: 14px; font-weight: 400; color: var(--gray-600); line-height: 1.65; }
.search-result-arrow { margin-top: 8px; font-size: 13px; font-weight: 500; color: var(--teal); }
.search-empty { text-align:center; padding: 64px 0; color: var(--gray-400); }
.search-empty-icon {
  width:48px; height:48px; stroke: var(--gray-200);
  margin: 0 auto 20px; display:block; fill:none; stroke-width:1.5;
}
.search-empty h3 { font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--gray-600); margin-bottom: 8px; }
.search-pagination { display:flex; align-items:center; justify-content:center; gap: 12px; margin-top: 36px; }
.page-btn {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  color: var(--navy); cursor: pointer;
}
.page-btn:hover:not(:disabled) { border-color: var(--teal); color: var(--teal); }
.page-btn:disabled { opacity: 0.35; cursor: default; }
.page-info { font-size: 13px; color: var(--gray-400); font-weight: 400; }

/* ── Process Flow Diagram ── */
.process-flow {
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-deep);
  border-radius: var(--radius-xl);
  padding: clamp(32px,4vw,52px) clamp(20px,4vw,44px);
  margin: 48px 0;
  position: relative; overflow: hidden;
  gap: 0;
}
.process-flow::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 50%, rgba(44,165,160,0.07) 0%, transparent 70%);
  pointer-events:none;
}
.pf-node {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; flex: 1; min-width: 0; position: relative; z-index:1;
}
.pf-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(44,165,160,0.14);
  border: 1.5px solid rgba(44,165,160,0.5);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; color: var(--cyan-glow);
  transition: all var(--transition);
}
.pf-icon svg { width: 34px; height: 34px; }
.pf-node-final .pf-icon {
  width: 84px; height: 84px;
  background: rgba(44,165,160,0.18);
  border-color: var(--teal);
  box-shadow: 0 0 28px rgba(44,165,160,0.22);
}
.pf-node-final .pf-icon svg { width: 42px; height: 42px; }
.pf-node:hover .pf-icon { background: rgba(44,165,160,0.18); border-color: var(--teal); }
.pf-name {
  font-size: 13px; font-weight: 600; color: var(--white);
  margin-bottom: 4px; line-height: 1.3;
}
.pf-node-final .pf-name { font-size: 15px; color: var(--teal-light); font-weight: 600; }
.pf-sub {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.pf-node-final .pf-sub { color: rgba(44,165,160,0.9); }
.pf-arrow {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center;
  gap: 3px; padding: 0 clamp(6px,1.6vw,18px);
  position: relative; z-index:1; margin-bottom: 28px;
}
.pf-arrow-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal-light); white-space: nowrap;
}
.pf-arrow-line { display: flex; align-items: center; color: rgba(44,165,160,0.7); }
@media (max-width: 680px) {
  .process-flow { flex-direction: column; padding: 32px 24px; }
  .pf-arrow { transform: rotate(90deg); margin: 2px 0; padding: 6px 0; margin-bottom: 0; }
  .pf-arrow-tag { display: none; }
  .pf-node { flex-direction: row; text-align: left; gap: 16px; width: 100%; max-width: 280px; }
  .pf-icon { margin-bottom: 0; flex-shrink: 0; }
  .pf-node-final .pf-icon { width: 70px; height: 70px; }
  .pf-node-final .pf-name { font-size: 13px; }
}

/* ── Footer ── */
footer {
  background: var(--navy-deep);
  padding: 72px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
  align-items: start;
}
@media (max-width:700px) {
  .footer-top { grid-template-columns:1fr; gap:32px; }
  .nav-logo {
    display: flex;
    justify-content: center;
  }
}
.footer-brand {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 280px;
}
.footer-links h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-links ul { list-style:none; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li button {
  background:none; border:none; cursor:pointer;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  margin: 0 auto;
}
.footer-links ul li button:hover { color: var(--teal-light); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display:flex; justify-content:center;
  flex-wrap:wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.3); }

/* ═══ APPLICATIONS SECTION (HOME) ═══ */
.apps-section {
  background: var(--navy-deep);
  padding: 100px 0;
}
.apps-section .section-label span { color: var(--teal-light); }
.apps-section .section-title-light { margin-bottom: 56px; }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .apps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .apps-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }
.app-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-deep) !important;
  border: none !important;
  outline: none !important;
  aspect-ratio: 3/4;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.app-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
.app-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.app-card:hover img { transform: scale(1.05); }
.app-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(6,16,32,0.88) 100%);
}
.app-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 22px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.app-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 5px;
}

/* ═══ PIPELINE VISUAL HEADER ═══ */
.pipeline-visual-header {
  position: relative;
  height: 260px;
  margin: -48px -48px 40px;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
@media (max-width: 700px) { .pipeline-visual-header { margin: -28px -28px 28px; height: 200px; } }
.pipeline-visual-header img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.pipeline-visual-header::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,22,40,0.15) 0%,
    rgba(10,22,40,0.3) 50%,
    rgba(10,22,40,0.75) 100%);
}
.pvh-badge {
  position: absolute;
  bottom: 20px; left: 48px;
  z-index: 2;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(10,22,40,0.6);
  border: 1px solid rgba(44,165,160,0.4);
  border-radius: 20px;
  padding: 6px 14px;
  backdrop-filter: blur(6px);
}
@media (max-width: 700px) { .pvh-badge { left: 28px; } }

/* ═══ PRODUCT — serum split ═══ */
.product-serum-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 64px;
  min-height: 420px;
}
@media (max-width: 800px) { .product-serum-split { grid-template-columns: 1fr; } }
.pss-text {
  background: var(--navy-deep);
  padding: 56px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.pss-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.pss-text h3 em { color: var(--teal-light); font-style: italic; }
.pss-text p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }
.pss-image {
  position: relative;
  overflow: hidden;
}
.pss-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 320px;
}


/* ═══ PRODUCT APPLICATIONS — photo cards ═══ */
.prod-app-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: none !important;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-mid));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prod-app-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.15); }
.prod-app-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.prod-app-card:hover img { transform: scale(1.04); }
.prod-app-card .pac-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(6,16,32,0.65) 55%, rgba(6,16,32,0.92) 100%);
}
.prod-app-card .pac-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 22px;
}
.prod-app-card .pac-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 6px;
}
.prod-app-card .pac-name {
  font-size: 17px; font-weight: 600; color: var(--white);
  margin-bottom: 4px; line-height: 1.2;
}
.prod-app-card .pac-dose {
  font-size: 13px; color: rgba(255,255,255,0.72); font-weight: 400;
}
/* placeholder card (no photo yet) */
.prod-app-card.placeholder {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px;
  text-align: center;
}
.prod-app-card.placeholder .app-icon { font-size: 28px; margin-bottom: 10px; }
.prod-app-card.placeholder .pac-name { color: var(--navy); font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.prod-app-card.placeholder .pac-dose { color: var(--gray-600); font-size: 12px; }

/* ═══════════════════════════════════════════
   MOBILE-FIRST: Centering, Spacing & UX
   ═══════════════════════════════════════════ */

html { scroll-padding-top: 80px; }

@media (max-width: 768px) {
  /* Section content centering */
  .section-label,
  .section-title,
  .section-title-light,
  .section-subtitle,
  .section-subtitle-light { text-align: center; }

  .section-label { justify-content: center; }
  .section-label::before { display: none; }

  .section-subtitle,
  .section-subtitle-light { margin-left: auto; margin-right: auto; }

  /* Hero centering */
  .hero-inner { text-align: center; margin: 0 auto; }
  .hero-eyebrow { justify-content: center; }
  .hero-body { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-items: center; }
  .hero-stat { text-align: center; }

  /* Proof section centering */
  .proof-section { text-align: center; }
  .proof-grid > div { text-align: center; }
  .proof-number { text-align: center; }
  .proof-caption { text-align: center; margin-left: auto; margin-right: auto; }

  /* Button centering in all sections */
  .btn {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  /* Reduce section padding */
  .section { padding: clamp(48px, 6vw, 80px) 0; }

  /* Card centering */
  .value-card,
  .make-card,
  .gen-card { text-align: center; }

  .value-card h3,
  .make-card h3,
  .gen-card h3 { text-align: center; }

  /* Pipeline cards centering */
  .pipeline-mini-card { text-align: center; }
  .pm-sub { text-align: center; }

  /* Make section centering */
  .make-mini-item { justify-content: center; text-align: center; }
  .make-mini-text { text-align: center; }

  /* CTA banner */
  .cta-banner { padding: 48px 24px; }

  /* Footer centering */
  .footer-top { text-align: center; }
  .footer-brand { margin-left: auto; margin-right: auto; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  /* Full-width buttons on small phones */
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }

  /* Tighter container padding */
  .container { padding: 0 16px; }

  /* Smaller hero title */
  .hero-title { font-size: clamp(32px, 8vw, 40px); }
  .hero-body { font-size: 16px; }

  /* Stats 2-col with centering */
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .hero-stat-num { font-size: clamp(26px, 6vw, 32px); }
}

/* Touch target minimum */
@media (max-width: 1000px) {
  button, a, [onclick] {
    min-height: 44px;
    min-width: 44px;
  }
  .footer-links ul li button {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* ═══ FAQ Section ═══ */
.faq-list {
  max-width: 100%;
}
.faq-list details {
  border-bottom: 1px solid var(--gray-100);
  padding: 0;
}
.faq-list summary {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
  transition: color var(--transition);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.faq-list details[open] summary {
  color: var(--teal);
}
.faq-list details p {
  padding: 0 0 22px;
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 15px;
}

/* ═══ CTA Trust Line ═══ */
.cta-trust {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

/* ═══ Sticky Mobile CTA ═══ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(15,29,51,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  justify-content: center;
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta .btn {
  width: 100%;
  max-width: 400px;
  justify-content: center;
  padding: 14px 24px;
  font-size: 15px;
}
@media (min-width: 769px) {
  .sticky-cta { display: none; }
}
@media (max-width: 768px) {
  body { padding-bottom: 0; }
  body.has-sticky-cta { padding-bottom: 64px; }
}

