/* =========================================================
   UP Cocreate — Corporate Stylesheet v2
   Teal #1B8C83 · Purple #6B3A94 · Dark #0A0F1E
   ========================================================= */

:root {
  /* Primary */
  --teal:         #00A896;
  --teal-dark:    #007E72;
  --teal-light:   #DFF4F2;
  --teal-mid:     #1B9E94;

  /* Secondary */
  --purple:       #5C2D8F;
  --purple-dark:  #421E6A;
  --purple-light: #EDE5F8;
  --purple-mid:   #7B4FB8;

  /* Warm accent — gold */
  --gold:         #F0A500;
  --gold-dark:    #C88800;
  --gold-light:   #FEF3DC;

  /* Dark backgrounds — rich navy scale */
  --dark:         #091524;
  --dark2:        #112035;
  --dark3:        #1A3050;
  --dark4:        #243A62;

  /* Neutrals */
  --text:         #2D3748;
  --muted:        #64748B;
  --border:       #E2E8F0;
  --surface:      #F8FAFC;
  --surface2:     #F0F4F8;
  --white:        #FFFFFF;

  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w:     1180px;
  --radius:    6px;
  --radius-lg: 14px;
  --ease:      0.2s ease;
}

/* — Reset — */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* — Container — */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* — Typography — */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 4.5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; }
h1 em, h2 em { font-style: normal; color: var(--teal); }
p { max-width: 60ch; color: var(--muted); }
.lead { font-size: 1.05rem; color: var(--text); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.625rem;
  display: block;
}
.eyebrow-light { color: rgba(255,255,255,0.55); }

/* — Buttons — */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn-teal  { background: var(--teal); color: var(--white); }
.btn-teal:hover  { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,140,131,.28); }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-dark  { background: var(--dark); color: var(--white); }
.btn-dark:hover  { background: var(--dark2); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--dark); font-weight: 700; }
.btn-white:hover { background: var(--teal-light); }
.btn-sm    { padding: 0.55rem 1.1rem; font-size: 0.8rem; }

/* — Section layout — */
.section { padding: 5.5rem 0; }
.section-intro { margin-bottom: 3.25rem; }
.section-intro h2 { margin-top: 0.375rem; }
.section-intro.center { text-align: center; }
.section-intro.center h2,
.section-intro.center p { margin: 0 auto; }

/* =========================================================
   LANGUAGE TOGGLE
   ========================================================= */
[data-lang="es"] { display: none; }
body.es [data-lang="en"] { display: none; }
body.es [data-lang="es"] { display: block; }

/* Inline elements */
span[data-lang="en"],
body.es span[data-lang="es"] { display: inline; }
body.es span[data-lang="en"] { display: none; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled { border-color: var(--border); box-shadow: 0 1px 18px rgba(0,0,0,.06); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

/* Logo */
.logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}
.logo-up     { color: var(--teal); }
.logo-co     { color: var(--purple); }
.logo-create { color: var(--dark); font-weight: 600; }

/* Nav list */
.nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--teal); background: var(--teal-light); }
.nav-chevron { width: 10px; height: 10px; transition: transform var(--ease); }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--ease);
  z-index: 50;
  overflow: hidden;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--ease);
}
.dropdown a:hover { background: var(--surface); color: var(--teal); }
.dropdown-icon {
  width: 28px;
  height: 28px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }

/* Language toggle */
.lang-toggle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: all var(--ease);
  cursor: pointer;
}
.lang-toggle:hover { border-color: var(--teal); color: var(--teal); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 1px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--white);
  padding: 1.25rem 2rem 2rem;
  overflow-y: auto;
  z-index: 190;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu li a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.mobile-menu li a:hover { color: var(--teal); }
.mobile-submenu a { padding-left: 1rem; font-size: 0.9rem; color: var(--muted); }
.mobile-lang-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; }

/* =========================================================
   HERO (index.html)
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(140deg, var(--teal-light) 0%, var(--purple-light) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 44%; }
.hero-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 3px;
  border-left: 3px solid var(--teal);
  margin-bottom: 1rem;
}
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  min-width: 260px;
}
.hero-card-stat { margin-bottom: 1.5rem; }
.hero-card-stat:last-of-type { margin-bottom: 0; }
.hero-card-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.hero-card-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; max-width: none; }
.hero-card-divider { height: 1px; background: var(--border); margin: 1rem 0; }

/* =========================================================
   SERVICES GRID (index.html)
   ========================================================= */
