/* ─────────────────────────────────────────────
   RESET & ROOT
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --bg:            #F5F5F0;
  --bg-secondary:  #ECEAE4;
  --bg-card:       #FFFFFF;
  --bg-card2:      #F8F7F3;
  --text:          #1A1A1A;
  --text-muted:    #666666;
  --text-xmuted:   #999999;
  --accent:        #F5A800;
  --accent-dark:   #D99200;
  --accent-text:   #1A1A1A;
  --border:        #E0DDDA;
  --border-sub:    #EDEBE7;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.12);
  --nav-bg:        rgba(245,245,240,0.88);
  --font-display:  'DM Sans', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.25s ease;
}

[data-theme="dark"] {
  --bg:            #111111;
  --bg-secondary:  #1A1A1A;
  --bg-card:       #1F1F1F;
  --bg-card2:      #252525;
  --text:          #F0F0EC;
  --text-muted:    #8A8A8A;
  --text-xmuted:   #555555;
  --border:        #2E2E2E;
  --border-sub:    #222222;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.5);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.6);
  --nav-bg:        rgba(17,17,17,0.9);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.display { font-size: clamp(2.2rem, 6vw, 4.3rem); font-weight: 700; letter-spacing: -0.03em; }
.h1      { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; }
.h2      { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; }
.h3      { font-size: 1.2rem; font-weight: 700; }
.label   { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--text-muted); }
.accent-text { color: var(--accent); }

/* ─────────────────────────────────────────────
   LAYOUT HELPERS
───────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.section   { padding: clamp(64px, 10vw, 120px) 0; }
.grid-2    { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3    { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-text); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: none; }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 1rem; border-radius: 45px; }

/* pill buttons (hero CTAs) */
.btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
  text-decoration: none;
}
.btn-pill-primary { background: transparent; color: var(--text); border: 1.5px solid var(--text-muted); }
.btn-pill-primary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-pill-outline { background: transparent; color: var(--text); border: 1.5px solid var(--text-muted); }
.btn-pill-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: 68px;
  background: var(--nav-bg); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-sub);
  z-index: 1000; transition: background var(--transition), border-color var(--transition);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px);
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; background: var(--accent); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark { display: none !important; }
.logo-mark svg { width: 22px; height: 22px; fill: #1A1A1A; }
.logo-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--text); letter-spacing: -0.01em; }
.logo-name span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 7px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted); transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg-secondary); }
.nav-links a.active { color: var(--accent); }

