/* ============================================
   HEALTHY DYNAMICS — Global Stylesheet
   ============================================ */

/* --- Design Tokens --- */
:root {
  --navy:         #0A1628;
  --navy-light:   #0F1E35;
  --navy-mid:     #162236;
  --teal:         #00C896;
  --teal-dark:    #009E78;
  --teal-light:   #00E8B0;
  --purple:       #6C63FF;
  --white:        #FFFFFF;
  --bg:           #F8FAFC;
  --bg-dark:      #F1F5F9;
  --text:         #1E293B;
  --text-light:   #64748B;
  --text-muted:   #94A3B8;
  --border:       #E2E8F0;
  --shadow:       0 4px 24px rgba(10, 22, 40, 0.10);
  --shadow-lg:    0 16px 56px rgba(10, 22, 40, 0.16);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: var(--text-light); line-height: 1.8; }

/* --- Layout Utilities --- */
.container   { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 100px 0; }
.section--dark    { background: var(--navy); color: var(--white); }
.section--dark p  { color: rgba(255, 255, 255, 0.7); }
.section--accent  { background: var(--navy-light); }
.section--white   { background: var(--white); }
.label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.label--white { color: rgba(255,255,255,0.5); }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary  { background: var(--teal); color: var(--navy); }
.btn--primary:hover  { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0, 200, 150, 0.35); }
.btn--outline  { border: 2px solid var(--teal); color: var(--teal); }
.btn--outline:hover  { background: var(--teal); color: var(--navy); transform: translateY(-2px); }
.btn--white    { background: var(--white); color: var(--navy); }
.btn--white:hover    { background: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255, 255, 255, 0.22); }
.btn--dark     { background: var(--navy); color: var(--white); }
.btn--dark:hover     { background: var(--navy-mid); transform: translateY(-2px); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.25);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.1rem; color: var(--white);
}
.nav__logo-mark {
  width: 36px; height: 36px; background: var(--teal);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; font-weight: 900; color: var(--navy);
  flex-shrink: 0;
}

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  color: rgba(255, 255, 255, 0.75); font-weight: 600; font-size: 0.9rem;
  transition: var(--transition); position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--teal);
  transition: var(--transition); border-radius: 2px;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta { margin-left: 12px; padding: 10px 22px; font-size: 0.875rem; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
  cursor: pointer; background: none; border: none;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: var(--white); font-size: 1.6rem; font-weight: 700;
  transition: var(--transition);
}
.nav__mobile a:hover { color: var(--teal); }
.nav__mobile-close {
  position: absolute; top: 28px; right: 28px;
  color: rgba(255,255,255,0.7); font-size: 2rem;
  cursor: pointer; line-height: 1;
  transition: var(--transition);
}
.nav__mobile-close:hover { color: var(--teal); }

/* ============================================
   HOME — HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=1600&q=80');
  background-size: cover; background-position: center top;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.90) 0%, rgba(10,22,40,0.68) 55%, rgba(108,99,255,0.28) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 130px 0 90px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0, 200, 150, 0.12); border: 1px solid rgba(0, 200, 150, 0.28);
  border-radius: 50px; padding: 8px 18px; margin-bottom: 28px;
}
.hero__badge-dot {
  width: 8px; height: 8px; background: var(--teal);
  border-radius: 50%; animation: pulse 2.2s infinite;
}
.hero__badge span {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
}

.hero h1 { color: var(--white); max-width: 740px; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--teal); }

.hero__sub {
  font-size: 1.15rem; color: rgba(255, 255, 255, 0.72);
  max-width: 520px; margin-bottom: 48px; line-height: 1.78;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero__scroll {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.45); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollLine 2.4s infinite;
}

/* ============================================
   HOME — PILLARS
   ============================================ */
.pillars { background: var(--white); }
.pillars__header { text-align: center; max-width: 580px; margin: 0 auto 64px; }
.pillars__header h2 { margin-bottom: 16px; }

.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.pillar-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: var(--transition);
}
.pillar-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.pillar-card__icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 24px;
}
.pillar-card__icon--teal   { background: rgba(0, 200, 150, 0.12); }
.pillar-card__icon--purple { background: rgba(108, 99, 255, 0.12); }
.pillar-card__icon--navy   { background: rgba(10, 22, 40, 0.07); }
.pillar-card h3 { color: var(--text); margin-bottom: 12px; }
.pillar-card p  { font-size: 0.95rem; }