.services { background: var(--surface); }
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.service-card {
  flex: 0 0 calc(33.333% - 0.84rem);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  color: inherit;
  text-decoration: none;
}
.service-card:hover { border-color: var(--teal); box-shadow: 0 8px 28px rgba(27,140,131,.12); transform: translateY(-3px); }
.service-icon { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-teal   { background: var(--teal-light); color: var(--teal); }
.icon-purple { background: var(--purple-light); color: var(--purple); }
.service-card h3 { font-size: 1.05rem; color: var(--dark); margin: 0; }
.service-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; max-width: none; margin: 0; }
.card-link {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--ease);
}
.card-link::after { content: '→'; }
.service-card:hover .card-link { gap: 0.5rem; }

/* =========================================================
   ABOUT (index.html)
   ========================================================= */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-content { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.about-content h2 { margin: 0.25rem 0; }
.about-content .lead { color: var(--text); }
.about-content p { color: var(--muted); }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.25rem; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { display: block; font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* =========================================================
   PROCESS — dark
   ========================================================= */
.process { background: var(--dark3); padding: 5.5rem 0; }
.process .eyebrow { color: rgba(27,140,131,1); }
.process .section-intro h2 { color: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: rgba(255,255,255,.08);
}
.process-step { position: relative; }
.step-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.process-step h3 { color: var(--white); margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.9rem; color: rgba(255,255,255,.55); line-height: 1.65; max-width: none; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--surface); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonial-quote { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--teal-light); line-height: 1; }
.testimonial p { font-size: 0.95rem; color: var(--text); font-style: italic; line-height: 1.7; max-width: none; }
.testimonial-author strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--dark); font-style: normal; }
.testimonial-author span   { font-size: 0.8rem; color: var(--muted); font-style: normal; }

/* =========================================================
   CONTACT / GHL FORM
   ========================================================= */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 90px; }
.contact-info h2 { margin: 0.25rem 0; }
.contact-info p { color: var(--muted); }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--text); margin-top: 0.5rem; }
.contact-detail svg { color: var(--teal); flex-shrink: 0; }
.contact-form-wrap {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  min-height: 520px;
}
.contact-form-wrap iframe { width: 100%; border: none; min-height: 520px; display: block; }

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip { background: var(--teal); padding: 4.5rem 0; text-align: center; }
.cta-strip .container { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.cta-strip h2 { color: var(--white); }
.cta-strip p  { color: rgba(255,255,255,.8); max-width: 44ch; font-size: 1.05rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark); padding: 4rem 0 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2rem;
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,.45); max-width: 28ch; margin-top: 0.875rem; }
.footer-logo .logo-up     { color: var(--teal); }
.footer-logo .logo-co     { color: rgba(255,255,255,.45); }
.footer-logo .logo-create { color: rgba(255,255,255,.3); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a  { font-size: 0.875rem; color: rgba(255,255,255,.5); transition: color var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,.28);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { max-width: none; }

/* =========================================================
   PAGE HERO (service & about pages)
   ========================================================= */
.page-hero { background: var(--dark2); padding: 5rem 0; }
.page-hero .eyebrow { color: var(--teal); }
.page-hero h1 { color: var(--white); margin: 0.5rem 0 1rem; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 52ch; line-height: 1.75; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.75rem;
  transition: color var(--ease);
}
.back-link:hover { color: var(--white); }

/* =========================================================
   SERVICE CHECKLIST
   ========================================================= */
.service-checklist { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.service-checklist li {
  font-size: 0.875rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.service-checklist li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* =========================================================
   FEATURES GRID (service pages)
   ========================================================= */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.875rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.feature-card:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(27,140,131,.1); }
.feature-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--dark); }
.feature-card p  { font-size: 0.875rem; color: var(--muted); max-width: none; line-height: 1.65; }