.nav-controls { display: flex; align-items: center; gap: 8px; }
.ctrl-btn {
  background: none; border: 1px solid var(--border); border-radius: 8px;
  padding: 6px 12px; cursor: pointer; font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted); font-family: var(--font-body);
  transition: all var(--transition);
}
.ctrl-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-secondary); }
.ctrl-btn.icon { padding: 6px 10px; font-size: 1rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); display: block; }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 999; padding: 32px clamp(20px,5vw,60px);
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-family: var(--font-display); font-weight: 700; padding: 16px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu .mobile-controls { display: flex; gap: 12px; margin-top: 24px; }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  min-height: 90vh; display: flex; flex-direction: column; justify-content: center;
  padding-top: 50px; padding-bottom: 48px; position: relative; overflow: hidden;
}
[data-theme="dark"]  { --hero-bg: #0D0D0D; }
[data-theme="light"] { --hero-bg: #F0EFEB; }
.hero { background: var(--hero-bg); border: none; outline: none; }

.hero-bg  { display: none; }
.hero-grid{ display: none; }

/* audience tabs */
.hero-tabs {
  position: sticky; top: 68px; left: 0; right: 0; z-index: 999;
  display: flex;
  background: var(--hero-bg);
  backdrop-filter: blur(12px);
  transition: opacity 0.2s ease;
}
.hero-tabs-inner {
  padding-top: 30px !important;
  max-width: 1180px; margin: 0 auto; width: 100%;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 24px;
}
.hero-tabs-inner::-webkit-scrollbar { display: none; }
.hero-tab {
  flex: 0 0 auto;
  padding: 12px 0; margin-right: 0; font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted); cursor: pointer; border: none; background: none;
  font-family: var(--font-body); border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.hero-tab.active { color: var(--text); border-bottom-color: var(--text); font-weight: 600; }
.hero-tab:hover:not(.active) { color: var(--text); }

.hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(32px, 5vw, 80px); width: 100%;
  padding-top: 40px;
}
.hero-text { flex: 1; min-width: 0; }
.hero-eyebrow { display: none; }
.hero-headline { margin-bottom: 36px; line-height: 1.08; }
.hero-headline em { font-style: normal; color: inherit; }
.hero-sub { display: none; }

/* hero CTA group */
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* LinkedIn social icon below buttons */
.hero-linkedin-icon {
  margin-top: 20px;
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.hero-linkedin-icon a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: none; border: none;
  transition: color var(--transition);
  color: var(--text);
}
.hero-linkedin-icon a:hover { color: var(--accent); }

/* circular photo */
.hero-photo-wrap { position: relative; flex-shrink: 0; }
.hero-photo {
  width: 400px; height: 400px;
  border-radius: 50%; overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-photo-placeholder {
  width: 100%; height: 100%; background: #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: var(--text-muted);
}
[data-theme="light"] .hero-photo-placeholder { background: #d8d6d0; }
.hero-badge { display: none; }

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 32px 0;
  transition: background var(--transition);
}
.stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ─────────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────────── */
.section-header { margin-bottom: 48px; }
.section-header .label { display: inline-block; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin-top: 10px; line-height: 1.7; }

/* ─────────────────────────────────────────────
   OUTSTANDING SECTION — CARD
───────────────────────────────────────────── */
.outstanding-section { background: var(--bg-secondary); }
.outstanding-card {
  display: grid;
  grid-template-columns: clamp(260px, 30vw, 420px) 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-lg);
}
.outstanding-award-img {
  display: flex; align-items: center; justify-content: center;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
}
.outstanding-img { width: 100%; height: auto; object-fit: contain; }
.outstanding-card-content { display: flex; flex-direction: column; align-items: flex-start; }
.outstanding-card-content .h2 { margin-top: 12px; margin-bottom: 12px; font-weight: 800; letter-spacing: -0.02em; }
.outstanding-card-content p {
  color: var(--text-muted); line-height: 1.75; max-width: 520px; margin-bottom: 32px;
}
.outstanding-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.outstanding-badges .tag { background: rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.1); color: var(--text-muted); font-size: 0.75rem; }

.outstanding-btn-wide {
  width: 100%; max-width: 320px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 100px;
  background: var(--accent); color: #1A1A1A; font-weight: 700;
  text-decoration: none; transition: transform var(--transition);
  border: none;
}
.outstanding-btn-wide:hover { transform: translateY(-2px); filter: brightness(1.1); }

@media (max-width: 768px) {
  .outstanding-card { grid-template-columns: 1fr; text-align: center; }
  .outstanding-award-img { max-width: 140px; max-height: 140px; margin: 0 auto; }
  .outstanding-badges { justify-content: center; }
}

/* ─────────────────────────────────────────────
   CASE CARDS
───────────────────────────────────────────── */
.cases-section { background: var(--bg); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
/* Hidden extra cards — directly on the card element */
.case-card.hidden { display: none; }
.case-card.hidden.visible {
  display: flex;
  animation: fadeUp 0.4s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Show More button wrapper — centered */
.show-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .cases-grid { grid-template-columns: 1fr; }
}
.case-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.case-card-cover {
  width: 100%; aspect-ratio: 16/9; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cover-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cover-pattern {
  position: absolute; inset: 0; opacity: 0.12;
  background-image: radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 20px 20px;
}
.cover-logo {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  color: white; letter-spacing: -0.02em; position: relative; z-index: 1;
}
.lock-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.55); color: white; backdrop-filter: blur(8px);
  border-radius: 6px; padding: 4px 10px; font-size: 0.72rem; font-weight: 600;
  display: flex; align-items: center; gap: 5px; z-index: 2;
}
.case-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.card-company { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600; }
.card-year { font-size: 0.75rem; color: var(--text-xmuted); }
.card-title { font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.card-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; flex: 1; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.7rem; padding: 4px 10px; border-radius: 100px;
  background: var(--bg-secondary); color: var(--text-muted);
  border: 1px solid var(--border); font-weight: 500; letter-spacing: 0.02em;
}