/* ============================================
   HOME — STATS
   ============================================ */
.stats { background: var(--navy); padding: 80px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.stat { text-align: center; }
.stat__number {
  font-size: clamp(2.6rem, 4.5vw, 3.4rem); font-weight: 800;
  color: var(--teal); line-height: 1; margin-bottom: 10px;
}
.stat__label { font-size: 0.95rem; color: rgba(255, 255, 255, 0.6); font-weight: 500; }

/* ============================================
   HOME — MISSION
   ============================================ */
.mission { background: var(--bg); }
.mission__inner { max-width: 840px; margin: 0 auto; text-align: center; }
.mission__quote {
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 700; color: var(--text); line-height: 1.5; margin-bottom: 28px;
}
.mission__quote em { font-style: normal; color: var(--teal); }
.mission__attr {
  font-size: 0.875rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ============================================
   HOME — PHOTO MOSAIC
   ============================================ */
.mosaic { background: var(--white); padding: 0 0 100px; }
.mosaic__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 420px;
  gap: 14px;
  border-radius: var(--radius-lg); overflow: hidden;
}
.mosaic__item { overflow: hidden; position: relative; }
.mosaic__item img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.mosaic__item:hover img { transform: scale(1.06); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative; padding: 168px 0 88px; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.72) 100%);
}
.page-hero__content { position: relative; z-index: 2; }

.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  margin-bottom: 18px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
}
.page-hero__breadcrumb a { color: var(--teal); transition: var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--teal-light); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.28); }

.page-hero h1 { color: var(--white); max-width: 640px; margin-bottom: 20px; }
.page-hero p  { color: rgba(255,255,255,0.72); max-width: 500px; font-size: 1.1rem; }

/* ============================================
   ABOUT — STORY
   ============================================ */
.story { background: var(--white); }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.story__image {
  border-radius: var(--radius-lg); overflow: hidden;
  height: 520px; position: relative;
}
.story__image img { width: 100%; height: 100%; object-fit: cover; }
.story__image-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 200, 150, 0.28);
  border-radius: var(--radius); padding: 18px 24px;
}
.story__image-badge strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--teal); }
.story__image-badge span  { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 500; }

.story__text h2 { color: var(--text); margin-bottom: 20px; }
.story__text p  { margin-bottom: 20px; }

/* ============================================
   ABOUT — VALUES
   ============================================ */
.values { background: var(--navy); }
.values__header { text-align: center; max-width: 560px; margin: 0 auto 60px; }
.values__header h2 { color: var(--white); margin-bottom: 14px; }

.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.value-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 36px 28px; transition: var(--transition);
}
.value-card:hover {
  background: rgba(0, 200, 150, 0.07); border-color: rgba(0, 200, 150, 0.24);
  transform: translateY(-6px);
}
.value-card__num {
  font-size: 0.72rem; font-weight: 700; color: var(--teal);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px;
}
.value-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.15rem; }
.value-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.58); }

/* ============================================
   ABOUT — VISION / MISSION PAIR
   ============================================ */
.vm-pair { background: var(--bg); }
.vm-pair__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; border-radius: var(--radius-lg); overflow: hidden;
}
.vm-card { padding: 72px 56px; }
.vm-card--vision  { background: var(--navy-light); }
.vm-card--mission { background: var(--navy); }
.vm-card__label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 18px;
}
.vm-card h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--white); line-height: 1.35; }

/* ============================================
   ABOUT — TEAM PHILOSOPHY QUOTE
   ============================================ */