/* =========================================================
   WHY GRID (service pages)
   ========================================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card {
  padding: 1.75rem;
  border-left: 3px solid var(--teal);
  background: var(--white);
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 0.625rem; color: var(--dark); }
.why-card p  { font-size: 0.9rem; color: var(--muted); max-width: none; line-height: 1.65; }

/* =========================================================
   FOUNDERS / ABOUT PAGE
   ========================================================= */
.founders-section { background: var(--white); }
.founders-grid { display: flex; flex-direction: column; gap: 0; }
.founder-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.founder-card:last-child { border-bottom: none; }
.founder-photo {
  width: 300px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.founder-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.founder-body { padding: 0; }
.founder-body h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.founder-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  display: block;
}
.founder-bio { font-size: 0.9rem; color: var(--muted); line-height: 1.75; max-width: none; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text);
  white-space: nowrap;
}

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
}
.value-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.value-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.value-card p  { font-size: 0.9rem; margin: 0 auto; max-width: 28ch; }

/* Gold button */
.btn-gold { background: var(--gold); color: var(--dark); font-weight: 700; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240,165,0,.3); }

/* Dark hero */
.hero {
  background-color: var(--dark);
  background-image: url('assets/images/hero-viewer.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(10,15,25,.88) 0%, rgba(10,15,25,.55) 45%, rgba(10,15,25,.1) 75%, transparent 100%);
  z-index: 1;
}
.hero::after { display: none; }
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 100%;
  margin: 0;
  padding-left: 4vw;
  padding-right: 6vw;
}
.hero-content h1 { color: var(--white); }
.hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,.7); }
.hero .btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.hero-sub { color: var(--white); }
.hero-badge {
  background: rgba(0,168,150,.14);
  color: var(--teal);
  border-left-color: var(--teal);
}
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.hero-card-num { color: var(--teal); }
.hero-card-label { color: rgba(255,255,255,.5); }
.hero-card-divider { background: rgba(255,255,255,.08); }

/* Sherpa section */
.sherpa-section {
  background: var(--dark2);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sherpa-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,168,150,.08) 0%, transparent 65%);
}
.sherpa-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.sherpa-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240,165,0,.12);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  border: 1px solid rgba(240,165,0,.2);
}
.sherpa-quote {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  max-width: 700px;
  line-height: 1.25;
}
.sherpa-quote em { color: var(--teal); font-style: normal; }
.sherpa-body { color: rgba(255,255,255,.58); font-size: 1.05rem; max-width: 52ch; line-height: 1.75; }
.sherpa-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  margin-top: 1.5rem;
}
.sherpa-trio-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: left;
}
.sherpa-trio-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.sherpa-trio-card p  { color: rgba(255,255,255,.5); font-size: 0.875rem; max-width: none; line-height: 1.65; }
.sherpa-icon {
  width: 40px; height: 40px;
  background: rgba(0,168,150,.15);
  color: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

/* Gold stat accent */
.stat-num.gold { color: var(--gold); }

/* Process section — update bg */
.process { background: var(--dark3); }

/* Section color band */
.band-gold { background: var(--gold); }
.band-teal { background: var(--teal); }
.band-dark { background: var(--dark); }

/* About — left border accent */
.about-content .eyebrow { border-left: 3px solid var(--gold); padding-left: 0.75rem; color: var(--gold); }

/* Illustration container */
.illustration { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

/* Responsive additions */
@media (max-width: 768px) {
  .sherpa-trio { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0; }
}

/* =========================================================
   SCROLL FADE-IN
   ========================================================= */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-visual   { display: none; }
  .hero::after   { display: none; }
  .service-card  { flex: 0 0 calc(50% - 0.625rem); }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
  .about-grid    { gap: 3.5rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info  { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .process { padding: 3.5rem 0; }

  /* Nav */
  .nav, .nav-right .btn-teal { display: none; }
  .lang-toggle.desktop { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 3rem 0; }
  .hero-sub { max-width: 100%; }
  .hero-inner { justify-content: flex-start; padding-left: 2rem; padding-right: 2rem; }
  .hero-content { max-width: 100%; }

  /* Services */
  .service-card { flex: 0 0 100%; }

  /* About */
  .about-grid  { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }

  /* Founders */
  .founder-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .founder-photo { width: 100%; aspect-ratio: 4 / 3; }
  .values-grid   { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas  { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr; }
  .btn        { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; }
}