/* filter bar */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 7px 16px; border-radius: 100px; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition); font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(245,168,0,0.08); }

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.about-section { background: var(--bg-secondary); }
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start; }
.about-photo {
  border-radius: var(--radius-lg); overflow: hidden; position: sticky; top: 88px;
  box-shadow: var(--shadow-md);
}
.about-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.about-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--border) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.about-bio p { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; font-size: 1rem; }
.about-bio p:last-of-type { margin-bottom: 0; }

.skills-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.skill-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.skill-block h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 12px; font-weight: 700; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.skill-tag { font-size: 0.75rem; color: var(--text-muted); padding: 3px 8px; background: var(--bg-secondary); border-radius: 4px; }

.lang-row { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.lang-item { display: flex; flex-direction: column; gap: 4px; }
.lang-name { font-weight: 600; font-size: 0.9rem; }
.lang-level { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.lang-bar { width: 80px; height: 4px; background: var(--border); border-radius: 2px; margin-top: 4px; }
.lang-fill { height: 100%; background: var(--accent); border-radius: 2px; }

/* ─────────────────────────────────────────────
   ABOUT PAGE HERO STRIP
───────────────────────────────────────────── */
.about-page-hero {
  padding-top: calc(68px + clamp(40px, 6vw, 64px));
  padding-bottom: clamp(40px, 6vw, 64px);
  background: var(--hero-bg);
  border-bottom: 1px solid var(--border);
}
.about-page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px;
}
.about-page-hero .breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.about-page-hero .breadcrumb a:hover { color: var(--accent); }
.about-page-hero .breadcrumb span { color: var(--text-xmuted); }
.about-page-hero p {
  color: var(--text-muted); margin-top: 10px; max-width: 560px; line-height: 1.7;
}

/* ─────────────────────────────────────────────
   CASE STUDY PAGE HERO
───────────────────────────────────────────── */
.case-page-hero {
  padding-top: calc(68px + clamp(32px, 5vw, 48px));
  padding-bottom: clamp(40px, 6vw, 64px);
  background: var(--bg);
  border-bottom: 1px solid var(--border-sub);
}
.case-page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap;
}
.case-page-hero .breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.case-page-hero .breadcrumb a:hover { color: var(--accent); }
.case-page-hero .breadcrumb span { color: var(--text-xmuted); }
.case-page-hero p {
  color: var(--text-muted); margin-top: 12px; max-width: 620px; line-height: 1.7;
}

.cover-bar { width: 100%; height: 5px; }
.cover-bar--blue  { background: #1055CC; }
.cover-bar--indigo { background: #1A56E8; }

.case-tags-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }

.case-meta-row {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border-sub);
}
.case-meta-item { display: flex; flex-direction: column; gap: 4px; }
.case-meta-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700; color: var(--text-muted);
}
.case-meta-value { font-size: 0.95rem; font-weight: 600; color: var(--text); }

/* ─────────────────────────────────────────────
   BREADCRUMB (shared)
───────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-xmuted); }

/* ─────────────────────────────────────────────
   COMPANIES
───────────────────────────────────────────── */
.companies-section { background: var(--bg); padding: 48px 0; }
.companies-label { text-align: center; margin-bottom: 28px; }
.companies-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.company-chip {
  padding: 10px 20px; border: 1px solid var(--border); border-radius: 100px;
  background: var(--bg-card); font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted); transition: all var(--transition);
  white-space: nowrap;
}
.company-chip:hover { border-color: var(--accent); color: var(--text); }

/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
.process-section { background: var(--bg-card); }
.process-phases { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
.phase-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 18px; text-align: center; position: relative;
  transition: all var(--transition);
}
.phase-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.phase-number {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--accent); opacity: 0.3; position: absolute; top: 12px; right: 14px; line-height: 1;
}
.phase-icon { font-size: 1.8rem; margin-bottom: 12px; color: var(--accent); line-height: 1; }
.phase-name { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.phase-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }
.process-arrow { display: flex; align-items: center; justify-content: center; color: var(--accent); opacity: 0.4; font-size: 1.4rem; }
.process-quote {
  margin-top: 56px; text-align: center;
  padding: 40px; background: var(--bg-secondary); border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
}
.process-quote blockquote { font-size: 1.3rem; font-family: var(--font-display); font-weight: 600; color: var(--text); font-style: italic; line-height: 1.5; }
.process-quote cite { display: block; margin-top: 12px; font-size: 0.85rem; color: var(--text-muted); font-style: normal; }

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact-section { background: var(--bg-secondary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); transition: all var(--transition);
}
.contact-link:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-link-icon { font-size: 1.2rem; }
.contact-link-text { font-weight: 500; font-size: 0.9rem; }