.team-quote { background: var(--white); }
.team-quote__inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center;
}
.team-quote__image {
  border-radius: var(--radius-lg); overflow: hidden; height: 400px;
}
.team-quote__image img { width: 100%; height: 100%; object-fit: cover; }
.team-quote__text blockquote {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem); font-weight: 700;
  color: var(--text); line-height: 1.5; margin-bottom: 24px;
  border-left: 4px solid var(--teal); padding-left: 24px;
}
.team-quote__attribution strong { display: block; font-size: 0.9rem; color: var(--text); font-weight: 700; }
.team-quote__attribution span   { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================
   APPROACH — PROCESS STEPS
   ============================================ */
.process { background: var(--white); }
.process__header { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.process__header h2 { margin-bottom: 16px; }

.process__steps { display: grid; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 88px 1fr; gap: 36px;
  padding: 44px 0; border-bottom: 1px solid var(--border); align-items: start;
  transition: var(--transition);
}
.process-step:last-child { border-bottom: none; }
.process-step:hover .process-step__num { background: var(--teal); color: var(--navy); }

.process-step__num {
  width: 68px; height: 68px; background: var(--navy); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: var(--teal);
  flex-shrink: 0; transition: var(--transition);
}
.process-step__body h3 { color: var(--text); margin-bottom: 10px; }
.process-step__body p  { max-width: 560px; }

/* ============================================
   APPROACH — INTERSECTION
   ============================================ */
.intersection { background: var(--navy); padding: 100px 0; }
.intersection__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.intersection__diagram { display: flex; align-items: center; justify-content: center; }
.venn-svg { width: 100%; max-width: 460px; height: auto; }

.intersection__text h2 { color: var(--white); margin-bottom: 20px; }
.intersection__text p  { margin-bottom: 16px; }

/* ============================================
   APPROACH — PHOTO BREAK
   ============================================ */
.photo-break { position: relative; height: 500px; overflow: hidden; }
.photo-break__img { width: 100%; height: 100%; object-fit: cover; }
.photo-break__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.78) 0%, rgba(0,200,150,0.22) 100%);
  display: flex; align-items: center;
}
.photo-break__text {
  font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800;
  color: var(--white); max-width: 680px; line-height: 1.3;
}
.photo-break__text em { font-style: normal; color: var(--teal); }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }

.contact__info h2 { color: var(--text); margin-bottom: 18px; }
.contact__info > p { margin-bottom: 44px; }
.contact__cards { display: grid; gap: 16px; }

.contact-info-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--teal); background: rgba(0, 200, 150, 0.04); }
.contact-info-card__icon {
  width: 46px; height: 46px; background: rgba(0, 200, 150, 0.1);
  border-radius: 13px; display: flex; align-items: center;
  justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.contact-info-card__body strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.contact-info-card__body span   { font-size: 0.85rem; color: var(--text-light); }

.contact__form-wrap {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 52px 44px;
}
.contact__form-wrap h3 { margin-bottom: 8px; color: var(--text); }
.contact__form-wrap > p { margin-bottom: 36px; font-size: 0.95rem; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: var(--white); font-size: 0.95rem; color: var(--text);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* Required-field error highlight */
.form-group--error input,
.form-group--error textarea,
.form-group--error select { border-color: #e53e3e; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy); padding: 72px 0 36px; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer__brand .nav__logo { margin-bottom: 18px; }
.footer__brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; max-width: 260px; margin-top: 0; }

.footer__col h4 {
  color: var(--white); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 22px;
}
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { color: rgba(255,255,255,0.52); font-size: 0.9rem; transition: var(--transition); }
.footer__col a:hover { color: var(--teal); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer__copy   { color: rgba(255,255,255,0.38); font-size: 0.85rem; }
.footer__links  { display: flex; gap: 24px; }
.footer__links a { color: rgba(255,255,255,0.38); font-size: 0.85rem; transition: var(--transition); }
.footer__links a:hover { color: var(--teal); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.82); }
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pillars__grid  { grid-template-columns: 1fr 1fr; }
  .values__grid   { grid-template-columns: 1fr 1fr; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .story__grid    { gap: 48px; }
  .contact__grid  { grid-template-columns: 1fr; }
  .team-quote__inner { grid-template-columns: 1fr; }
  .team-quote__image { max-height: 340px; }
}

@media (max-width: 900px) {
  .nav__links      { display: none; }
  .nav__cta        { display: none; }
  .nav__hamburger  { display: flex; }
}

@media (max-width: 767px) {
  .section { padding: 72px 0; }

  .hero h1 { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__bg { background-position: 75% top; }
  .hero__scroll { display: none; }

  .page-hero { padding: 120px 0 56px; }

  .pillars__grid  { grid-template-columns: 1fr; }
  .stats__grid    { grid-template-columns: 1fr; gap: 32px; }
  .mosaic__grid   { grid-template-columns: 1fr; grid-template-rows: repeat(3, 260px); }
  .story__grid    { grid-template-columns: 1fr; gap: 36px; }
  .story__image   { height: 360px; }
  .vm-pair__grid  { grid-template-columns: 1fr; }
  .vm-card        { padding: 44px 32px; }
  .values__grid   { grid-template-columns: 1fr 1fr; }
  .intersection__grid { grid-template-columns: 1fr; gap: 40px; }
  .team-quote__inner { gap: 36px; }
  .process-step   { grid-template-columns: 60px 1fr; gap: 20px; }
  .process-step__num { width: 52px; height: 52px; font-size: 1.2rem; border-radius: 14px; }
  .contact__grid  { gap: 40px; }
  .contact__form-wrap { padding: 36px 24px; }
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-row       { grid-template-columns: 1fr; }
  .photo-break    { height: 360px; }
}

@media (max-width: 480px) {
  .values__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
  .serve__grid { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .newsletter__form { flex-direction: column; }
}

/* ============================================
   WHO WE SERVE
   ============================================ */
.serve { background: var(--bg-dark); }
.serve__header { text-align: center; max-width: 580px; margin: 0 auto 60px; }
.serve__header h2 { margin-bottom: 16px; }
.serve__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.serve-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.serve-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.serve-card:hover::before { transform: scaleX(1); }
.serve-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.serve-card__icon {
  width: 58px; height: 58px; background: var(--navy); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 24px;
}
.serve-card h3 { color: var(--text); margin-bottom: 12px; }
.serve-card p  { font-size: 0.95rem; margin-bottom: 0; }

/* ============================================
   AREAS OF IMPACT (photo grid)
   ============================================ */
.areas { background: var(--white); }
.areas__header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.areas__header h2 { margin-bottom: 16px; }
.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 14px;
}
.area-card { position: relative; overflow: hidden; border-radius: var(--radius); cursor: default; }
.area-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.area-card:hover img { transform: scale(1.07); }
.area-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.15) 55%, transparent 100%);
  display: flex; align-items: flex-end; padding: 22px 24px;
  transition: var(--transition);
}
.area-card:hover .area-card__overlay { background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(0,200,150,0.12) 55%, transparent 100%); }
.area-card__label {
  color: var(--white); font-weight: 700; font-size: 1rem; line-height: 1.3;
}
.area-card__sub { font-size: 0.78rem; color: var(--teal); font-weight: 600; display: block; margin-top: 3px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--bg); }
.testimonials__header { text-align: center; max-width: 560px; margin: 0 auto 60px; }
.testimonials__header h2 { margin-bottom: 16px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: var(--transition); display: flex; flex-direction: column;
}
.testimonial-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial-card__stars { color: var(--teal); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-card__quote {
  font-size: 0.975rem; color: var(--text); font-weight: 500;
  line-height: 1.75; margin-bottom: 28px; flex: 1;
}
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.875rem; color: var(--teal); flex-shrink: 0;
}
.testimonial-card__name { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.testimonial-card__role { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================
   ABOUT — TIMELINE
   ============================================ */
.timeline-section { background: var(--white); }
.timeline-section__header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.timeline-section__header h2 { margin-bottom: 16px; }
.timeline { position: relative; max-width: 760px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 27px; top: 8px; bottom: 8px;
  width: 2px; background: var(--border);
}
.timeline__item {
  display: grid; grid-template-columns: 56px 1fr; gap: 32px;
  margin-bottom: 44px; position: relative;
}
.timeline__item:last-child { margin-bottom: 0; }
.timeline__dot {
  width: 56px; height: 56px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 800; color: var(--teal);
  flex-shrink: 0; border: 4px solid var(--white); z-index: 2;
  position: relative; text-align: center; line-height: 1.2;
}
.timeline__item.highlight .timeline__dot { background: var(--teal); color: var(--navy); }
.timeline__body { padding-top: 12px; }
.timeline__body h3 { color: var(--text); margin-bottom: 6px; font-size: 1.1rem; }
.timeline__body p  { font-size: 0.92rem; }

/* ============================================
   ABOUT — WHAT SETS US APART
   ============================================ */
.diff-section { background: var(--bg); }
.diff-section__header { text-align: center; max-width: 560px; margin: 0 auto 60px; }
.diff-section__header h2 { margin-bottom: 16px; }
.diff__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.diff__item { }
.diff__item-num {
  font-size: 3.5rem; font-weight: 800; color: var(--border);
  line-height: 1; margin-bottom: 14px; font-variant-numeric: tabular-nums;
}
.diff__item h3 { color: var(--text); margin-bottom: 10px; font-size: 1.2rem; }
.diff__item p  { font-size: 0.95rem; }

/* ============================================
   ABOUT — PARTNERS BAR
   ============================================ */
.partners { background: var(--navy); padding: 60px 0; }
.partners__label { text-align: center; margin-bottom: 36px; }
.partners__logos {
  display: flex; align-items: center; justify-content: center;
  gap: 52px; flex-wrap: wrap;
}
.partners__logo {
  color: rgba(255,255,255,0.28); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; transition: var(--transition);
}
.partners__logo:hover { color: rgba(255,255,255,0.65); }

/* ============================================
   APPROACH — TECHNOLOGY PHILOSOPHY
   ============================================ */
.tech-philosophy { background: var(--bg); }
.tech-philosophy__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.tech-philosophy__image { border-radius: var(--radius-lg); overflow: hidden; height: 460px; }
.tech-philosophy__image img { width: 100%; height: 100%; object-fit: cover; }
.tech-philosophy__text h2 { color: var(--text); margin-bottom: 18px; }
.tech-philosophy__text > p { margin-bottom: 32px; }

.tech-list { display: grid; gap: 18px; }
.tech-list__item { display: flex; align-items: flex-start; gap: 16px; }
.tech-list__dot {
  width: 24px; height: 24px; background: rgba(0,200,150,0.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.tech-list__dot::after {
  content: ''; width: 8px; height: 8px; background: var(--teal); border-radius: 50%;
}
.tech-list__item-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.tech-list__item-text span  { font-size: 0.875rem; color: var(--text-light); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter { background: var(--navy-light); padding: 88px 0; }
.newsletter__inner { max-width: 540px; margin: 0 auto; text-align: center; }
.newsletter__inner h2 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.newsletter__inner > p { margin-bottom: 36px; color: rgba(255,255,255,0.65); }
.newsletter__form { display: flex; gap: 10px; }
.newsletter__form input {
  flex: 1; padding: 14px 20px; border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 50px; background: rgba(255,255,255,0.06); color: var(--white);
  font-family: inherit; font-size: 0.95rem; transition: var(--transition);
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.38); }
.newsletter__form input:focus { outline: none; border-color: var(--teal); background: rgba(255,255,255,0.09); }
.newsletter__note { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 14px; }

/* ============================================
   RESPONSIVE — NEW COMPONENTS
   ============================================ */
@media (max-width: 1024px) {
  .serve__grid { grid-template-columns: 1fr 1fr; }
  .areas__grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 240px); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: 1fr; gap: 28px; }
  .tech-philosophy__grid { grid-template-columns: 1fr; }
  .tech-philosophy__image { max-height: 360px; }
}
@media (max-width: 767px) {
  .serve__grid { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .newsletter__form { flex-direction: column; }
  .partners__logos { gap: 32px; }
}

/* ============================================
   LEGAL PAGES (Privacy & Terms)
   ============================================ */
.legal-hero {
  background: var(--navy); padding: 140px 0 64px;
  position: relative; overflow: hidden;
}
.legal-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(108,99,255,0.15), transparent 60%);
  pointer-events: none;
}
.legal-hero__content { position: relative; z-index: 2; }
.legal-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  margin-bottom: 18px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
}
.legal-hero__breadcrumb a { color: var(--teal); transition: var(--transition); }
.legal-hero__breadcrumb a:hover { color: var(--teal-light); }
.legal-hero__breadcrumb span { color: rgba(255,255,255,0.28); }
.legal-hero h1 { color: var(--white); margin-bottom: 14px; }
.legal-hero__meta { color: rgba(255,255,255,0.45); font-size: 0.875rem; font-weight: 500; }
.legal-hero__meta strong { color: rgba(255,255,255,0.65); }