.contact-info-block { display: block; margin-bottom: 10px; }
.contact-info-desc { margin-top: 16px; }
.contact-links-wrap { margin-top: 32px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.form-input, .form-textarea {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 13px 16px;
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color var(--transition); outline: none; width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 130px; }
.contact-form > .btn { align-self: flex-start; width: fit-content; }

/* ─────────────────────────────────────────────
   TIMELINE
───────────────────────────────────────────── */
.timeline { margin-top: 48px; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item { padding-left: 28px; position: relative; padding-bottom: 32px; }
.timeline-item::before {
  content: ''; position: absolute; left: -5px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--border);
}
.timeline-item.current::before { background: var(--accent); border-color: var(--accent); }
.timeline-period { font-size: 0.78rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.timeline-role { font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.timeline-company { font-size: 0.875rem; color: var(--text-muted); }
.timeline-desc {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.65;
  margin-top: 6px; max-width: 520px;
}

/* ─────────────────────────────────────────────
   PASSWORD GATE
───────────────────────────────────────────── */
.page-overlay {
  display: none; position: fixed; inset: 0; background: var(--bg);
  z-index: 2000; overflow-y: auto; padding-top: 68px;
}
.page-overlay.open { display: block; }

.case-page { min-height: calc(100vh - 68px); }
.case-hero {
  padding: clamp(48px,8vw,100px) 0 clamp(40px,6vw,72px);
  border-bottom: 1px solid var(--border);
}
.case-back {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px;
  font-size: 0.9rem; font-weight: 600; color: var(--text-muted); cursor: pointer;
  transition: color var(--transition);
}
.case-back:hover { color: var(--accent); }

.gate-wrap {
  max-width: 460px; margin: 80px auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(32px,5vw,52px);
  text-align: center; box-shadow: var(--shadow-md);
}
.gate-lock { font-size: 2.8rem; margin-bottom: 20px; }
.gate-title { margin-bottom: 12px; }
.gate-desc { color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; font-size: 0.95rem; }
.gate-row { display: flex; gap: 10px; }
.gate-input {
  flex: 1; padding: 13px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--bg);
  color: var(--text); font-size: 0.95rem; font-family: var(--font-body);
  outline: none; transition: border-color var(--transition);
}
.gate-input:focus { border-color: var(--accent); }
.gate-error { color: #E53E3E; font-size: 0.85rem; margin-top: 12px; min-height: 20px; }
.gate-hint { margin-top: 20px; font-size: 0.82rem; color: var(--text-muted); }
.gate-hint a { color: var(--accent); font-weight: 600; }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60%  { transform: translateX(-8px); }
  40%,80%  { transform: translateX(8px); }
}
.shake { animation: shake 0.4s ease; }

.case-content-area { display: none; }
.case-content-area.revealed { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* case content blocks */
.case-section { padding: clamp(40px,6vw,72px) 0; border-bottom: 1px solid var(--border); }
.case-section:last-child { border-bottom: none; }
.case-cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 28px; }
.case-col h3 { margin-bottom: 12px; }
.case-col p { color: var(--text-muted); line-height: 1.75; font-size: 0.95rem; }
.case-col ul { color: var(--text-muted); padding-left: 20px; line-height: 2; font-size: 0.95rem; }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.impact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.impact-card h4 { margin-bottom: 12px; color: var(--accent); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.impact-card ul { color: var(--text-muted); padding-left: 18px; line-height: 2; font-size: 0.9rem; }

/* ─────────────────────────────────────────────
   BACK CTA SECTION
───────────────────────────────────────────── */
.back-cta-section {
  padding: 48px 0; text-align: center; background: var(--bg);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 36px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────────── */
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.anim.in { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   CAREER SECTION
───────────────────────────────────────────── */
.career-section { background: var(--bg); }
.career-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.career-left { position: sticky; top: 140px; }
.career-left .about-photo { margin-bottom: 32px; }
.career-facts { display: flex; flex-direction: column; gap: 20px; }
.career-fact {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color var(--transition);
}
.career-fact:hover { border-color: var(--accent); }
.career-fact-value {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.career-fact-label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

@media (max-width: 1024px) {
  .career-grid { grid-template-columns: 1fr; }
  .career-left { position: static; }
}

/* ─────────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────────── */
.services-section { background: var(--bg-secondary); }
.services-intro { max-width: 640px; margin-bottom: 56px; }
.services-intro p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-top: 12px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(245,168,0,0.1); border: 1px solid rgba(245,168,0,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--accent);
}
.service-icon svg { width: 22px; height: 22px; }
.service-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.service-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ─────────────────────────────────────────────
   EXPERTISE SECTION
───────────────────────────────────────────── */
.expertise-section { background: var(--bg-secondary); }
.expertise-intro { max-width: 680px; margin-bottom: 56px; }
.expertise-intro p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-top: 12px; }
.expertise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.expertise-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.expertise-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.expertise-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.expertise-card-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(245,168,0,0.1); border: 1px solid rgba(245,168,0,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.expertise-card-icon svg { width: 18px; height: 18px; }
.expertise-card-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.expertise-card-subtitle { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.expertise-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.expertise-pill {
  font-size: 0.8rem; padding: 5px 12px; border-radius: 100px;
  background: var(--bg-secondary); color: var(--text-muted);
  border: 1px solid var(--border); font-weight: 500;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  cursor: default;
}
.expertise-card:hover .expertise-pill { border-color: rgba(245,168,0,0.3); }
.expertise-pill:hover { border-color: var(--accent) !important; color: var(--text); background: rgba(245,168,0,0.07); }

/* Language proficiency inside expertise card */
.lang-proficiency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lang-prof-item { display: flex; flex-direction: column; gap: 8px; }
.lang-prof-top { display: flex; justify-content: space-between; align-items: baseline; }
.lang-prof-name { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.lang-prof-level { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.lang-prof-bar { width: 100%; height: 5px; background: var(--border); border-radius: 3px; }
.lang-prof-fill { height: 100%; background: var(--accent); border-radius: 3px; transition: width 1s ease; }

/* ─────────────────────────────────────────────
   USE CASE PAGE LAYOUT
───────────────────────────────────────────── */
.uc-title-hero { background: var(--bg); padding: 56px 0 0; }
.uc-title-wrap { margin-bottom: 32px; }
.uc-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.uc-main-title {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px;
}
.uc-subtitle { color: var(--text-muted); max-width: 640px; line-height: 1.7; margin-bottom: 28px; }
.uc-meta-bar {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.uc-meta-item { display: flex; flex-direction: column; gap: 2px; }
.uc-meta-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 600; }
.uc-meta-val { font-size: 0.9rem; font-weight: 600; color: var(--text); }

.uc-hero-img { margin: 32px 0 0; }
.uc-img-laptop {
  width: 100%; border-radius: 16px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  aspect-ratio: 16/7;
}
.uc-img-wide {
  width: 100%; border-radius: 12px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  aspect-ratio: 16/7;
}
.uc-img-placeholder { display: flex; align-items: center; justify-content: center; }
.uc-img-inner {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--text-xmuted); font-size: 0.82rem; text-align: center; padding: 32px;
}

.uc-layout { background: var(--bg); padding: 56px 0 80px; }
.uc-grid { display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: start; }
.uc-main { display: flex; flex-direction: column; gap: 0; }
.uc-section { padding-bottom: 24px; margin-bottom: 48px; }
.uc-section:last-child { border-bottom: none; margin-bottom: 0; }
.uc-section-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em; }
.uc-section p { color: var(--text-muted); line-height: 1.75; }
.uc-list { color: var(--text-muted); padding-left: 20px; line-height: 2.1; margin-top: 12px; }
.uc-section-img { margin-top: 24px; }

.uc-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 28px; }
.uc-sidebar-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.uc-sidebar-title {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700; color: var(--text-muted); margin-bottom: 14px;
}
.uc-sidebar-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.uc-sidebar-list li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }
.uc-step-num {
  width: 22px; height: 22px; border-radius: 50%; background: var(--accent);
  color: #1A1A1A; font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.uc-tools-row { display: flex; gap: 8px; flex-wrap: wrap; }
.uc-tool {
  padding: 4px 12px; border-radius: 100px; border: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text-muted); background: var(--bg);
}
.uc-method-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.uc-method {
  font-size: 0.75rem; padding: 3px 10px; border-radius: 6px;
  background: var(--bg); border: 1px solid var(--border); color: var(--text-muted);
}

/* Back link in uc-section */
.uc-back-link {
  margin-top: 36px;
}

/* ─────────────────────────────────────────────
   AWARD PAGE SPECIFIC
───────────────────────────────────────────── */
.award-card-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin: 48px 0 64px; text-align: left;
}
.award-mini-card {
  background: var(--bg-card); border: 1px solid var(--border-sub);
  border-radius: 16px; padding: 32px; transition: transform 0.3s ease, border-color 0.3s ease;
}
.award-mini-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.award-card-icon { font-size: 1.8rem; margin-bottom: 20px; color: var(--accent); }
.award-card-h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.award-card-p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.award-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 0.875rem; font-weight: 700;
  text-decoration: none; transition: gap 0.3s ease;
}
.award-link:hover { gap: 12px; }

.yellow-title {
  color: var(--accent); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 16px; display: block;
}

@media (max-width: 768px) {
  .award-card-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 300px; }
  .process-phases { grid-template-columns: repeat(3,1fr); }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .uc-grid { grid-template-columns: 1fr; }
  .uc-sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links, .nav-controls { display: none; }
  .hamburger { display: flex; }
  .hero-inner { flex-direction: column; text-align: center; align-items: center; }
  .hero-text { width: 100%; }
  .hero-photo-wrap { display: none; }
  .hero-ctas { justify-content: center; }
  .hero-linkedin-icon { justify-content: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .case-cols-2, .impact-grid { grid-template-columns: 1fr; }
  .process-phases { grid-template-columns: 1fr 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .lang-proficiency-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .process-phases { grid-template-columns: 1fr; }
  .stats-inner { gap: 32px; }
}

/* ─────────────────────────────────────────────
   CASE STUDY — SHARED COMPONENTS
   (ExxonMobil, Volvo, and future case studies)
───────────────────────────────────────────── */
:root { --prj-accent: var(--accent); }

/* CSS Mockup (decorative browser wireframe) */
.hero-mockup-wrap { perspective: 1000px; display: flex; justify-content: center; }
.css-mockup { width: 100%; max-width: 500px; background: var(--bg-card); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.6); transform: rotateY(-5deg) rotateX(5deg); transition: transform 0.5s; }
.css-mockup:hover { transform: rotateY(0) rotateX(0); }
.css-mockup-bar { background: var(--border); padding: 12px 16px; display: flex; gap: 8px; border-bottom: 1px solid var(--border); }
.css-dot { width: 10px; height: 10px; border-radius: 50%; }
.css-mockup-body { padding: 0; background: var(--bg); height: 320px; display: flex; flex-direction: column; }
.css-header { background: var(--prj-accent); padding: 16px; color: #111; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; font-weight: 700; }
.css-nav { display: flex; gap: 12px; font-weight: 400; opacity: 0.8; }
.css-hero-inner { background: var(--bg-card); padding: 32px 24px; text-align: center; border-bottom: 1px solid var(--border); }
.css-search-bar { background: var(--bg); width: 70%; margin: 16px auto 0; padding: 8px 12px; border-radius: 4px; display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--border); }
.css-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 16px; }
.css-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 12px 8px; text-align: center; }
.css-card-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); margin: 0 auto 8px; }