.legal-body { background: var(--white); padding: 80px 0 100px; }
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 64px; align-items: start; }

.legal-toc {
  position: sticky; top: 100px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
}
.legal-toc h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px;
}
.legal-toc ol { list-style: none; display: grid; gap: 4px; counter-reset: toc; }
.legal-toc ol li { counter-increment: toc; }
.legal-toc a {
  display: flex; align-items: baseline; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-light);
  padding: 6px 8px; border-radius: 8px; transition: var(--transition);
}
.legal-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 0.7rem; color: var(--text-muted); flex-shrink: 0;
}
.legal-toc a:hover { color: var(--teal); background: rgba(0,200,150,0.06); }

.legal-content { max-width: 680px; }
.legal-section { margin-bottom: 52px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h2 {
  font-size: 1.3rem; color: var(--text); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1.5px solid var(--border);
}
.legal-section h3 { font-size: 1rem; color: var(--text); margin: 20px 0 8px; }
.legal-section p  { font-size: 0.95rem; margin-bottom: 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul, .legal-section ol {
  margin: 10px 0 14px 0; display: grid; gap: 6px; padding-left: 20px;
}
.legal-section li { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }
.legal-section a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.legal-section a:hover { color: var(--teal-dark); }
.legal-highlight {
  background: rgba(0,200,150,0.07); border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 20px 0;
}
.legal-highlight p { font-size: 0.9rem; color: var(--text); font-weight: 500; margin: 0; }

@media (max-width: 767px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-hero { padding: 120px 0 48px; }
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-intro { background: var(--white); }
.products-intro__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.products-intro__inner h2 { margin-bottom: 16px; }

.product-brand { background: var(--bg); }
.product-brand--alt { background: var(--white); }
.product-brand__header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.product-brand__header h2 { margin-bottom: 16px; }

.product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.product-grid--2col { max-width: 800px; margin: 0 auto; }

.product-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.product-brand--alt .product-card { background: var(--bg); }
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-card__icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.product-card__icon--teal   { background: rgba(0, 200, 150, 0.12); }
.product-card__icon--purple { background: rgba(108, 99, 255, 0.12); }

.product-card h3 { color: var(--text); margin-bottom: 6px; }
.product-card__for {
  font-size: 0.82rem; font-weight: 600; color: var(--teal);
  margin-bottom: 14px;
}
.product-card p { font-size: 0.95rem; margin-bottom: 18px; }
.product-card__link {
  font-size: 0.9rem; font-weight: 700; color: var(--teal);
  transition: var(--transition);
}
.product-card__link:hover { color: var(--teal-light); }

.product-coming-soon {
  max-width: 520px; margin: 0 auto; text-align: center;
  background: var(--white); border: 2px dashed var(--border);
  border-radius: var(--radius-lg); padding: 48px 36px;
}
.product-coming-soon__badge {
  display: inline-block; background: rgba(108, 99, 255, 0.12);
  color: var(--purple); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.product-coming-soon p { margin-bottom: 20px; }

@media (max-width: 767px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-filters { background: var(--white); padding: 28px 0; border-bottom: 1px solid var(--border); }
.blog-filters__inner {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.blog-filter {
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-light);
  border: 1.5px solid var(--border); background: transparent;
  transition: var(--transition); cursor: pointer;
}
.blog-filter:hover { border-color: var(--teal); color: var(--teal); }
.blog-filter.active {
  background: var(--teal); color: var(--navy);
  border-color: var(--teal); font-weight: 700;
}

.blog-featured { background: var(--white); padding-top: 72px; }
.blog-featured__card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.blog-featured__image {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; height: 380px;
}
.blog-featured__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured__badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--teal); color: var(--navy);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
}
.blog-featured__content h2 { margin-bottom: 16px; font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.blog-featured__content p { margin-bottom: 28px; }

.blog-post__meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.blog-post__category {
  font-size: 0.75rem; font-weight: 700; color: var(--teal);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.blog-post__date {
  font-size: 0.78rem; color: var(--text-muted); font-weight: 500;
}

.blog-grid-section { background: var(--bg); }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}

.blog-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }

.blog-card__image { height: 200px; overflow: hidden; }
.blog-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover .blog-card__image img { transform: scale(1.06); }

.blog-card__body { padding: 28px 24px; }
.blog-card__body h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.blog-card__body p { font-size: 0.9rem; margin-bottom: 16px; }
.blog-card__link {
  font-size: 0.875rem; font-weight: 700; color: var(--teal);
  transition: var(--transition);
}
.blog-card__link:hover { color: var(--teal-light); }

@media (max-width: 1024px) {
  .blog-featured__card { grid-template-columns: 1fr; }
  .blog-featured__image { max-height: 320px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-filters__inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
}