/* Layout & Sections */
.uc-layout { padding: 80px 0; }
.uc-section { padding-bottom: 80px; margin-bottom: 80px; border-bottom: 1px solid var(--border-sub); }
.uc-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.uc-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--prj-accent); margin-bottom: 24px; display: flex; align-items: center; gap: 16px; }
.uc-label::after { content: ''; height: 1px; flex: 0 0 40px; background: var(--border); }
.uc-title { font-family: 'DM Sans', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.15; margin-bottom: 32px; max-width: 700px; color: var(--text); }
.uc-title em { font-style: italic; color: var(--prj-accent); }
.uc-body-text, .uc-body { font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; max-width: 680px; margin-bottom: 24px; }

/* Grids & Cards */
.uc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
@media (max-width: 768px) { .uc-grid-2 { grid-template-columns: 1fr; } }
.uc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 40px; }
.uc-card h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--text-muted); margin-bottom: 16px; }
.uc-card p { font-size: 1rem; color: var(--text); line-height: 1.6; }

/* Quote Box */
.uc-quote-box { margin: 64px 0; padding: 64px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; position: relative; overflow: hidden; }
.uc-quote-box::before { content: '"'; position: absolute; top: -10px; left: 30px; font-family: 'DM Sans', sans-serif; font-size: 180px; color: var(--prj-accent); opacity: 0.1; line-height: 1; }
.uc-quote-text { font-family: 'DM Sans', sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 300; font-style: italic; color: var(--text); line-height: 1.4; position: relative; z-index: 1; margin-bottom: 24px; }
.uc-quote-author { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 700; }

/* Numbered / Icon List */
.uc-list-block { margin-top: 48px; display: flex; flex-direction: column; }
.uc-list-item { display: grid; grid-template-columns: 60px 1fr; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--border); align-items: start; }
.uc-list-item:first-child { border-top: 1px solid var(--border); }
.uc-list-num { font-family: 'DM Sans', sans-serif; font-size: 2.5rem; color: var(--prj-accent); line-height: 1; opacity: 0.9; }
.uc-list-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.uc-list-content h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.uc-list-content p { color: var(--text-muted); line-height: 1.6; font-size: 1.05rem; }

/* Highlight Box */
.uc-highlight { background: var(--bg-card); border-left: 4px solid var(--prj-accent); border-radius: 0 12px 12px 0; padding: 48px; margin: 64px 0; }
.uc-highlight h3 { font-family: 'DM Sans', sans-serif; font-size: 1.8rem; font-weight: 400; margin-bottom: 16px; color: var(--text); }
.uc-highlight p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; }

/* Features Grid */
.uc-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 64px; }
.uc-feature { padding: 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; transition: all 0.3s ease; }
.uc-feature:hover { border-color: var(--prj-accent); background: var(--bg); }
.uc-feature-icon { color: var(--prj-accent); margin-bottom: 24px; }
.uc-feature h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.uc-feature p { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }

/* Metrics Bar */
.uc-metrics-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin: 80px 0; }
@media (max-width: 768px) { .uc-metrics-bar { grid-template-columns: 1fr; } }
.uc-metric { background: var(--bg); padding: 64px 32px; text-align: center; }
.uc-metric-num { font-size: clamp(3.5rem, 6vw, 5.5rem); font-family: 'DM Sans', sans-serif; color: var(--text); font-weight: 600; line-height: 1; margin-bottom: 16px; }
.uc-metric-num span { color: var(--prj-accent); }
.uc-metric-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 700; line-height: 1.4; }

/* Recognition Split */
.uc-recognition { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 64px; }
@media (max-width: 900px) { .uc-recognition { grid-template-columns: 1fr; } }
.rec-left { background: var(--bg-card); padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--border); }
.rec-left h3 { font-family: 'DM Sans', sans-serif; font-size: 1.8rem; font-weight: 300; line-height: 1.3; margin-bottom: 24px; color: var(--text); }
.rec-left p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }
.rec-right { background: var(--bg); padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.rec-right blockquote { font-family: 'DM Sans', sans-serif; font-size: 1.4rem; font-weight: 300; font-style: italic; line-height: 1.6; color: var(--text); margin-bottom: 32px; }
.rec-right cite { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; line-height: 1.6; display: block; }

/* Case study title hero / image wrapper */
.uc-title-hero { padding: 56px 0 0; }
.uc-hero-img { margin: 0; }
.uc-img-laptop { width: 100%; border-radius: 16px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; padding: 48px; min-height: 480px; }

/* Dynamic Theme Logos */
.logo-light, .logo-dark {
    display: none !important;
}
[data-theme="light"] .logo-light {
    display: block !important;
}
[data-theme="dark"] .logo-dark {
    display: block !important;
}

/* LOGO STANDARDIZATION */
img.brand-logo { height: 30px !important; }

/* NEW CLINICAL PANORAMA CLASSES */
.uc-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; margin-bottom: 32px; }
.uc-highlight-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 40px; margin: 48px 0; }
.uc-highlight-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--text-muted); margin-bottom: 16px; display: inline-block; padding: 4px 12px; border-radius: 100px; background: var(--bg); border: 1px solid var(--border); }
.uc-highlight-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.uc-highlight-box p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; }
/* uc-card already exists but we ensure it works well in the grid */
