/* ========== Reset & Base ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
 * 底色：淡玫瑰雾面（腮红纸感）；强调色仍用青蓝系形成「暖场 + 冷点」对比
 * 导航选中：独立胶囊态，与花叔技能中「克制层级」一致，避免仅靠一条下划线
 */
:root {
  --palette-bg: #fdf5f6;
  --palette-bg-alt: #f8e9ed;
  --palette-surface: #efd8de;
  --palette-elevated: #ffffff;
  --palette-ink: #0c1222;
  --palette-text-primary: #1a1520;
  --palette-text-secondary: #5c4f58;
  --palette-text-muted: #8a7a85;
  --palette-border: rgba(90, 35, 55, 0.1);
  --palette-border-strong: rgba(90, 35, 55, 0.16);
  --palette-rose-deep: #6b1d38;
  --palette-rose-mid: #c44d6d;
  --accent: #0c6ff9;
  --accent-secondary: #0891b2;
  --accent-deep: #0546c4;
  --accent-soft: rgba(12, 111, 249, 0.14);
  --accent-line: rgba(12, 111, 249, 0.45);
  --legal-link: #0c6ff9;
  --shadow-0: rgba(60, 25, 40, 0.06) 0 0 0 1px;
  --shadow-1: rgba(60, 25, 40, 0.06) 0 2px 10px;
  --shadow-2: rgba(50, 20, 35, 0.08) 0 10px 28px;
  --shadow-card: var(--shadow-0), var(--shadow-1), var(--shadow-2);
  --shadow-hover: rgba(12, 111, 249, 0.14) 0 14px 36px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --space-unit: 8px;
  --max-width: 1128px;
  --transition: 0.2s ease;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-stack: "Plus Jakarta Sans", "Circular", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --hero-mesh:
    radial-gradient(ellipse 90% 60% at 92% -6%, rgba(230, 120, 145, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 55% 48% at 4% 100%, rgba(255, 200, 210, 0.35) 0%, transparent 52%),
    radial-gradient(ellipse 42% 36% at 72% 58%, rgba(12, 111, 249, 0.06) 0%, transparent 50%);
  /* legacy aliases */
  --primary: var(--accent);
  --text: var(--palette-text-primary);
  --text-light: var(--palette-text-secondary);
  --text-muted: var(--palette-text-muted);
  --bg: var(--palette-bg);
  --bg-light: var(--palette-surface);
  --card-shadow: var(--shadow-card);
  --card-radius: var(--radius-lg);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Match body background so cross-page navigation never flashes white. */
  background-color: var(--palette-bg);
  color-scheme: light;
}

body {
  font-family: var(--font-stack);
  color: var(--palette-text-primary);
  background-color: var(--palette-bg);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 48%),
    linear-gradient(90deg, rgba(200, 100, 120, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(200, 100, 120, 0.055) 1px, transparent 1px);
  background-size: 100% 100%, 56px 56px, 56px 56px;
  background-attachment: fixed, fixed, fixed;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Pre-paint visibility lock: only applied (via inline head script) when a
   non-English language is saved, so users never see a flash of the English
   HTML before the JS swap. The class is removed by applyTranslations(). */
html.i18n-pending body {
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-card,
  .hero-photo-card img,
  .work-card,
  .work-card-media img,
  .stat-card {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-photo-card:hover,
  .hero-photo-card:hover img,
  .work-card:hover,
  .work-card:hover .work-card-media img {
    transform: none !important;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition), opacity var(--transition), box-shadow var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ========== Typography ========== */
h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.44px;
  color: var(--palette-text-primary);
}

h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: -0.28px;
  color: var(--palette-text-primary);
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.18px;
  color: var(--palette-text-primary);
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--palette-text-primary);
}

/* ========== Layout ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

/* ========== Navbar ========== */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(253, 245, 246, 0.78);
  backdrop-filter: saturate(1.75) blur(16px);
  -webkit-backdrop-filter: saturate(1.75) blur(16px);
  border-bottom: 1px solid var(--palette-border);
  z-index: 1000;
  padding: 0 24px;
}

.navbar .container {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 12px 20px;
  min-height: 72px;
  position: relative;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--palette-text-primary);
  padding: 8px 0;
}


.nav-brand:hover {
  color: var(--palette-text-primary);
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.5vw, 10px);
  flex-wrap: nowrap;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--palette-text-secondary);
  padding: 9px 18px 9px 22px;
  position: relative;
  border-radius: var(--radius-pill);
  transition:
    color 0.28s var(--ease-out),
    background 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    transform 0.22s var(--ease-out);
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 4px;
  height: 15px;
  margin-top: -7.5px;
  border-radius: 3px;
  background: linear-gradient(180deg, #e86888 0%, var(--palette-rose-deep) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: scaleY(0.6);
  transition: opacity 0.24s var(--ease-out), transform 0.24s var(--ease-out);
}

.nav-links a:hover:not(.active) {
  color: var(--palette-text-primary);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(180, 90, 110, 0.12);
  transform: translateY(-1px);
}

.nav-links a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--palette-elevated), 0 0 0 4px rgba(12, 111, 249, 0.35);
}

.nav-links a.active {
  color: var(--palette-rose-deep);
  font-weight: 600;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 232, 237, 0.88) 42%,
    rgba(252, 214, 224, 0.82) 100%
  );
  box-shadow:
    0 0 0 1px rgba(190, 95, 120, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(90, 30, 50, 0.08);
  transform: translateY(-1px);
}

.nav-links a.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 110px;
  padding: 0 16px;
  border: 1px solid var(--palette-border);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.65);
  color: var(--palette-text-primary);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
  white-space: nowrap;
}

.lang-toggle:hover {
  border-color: rgba(190, 95, 120, 0.35);
  background: var(--palette-elevated);
  box-shadow: var(--shadow-hover);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--palette-surface);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: box-shadow var(--transition);
}

.menu-toggle:hover {
  box-shadow: var(--shadow-hover);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--palette-text-primary);
  margin: 3px auto;
  border-radius: 1px;
  transition: var(--transition);
}

/* ========== Hero (image-first) ========== */
.hero {
  padding: 56px 0 72px;
  position: relative;
}

.hero-shell {
  background: var(--hero-mesh), linear-gradient(180deg, var(--palette-elevated) 0%, var(--palette-bg) 100%);
  border-bottom: 1px solid var(--palette-border);
}

.hero-deco {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-deco::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  border-radius: 50%;
  border: 1px solid rgba(210, 110, 130, 0.2);
  opacity: 0.85;
}

.hero-deco::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 4%;
  width: 120px;
  height: 120px;
  border-radius: 32% 68% 65% 35% / 42% 38% 62% 58%;
  background: rgba(255, 180, 195, 0.14);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--palette-text-secondary);
  margin-bottom: 22px;
  box-shadow: 0 0 0 1px var(--palette-border), 0 4px 20px rgba(12, 111, 249, 0.06);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  box-shadow: 0 0 10px rgba(12, 111, 249, 0.45);
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.6px;
  text-wrap: balance;
}

.hero p {
  color: var(--palette-text-secondary);
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.55;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  min-height: 280px;
}

.hero-photo-card {
  margin: 0;
  border-radius: 28px 28px 28px 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 24px 56px rgba(12, 111, 249, 0.1);
  background: var(--palette-surface);
  border: 1px solid var(--palette-border);
  transition: box-shadow 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.hero-photo-card:hover {
  box-shadow: var(--shadow-card), var(--shadow-hover), 0 32px 64px rgba(12, 111, 249, 0.14);
  transform: translateY(-4px) rotate(-0.5deg);
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.hero-photo-card:hover img {
  transform: scale(1.04);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  border: none;
  transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-spring);
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(165deg, var(--palette-ink) 0%, #0a162e 100%);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 24px rgba(12, 111, 249, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(165deg, #070b14 0%, #050a18 100%);
  color: #ffffff;
  box-shadow: var(--shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--palette-text-primary);
  border: 1px solid var(--palette-text-primary);
}

.btn-outline:hover {
  background: var(--palette-elevated);
  color: var(--palette-text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1), 0 0 0 1px rgba(12, 111, 249, 0.12);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(12, 111, 249, 0.28);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-deep) 0%, #067a8a 100%);
  color: #ffffff;
  box-shadow: var(--shadow-hover);
}

.btn-dark {
  background: linear-gradient(165deg, var(--palette-ink) 0%, #0a162e 100%);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-dark:hover {
  background: linear-gradient(165deg, #070b14 0%, #050a18 100%);
  color: #ffffff;
}

/* ========== Stats ========== */
.stats-section {
  padding: 64px 0 80px;
  text-align: center;
  position: relative;
}

.stats-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(720px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 95, 120, 0.28), transparent);
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--palette-text-secondary);
  margin-bottom: 14px;
}

.section-subtitle::before {
  content: "";
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, #f0829a 0%, var(--palette-rose-deep) 100%);
}

.stats-section h2 {
  margin-bottom: 14px;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.stats-section > .container > p {
  color: var(--palette-text-secondary);
  max-width: 520px;
  margin: 0 auto 44px;
  font-size: 15px;
  line-height: 1.6;
}

/* Stats — horizontal band with dividers, no card boxes */
.stats-grid {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--palette-border-strong);
  border-bottom: 1px solid var(--palette-border-strong);
  margin-top: 8px;
}

.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 20px 32px;
  position: relative;
  transition: background 0.28s var(--ease-out);
}

/* vertical divider between items */
.stat-card + .stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--palette-border-strong);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.6);
}

.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--palette-ink) 0%, var(--palette-rose-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--palette-text-muted);
  line-height: 1.5;
  max-width: 120px;
}

/* ========== Work cards (image-first) ========== */
.work-section {
  padding: 56px 0 96px;
  text-align: center;
  background: linear-gradient(180deg, var(--palette-bg-alt) 0%, var(--palette-elevated) 36%, var(--palette-bg) 100%);
}

.work-section h2 {
  margin-bottom: 14px;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.work-section > .container > p {
  color: var(--palette-text-secondary);
  max-width: 520px;
  margin: 0 auto 44px;
  font-size: 15px;
  line-height: 1.6;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}

.work-card {
  background: var(--palette-elevated);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 22px 48px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--palette-border);
  transition: box-shadow 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.work-card:hover {
  box-shadow: var(--shadow-card), var(--shadow-hover), 0 32px 64px rgba(12, 111, 249, 0.12);
  transform: translateY(-5px);
}

.work-card:nth-child(2) {
  border-radius: 28px var(--radius-xl) var(--radius-xl) 28px;
}

.work-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--palette-surface);
  overflow: hidden;
}

.work-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0.55;
  transition: opacity 0.45s var(--ease-out);
}

.work-card:hover .work-card-media::after {
  opacity: 0.75;
}

.work-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.work-card:hover .work-card-media img {
  transform: scale(1.06);
}

.work-card-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.work-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.35px;
}

.work-card p {
  font-size: 15px;
  color: var(--palette-text-secondary);
  line-height: 1.65;
}

/* ========== Footer ========== */
.footer {
  position: relative;
  background: linear-gradient(180deg, var(--palette-bg-alt) 0%, var(--palette-surface) 100%);
  color: var(--palette-text-primary);
  padding: 60px 0 0;
  border-top: 1px solid var(--palette-border);
}

.footer-bottom {
  margin-top: 44px;
  padding: 16px 0;
  border-top: 1px solid var(--palette-border);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-sep {
  color: var(--palette-text-secondary);
  opacity: 0.4;
  font-size: 13px;
}

.footer-privacy-link {
  font-size: 13px;
  color: var(--palette-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-privacy-link:hover {
  color: var(--palette-text-primary);
}

.footer-bottom .copyright {
  font-size: 12.5px;
  color: var(--palette-text-muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.footer-bottom .copyright strong {
  font-weight: 600;
  color: var(--palette-text-secondary);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(220, 110, 135, 0.45) 28%,
    rgba(12, 111, 249, 0.4) 72%,
    transparent 100%
  );
  opacity: 0.9;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(155deg, var(--palette-ink) 0%, #152a52 100%);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 28px rgba(12, 111, 249, 0.25);
}

.footer-logo .logo-icon svg {
  display: block;
}

.footer-logo .logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--palette-text-secondary);
  line-height: 1.55;
  max-width: 300px;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--palette-text-primary);
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: var(--palette-text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--palette-text-primary);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--palette-text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--palette-text-primary);
}

/* ========== Technology ========== */
.tech-hero {
  padding: 40px 0 48px;
}

.tech-hero-card {
  background: var(--palette-elevated);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  box-shadow: var(--shadow-card), 0 22px 52px rgba(12, 111, 249, 0.08);
  border: 1px solid var(--palette-border);
}

.tech-hero-card h2 {
  margin-bottom: 0;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  align-self: end;
}

.tech-hero-card p {
  font-size: 15px;
  color: var(--palette-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: center;
}

.tech-stats {
  display: flex;
  gap: 32px;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  align-self: start;
  padding-top: 16px;
  border-top: 1px solid var(--palette-border);
}

.tech-stat {
  text-align: left;
  flex: 1;
}

.tech-stat .num {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.36px;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}

.tech-stat .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--palette-text-secondary);
  margin-bottom: 4px;
}

.tech-items {
  padding: 32px 0 48px;
}

.tech-item {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--palette-border);
}

.tech-item:last-child {
  border-bottom: none;
}

.tech-item-number {
  font-size: 2rem;
  font-weight: 600;
  color: var(--palette-text-muted);
  letter-spacing: -0.5px;
}

.tech-item-title h3 {
  font-size: 1.125rem;
}

.tech-item-desc {
  font-size: 14px;
  color: var(--palette-text-secondary);
  line-height: 1.6;
}

/* ========== Technology — extended narrative ========== */
.tech-extra {
  text-align: center;
  background: linear-gradient(180deg, var(--palette-elevated) 0%, var(--palette-bg) 100%);
  border-top: 1px solid var(--palette-border);
}

.tech-extra h2 {
  margin-bottom: 18px;
}

.tech-extra-lead {
  max-width: 720px;
  margin: 0 auto 16px;
  text-align: left;
  font-size: 15px;
  color: var(--palette-text-secondary);
  line-height: 1.68;
}

.tech-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
  text-align: left;
}

.tech-extra-card {
  background: var(--palette-elevated);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  border: 1px solid var(--palette-border);
  box-shadow: var(--shadow-card);
}

.tech-extra-card h3 {
  margin-bottom: 10px;
  font-size: 1.0625rem;
}

.tech-extra-card p {
  font-size: 14px;
  color: var(--palette-text-secondary);
  line-height: 1.62;
}

/* ========== Responsibility — values & impact ========== */
.resp-values {
  background: var(--palette-bg);
}

.resp-values h2 {
  text-align: center;
  margin-bottom: 14px;
}

.resp-values-lead {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 15px;
  color: var(--palette-text-secondary);
  line-height: 1.68;
}

.resp-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.resp-value-card {
  background: var(--palette-elevated);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  border: 1px solid var(--palette-border);
  box-shadow: var(--shadow-card);
  text-align: left;
}

.resp-value-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.resp-value-card p {
  font-size: 14px;
  color: var(--palette-text-secondary);
  line-height: 1.62;
}

.resp-impact {
  text-align: center;
}

.resp-impact h2 {
  margin-bottom: 8px;
}

.resp-impact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 28px;
  text-align: left;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.resp-impact-col p {
  font-size: 15px;
  color: var(--palette-text-secondary);
  line-height: 1.68;
  margin-bottom: 18px;
}

.resp-impact-col p:last-child {
  margin-bottom: 0;
}

.methodology {
  padding: 56px 0 72px;
  text-align: center;
  background: linear-gradient(180deg, var(--palette-bg-alt) 0%, var(--palette-surface) 100%);
  border-top: 1px solid var(--palette-border);
  border-bottom: 1px solid var(--palette-border);
}

.methodology h2 {
  margin-bottom: 12px;
}

.methodology > .container > p {
  color: var(--palette-text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 15px;
}

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

.methodology-item {
  text-align: center;
  background: var(--palette-elevated);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--palette-border);
}

.methodology-item .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--palette-text-secondary);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.methodology-item .value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.36px;
  color: var(--accent);
}

/* ========== Contact ========== */
.contact-hero {
  text-align: center;
  padding: 56px 0 40px;
}

.contact-hero .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.contact-hero h1 {
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.contact-hero-desc {
  color: var(--palette-text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.contact-main {
  padding: 8px 0 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-form-card {
  background: var(--palette-elevated);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--palette-border);
}

.form-card-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--palette-border);
}

.form-toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 40px;
  background: #f0faf4;
  border: 1px solid #a8dfc0;
  color: #1a7a45;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.contact-form-card h3 {
  margin-bottom: 5px;
}

.form-card-head > p {
  color: var(--palette-text-secondary);
  font-size: 14px;
}

/* Info panel */
.contact-info-panel {
  background: var(--palette-elevated);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--palette-border);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.contact-info-panel h3 {
  margin-bottom: 28px;
  font-size: 1rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--palette-border);
}

.info-row:first-child {
  padding-top: 0;
}

.info-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--palette-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--palette-rose-deep);
}

.info-row-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.info-row-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--palette-text-secondary);
}

.info-row-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--palette-text-primary);
  text-decoration: none;
}

a.info-row-value:hover {
  color: var(--palette-rose-deep);
}

.info-panel-deco {
  margin-top: 24px;
  color: var(--palette-rose-deep);
  opacity: 0.7;
}

/* legacy rules kept for safety */
.contact-info-card,
.address-card {
  background: var(--palette-elevated);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--palette-border);
}

.contact-form-card > p {
  color: var(--palette-text-secondary);
  font-size: 14px;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--palette-text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--palette-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--palette-text-primary);
  background: rgba(255, 248, 250, 0.75);
  outline: none;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(12, 111, 249, 0.45);
  background: var(--palette-elevated);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--palette-text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.contact-info-card h3 {
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--palette-surface);
  border-radius: 50%;
}

.contact-info-item .icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.contact-info-item .label {
  font-size: 11px;
  color: var(--palette-text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info-item .value {
  font-size: 14px;
  color: var(--palette-text-secondary);
  margin-top: 4px;
}

.address-card {
  margin-top: 20px;
}

.address-card .label {
  font-size: 11px;
  color: var(--palette-text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.address-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--palette-surface);
  border-radius: var(--radius-md);
}

.address-content svg {
  width: 22px;
  height: 22px;
  color: var(--palette-text-primary);
  flex-shrink: 0;
}

.address-content span {
  font-size: 14px;
  color: var(--palette-text-secondary);
}

/* ========== Privacy ========== */
.privacy-hero {
  padding: 48px 0 28px;
}

.privacy-hero h1 {
  margin-bottom: 12px;
}

.privacy-hero p {
  color: var(--palette-text-secondary);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

.privacy-updated {
  display: inline-block;
  padding: 6px 14px;
  background: var(--palette-surface);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--palette-text-secondary);
  margin-top: 16px;
  font-weight: 500;
}

.privacy-notice {
  background: var(--palette-surface);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0 36px;
  font-size: 14px;
  color: var(--palette-text-secondary);
  line-height: 1.6;
  border-left: 3px solid var(--accent);
}

.privacy-section {
  background: var(--palette-elevated);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--palette-border);
}

.privacy-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.privacy-section-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-secondary) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(12, 111, 249, 0.28);
}

.privacy-section h3 {
  font-size: 1.0625rem;
}

.privacy-section > p {
  font-size: 14px;
  color: var(--palette-text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.privacy-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.privacy-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--palette-surface);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--palette-text-primary);
}

.privacy-tag .tag-icon {
  color: var(--palette-text-secondary);
  font-size: 1rem;
}

.privacy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.privacy-mini-card {
  padding: 16px;
  background: var(--palette-surface);
  border-radius: var(--radius-md);
}

.privacy-mini-card h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.privacy-mini-card p {
  font-size: 13px;
  color: var(--palette-text-secondary);
  line-height: 1.5;
}

.privacy-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(165deg, var(--palette-ink) 0%, #0a162e 100%);
  color: #ffffff;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
  box-shadow: 0 8px 20px rgba(12, 111, 249, 0.2);
}

.privacy-contact-btn:hover {
  background: linear-gradient(165deg, #070b14 0%, #050a18 100%);
  color: #ffffff;
}

/* ========== Responsibility ========== */
.resp-hero {
  padding: 48px 0 56px;
}

.resp-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.resp-hero-text h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-style: normal;
  margin-bottom: 16px;
}

.resp-hero-text p {
  font-size: 15px;
  color: var(--palette-text-secondary);
  line-height: 1.6;
}

.resp-hero-images {
  display: flex;
  gap: 16px;
  align-items: stretch;
  justify-content: flex-end;
}

.resp-hero-images .img-circle {
  width: min(42vw, 200px);
  min-height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--palette-surface);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.resp-hero-images .img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resp-hero-images .img-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  max-width: 220px;
}

.resp-hero-images .img-rect {
  width: 100%;
  min-height: 120px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--palette-surface);
  box-shadow: var(--shadow-card);
}

.resp-hero-images .img-rect img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.resp-quote {
  font-style: normal;
  font-size: 13px;
  color: var(--palette-text-secondary);
  margin-top: 4px;
  line-height: 1.5;
}

.resp-initiatives {
  background: linear-gradient(180deg, var(--palette-bg-alt) 0%, var(--palette-surface) 100%);
  padding: 56px 0 72px;
  border-top: 1px solid var(--palette-border);
}

.resp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.resp-card {
  background: var(--palette-elevated);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--palette-border);
  transition: box-shadow var(--transition), transform var(--transition);
  min-height: 160px;
}

.resp-card:hover {
  box-shadow: var(--shadow-card), var(--shadow-hover);
  transform: translateY(-2px);
}

.resp-card-icon {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.resp-card h3 {
  margin-bottom: 10px;
  font-size: 1.0625rem;
}

.resp-card p {
  font-size: 14px;
  color: var(--palette-text-secondary);
  line-height: 1.55;
}

.resp-cta {
  background: linear-gradient(180deg, var(--palette-elevated) 0%, var(--palette-bg-alt) 100%);
  color: var(--palette-text-primary);
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid var(--palette-border);
}

.resp-cta h2 {
  margin-bottom: 12px;
  color: var(--palette-text-primary);
}

.resp-cta p {
  color: var(--palette-text-secondary);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
}

.resp-cta .btn-outline {
  border-color: var(--palette-text-primary);
  color: var(--palette-text-primary);
}

.resp-cta .btn-outline:hover {
  background: var(--palette-surface);
}

/* ========== Development / Journey ========== */
.journey-hero {
  padding: 48px 0 72px;
}

.journey-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.journey-hero-text h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.journey-hero-text p {
  font-size: 15px;
  color: var(--palette-text-secondary);
  line-height: 1.6;
}

.journey-hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.jh-card {
  width: 100%;
  max-width: 400px;
  background: var(--palette-elevated);
  border: 1px solid var(--palette-border-strong);
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-card);
}

.jh-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.jh-brand-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--palette-text-secondary);
}

.jh-est-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--palette-rose-deep);
  background: rgba(107, 29, 56, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.jh-chart {
  margin-bottom: 18px;
}

.jh-chart svg {
  width: 100%;
  height: auto;
  display: block;
  color: var(--palette-text-primary);
}

.jh-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--palette-border);
  padding-top: 14px;
  gap: 8px;
}

.jh-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--palette-text-secondary);
}

.jh-pill {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--palette-text-secondary);
  background: var(--palette-bg-alt);
  padding: 3px 10px;
  border-radius: 20px;
}


.timeline-section {
  padding: 72px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, var(--palette-bg-alt) 35%, transparent 100%);
}

.timeline-section h2 {
  margin-bottom: 40px;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(12, 111, 249, 0.2) 0%, var(--palette-border) 45%, rgba(8, 145, 178, 0.2) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: calc(50% + 40px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--palette-elevated);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-card {
  background: var(--palette-elevated);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--palette-border);
  text-align: left;
  width: 100%;
}

.timeline-card h4 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.timeline-card p {
  font-size: 14px;
  color: var(--palette-text-secondary);
  line-height: 1.55;
}

/* ========== Utility ========== */
.text-center { text-align: center; }
.text-primary { color: var(--accent); }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ========== Responsive ========== */
@media (max-width: 950px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    order: -1;
    min-height: 0;
  }

  .hero-copy {
    max-width: none;
  }
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resp-hero-content,
  .journey-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .resp-hero-images {
    justify-content: flex-start;
  }

  .journey-hero-visual {
    justify-content: flex-start;
  }

  .jh-card {
    max-width: none;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }

  .navbar .container {
    grid-template-columns: auto 1fr auto;
  }
}

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

  .navbar .container {
    grid-template-columns: auto 1fr auto;
  }

  .nav-brand {
    justify-self: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 250, 251, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 10px;
    border-bottom: 1px solid var(--palette-border);
    box-shadow: var(--shadow-card);
    justify-content: flex-start;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card:nth-child(2) {
    border-radius: var(--radius-xl);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tech-hero-card {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 20px;
  }

  .tech-hero-card h2 {
    grid-column: 1;
    grid-row: auto;
  }

  .tech-hero-card p {
    grid-column: 1;
    grid-row: auto;
  }

  .tech-stats {
    grid-column: 1;
    grid-row: auto;
  }

  .tech-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .tech-item-desc {
    grid-column: 1 / -1;
  }

  .tech-extra-grid {
    grid-template-columns: 1fr;
  }

  .resp-values-grid {
    grid-template-columns: 1fr;
  }

  .resp-impact-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    order: -1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .privacy-tags,
  .privacy-cards {
    grid-template-columns: 1fr;
  }

  .resp-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 40px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-dot {
    left: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .resp-hero-images {
    flex-direction: column;
  }

  .resp-hero-images .img-circle {
    width: 100%;
    min-height: 200px;
  }

  .resp-hero-images .img-stack {
    max-width: none;
  }
}

/* =====================================================================
   Extended content sections (added for the v2 enrichment pass).
   Each block has its OWN visual identity (radius, surface, accents)
   so the page does not feel like a stack of identical cards.
   ===================================================================== */

/* ---------- Shared subtitle eyebrow used in new sections ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 6px 12px 6px 10px;
  background: rgba(12, 111, 249, 0.08);
  border: 1px solid rgba(12, 111, 249, 0.18);
  border-radius: var(--radius-pill);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(12, 111, 249, 0.18);
}

/* =================================================================
   1. COMMITMENTS — four pillar cards, with index badge & accent rail
   Used on: index.html
   ================================================================= */
.commitments-section {
  padding: 96px 0 80px;
}

.commitments-section .commitments-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.commitments-section h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 14px;
}

.commitments-section .commitments-desc {
  color: var(--palette-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

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

.commitment-card {
  position: relative;
  background: var(--palette-elevated);
  border: 1px solid var(--palette-border);
  border-radius: 22px 22px 22px 6px;
  padding: 30px 30px 28px 36px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  overflow: hidden;
}

.commitment-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-secondary) 100%);
  opacity: 0.85;
}

.commitment-card .commitment-index {
  font-family: var(--font-stack);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--palette-text-muted);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.commitment-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.commitment-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--palette-text-secondary);
}

.commitment-card:nth-child(2),
.commitment-card:nth-child(3) {
  border-radius: 6px 22px 22px 22px;
  padding: 30px 36px 28px 30px;
}

.commitment-card:nth-child(2)::before,
.commitment-card:nth-child(3)::before {
  left: auto;
  right: 0;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, var(--palette-rose-mid) 0%, var(--palette-rose-deep) 100%);
}

.commitment-card:hover {
  box-shadow: var(--shadow-card), var(--shadow-hover);
  transform: translateY(-4px);
}

/* =================================================================
   2. EFFORT SPLIT — image left + text-with-bullets right
   Used on: index.html
   ================================================================= */
.effort-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(12, 111, 249, 0.05) 0%, transparent 60%),
    var(--palette-bg-alt);
  border-top: 1px solid var(--palette-border);
  border-bottom: 1px solid var(--palette-border);
}

.effort-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.effort-visual {
  position: relative;
  border-radius: 28px 28px 8px 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 24px 56px rgba(60, 25, 40, 0.08);
  border: 1px solid var(--palette-border);
  aspect-ratio: 4 / 3;
  background: var(--palette-surface);
}

.effort-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.effort-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 8, 14, 0.18));
  pointer-events: none;
}

.effort-copy h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.05rem);
  margin: 8px 0 16px;
}

.effort-copy p {
  color: var(--palette-text-secondary);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.effort-bullets {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.effort-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--palette-text-primary);
  line-height: 1.55;
}

.effort-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #ffffff 0 25%, transparent 26%),
    linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  box-shadow: 0 2px 6px rgba(12, 111, 249, 0.25);
}

.effort-caption {
  margin-top: 22px;
  padding: 14px 18px;
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 12px 12px 0;
  color: var(--palette-text-secondary);
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
}

/* =================================================================
   3. PROMISE BANNER — closing quote with soft frame
   Used on: index.html
   ================================================================= */
.promise-banner {
  padding: 96px 0;
}

.promise-card {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 56px 44px;
  border-radius: 32px;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(12, 111, 249, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(196, 77, 109, 0.10) 0%, transparent 60%),
    var(--palette-elevated);
  border: 1px solid var(--palette-border);
  box-shadow: var(--shadow-card), 0 24px 60px rgba(20, 10, 20, 0.06);
  text-align: center;
}

.promise-card .promise-label {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(12, 111, 249, 0.08);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.promise-card blockquote {
  font-family: var(--font-stack);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.2px;
  color: var(--palette-text-primary);
  margin: 0 0 18px;
}

.promise-card .promise-attrib {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--palette-text-muted);
}

.promise-card::before,
.promise-card::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--accent);
  opacity: 0.45;
  border-radius: 2px;
}

.promise-card::before {
  top: 18px;
  left: 18px;
  border-right: none;
  border-bottom: none;
}

.promise-card::after {
  bottom: 18px;
  right: 18px;
  border-left: none;
  border-top: none;
}

/* =================================================================
   4. TECH SELECTION — text-heavy with abstract panel
   Used on: technology.html
   ================================================================= */
.tech-select {
  padding: 88px 0 56px;
}

.tech-select-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: stretch;
}

.tech-select-copy h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  margin: 6px 0 18px;
}

.tech-select-copy p {
  color: var(--palette-text-secondary);
  line-height: 1.75;
  font-size: 15.5px;
  margin-bottom: 14px;
}

.tech-select-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--palette-border);
  background:
    linear-gradient(135deg, rgba(12, 111, 249, 0.10) 0%, transparent 55%),
    linear-gradient(315deg, rgba(196, 77, 109, 0.12) 0%, transparent 50%),
    var(--palette-elevated);
  box-shadow: var(--shadow-card);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.tech-select-panel-figure {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tech-select-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  max-height: 280px;
}

.tech-select-panel .panel-caption {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--palette-border);
  color: var(--palette-text-secondary);
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.55;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* =================================================================
   5. HONEST PRACTICES — three small cards with "Practice 0X" tags
   Used on: technology.html
   ================================================================= */
.honest-section {
  padding: 64px 0 88px;
}

.honest-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.honest-head h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  margin: 6px 0 14px;
}

.honest-head p {
  color: var(--palette-text-secondary);
  line-height: 1.7;
  font-size: 15.5px;
}

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

.honest-card {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: 18px;
  background: var(--palette-elevated);
  border: 1px solid var(--palette-border);
  box-shadow: var(--shadow-0);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.honest-card .practice-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--palette-rose-deep);
  background: rgba(196, 77, 109, 0.12);
  padding: 5px 10px 5px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.honest-card .practice-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--palette-rose-mid);
}

.honest-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.honest-card p {
  font-size: 14.5px;
  color: var(--palette-text-secondary);
  line-height: 1.7;
}

.honest-card:hover {
  box-shadow: var(--shadow-card), var(--shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(12, 111, 249, 0.22);
}

/* =================================================================
   6. TECH CLOSE BANNER — soft accent quote, narrower than promise
   Used on: technology.html
   ================================================================= */
.tech-close {
  padding: 0 0 96px;
}

.tech-close-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 44px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(12, 111, 249, 0.06) 0%, rgba(196, 77, 109, 0.06) 100%);
  border: 1px dashed rgba(12, 111, 249, 0.3);
  text-align: center;
}

.tech-close-card .close-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 14px;
}

.tech-close-card p {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--palette-text-primary);
  margin: 0;
}

/* =================================================================
   7. VOICES — testimonial cards with large quote mark
   Used on: responsibility.html
   ================================================================= */
.voices-section {
  padding: 80px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.45) 100%);
}

.voices-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.voices-head h2 {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  margin: 6px 0 14px;
}

.voices-head p {
  color: var(--palette-text-secondary);
  line-height: 1.7;
  font-size: 15.5px;
}

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

.voice-card {
  position: relative;
  padding: 36px 28px 26px;
  border-radius: 20px;
  background: var(--palette-elevated);
  border: 1px solid var(--palette-border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.voice-card::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 22px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 70px;
  line-height: 1;
  color: rgba(12, 111, 249, 0.18);
  pointer-events: none;
}

.voice-card .voice-quote {
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  color: var(--palette-text-primary);
  margin: 0;
  position: relative;
  z-index: 1;
}

.voice-card .voice-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--palette-border-strong);
}

.voice-card .voice-attrib {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--palette-text-primary);
  letter-spacing: -0.1px;
}

.voice-card .voice-role {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--palette-text-muted);
  margin-top: 4px;
  text-transform: uppercase;
}

/* second card gets a tinted surface for visual variation */
.voice-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(12, 111, 249, 0.05) 0%, transparent 60%),
    var(--palette-elevated);
  border-radius: 20px 20px 6px 20px;
}

.voice-card:nth-child(3) {
  border-radius: 6px 20px 20px 20px;
}

/* =================================================================
   8. REPORT STEPS — four numbered steps with connector line
   Used on: responsibility.html
   ================================================================= */
.report-section {
  padding: 80px 0;
}

.report-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.report-head h2 {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  margin: 6px 0 14px;
}

.report-head p {
  color: var(--palette-text-secondary);
  line-height: 1.7;
  font-size: 15.5px;
}

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

.report-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(12, 111, 249, 0.25) 0,
    rgba(12, 111, 249, 0.25) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}

.report-step {
  position: relative;
  z-index: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.report-step .step-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--palette-elevated);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
  box-shadow: 0 6px 18px rgba(12, 111, 249, 0.18);
  margin-bottom: 18px;
}

.report-step h3 {
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.report-step p {
  font-size: 14px;
  color: var(--palette-text-secondary);
  line-height: 1.65;
}

/* =================================================================
   9. CONSTANTS — three pillar cards used on development.html
   ================================================================= */
.constants-section {
  padding: 72px 0;
  background: var(--palette-bg-alt);
  border-top: 1px solid var(--palette-border);
  border-bottom: 1px solid var(--palette-border);
}

.constants-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.constants-head h2 {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  margin: 6px 0 14px;
}

.constants-head p {
  color: var(--palette-text-secondary);
  line-height: 1.7;
  font-size: 15.5px;
}

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

.constant-card {
  position: relative;
  padding: 30px 28px 28px;
  border-radius: 20px;
  background: var(--palette-elevated);
  border: 1px solid var(--palette-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.constant-card .constant-glyph {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(12, 111, 249, 0.12) 0%, rgba(196, 77, 109, 0.12) 100%);
  margin-bottom: 18px;
  color: var(--accent-deep);
}

.constant-card .constant-glyph svg {
  width: 22px;
  height: 22px;
}

.constant-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.constant-card p {
  font-size: 14.5px;
  color: var(--palette-text-secondary);
  line-height: 1.7;
}

.constant-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-hover);
}

.constant-card:nth-child(2) {
  border-radius: 20px 6px 20px 20px;
}

.constant-card:nth-child(3) {
  border-radius: 6px 20px 20px 20px;
}

/* =================================================================
   10. RHYTHM SPLIT — notebook-style bullets + photo
   Used on: development.html
   ================================================================= */
.rhythm-section {
  padding: 88px 0;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.rhythm-copy h2 {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  margin: 6px 0 16px;
}

.rhythm-copy p {
  color: var(--palette-text-secondary);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.rhythm-notes {
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 16px;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 27px,
      rgba(196, 77, 109, 0.18) 27px,
      rgba(196, 77, 109, 0.18) 28px
    ),
    var(--palette-elevated);
  border: 1px solid var(--palette-border);
  position: relative;
}

.rhythm-notes::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 16px;
  width: 1px;
  background: rgba(196, 77, 109, 0.3);
}

.rhythm-notes li {
  list-style: none;
  padding: 6px 0 6px 18px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--palette-text-primary);
  position: relative;
}

.rhythm-notes li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--palette-rose-mid);
  font-weight: 700;
}

.rhythm-caption {
  margin-top: 16px;
  font-style: italic;
  font-size: 13.5px;
  color: var(--palette-text-secondary);
}

.rhythm-visual {
  position: relative;
  border-radius: 28px 10px 28px 28px;
  overflow: hidden;
  border: 1px solid var(--palette-border);
  box-shadow: var(--shadow-card), 0 24px 56px rgba(60, 25, 40, 0.08);
  aspect-ratio: 4 / 3;
  background: var(--palette-surface);
}

.rhythm-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =================================================================
   11. WHY CARDS — four-up compact grid on contact.html
   ================================================================= */
.why-section {
  padding: 80px 0 56px;
}

.why-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.why-head h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin: 6px 0 14px;
}

.why-head p {
  color: var(--palette-text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 18px;
  background: var(--palette-elevated);
  border: 1px solid var(--palette-border);
  box-shadow: var(--shadow-0);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.why-card .why-mark {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px 6px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent-deep);
  background: rgba(12, 111, 249, 0.10);
  border: 1px solid rgba(12, 111, 249, 0.22);
}

.why-card .why-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: -0.15px;
}

.why-card .why-body p {
  font-size: 14px;
  color: var(--palette-text-secondary);
  line-height: 1.65;
}

.why-card:hover {
  box-shadow: var(--shadow-card), var(--shadow-hover);
  transform: translateY(-2px);
}

/* =================================================================
   12. VISIT BANNER — image + text with CTA on contact.html
   ================================================================= */
.visit-banner {
  padding: 0 0 96px;
}

.visit-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--palette-elevated);
  border: 1px solid var(--palette-border);
  box-shadow: var(--shadow-card), 0 24px 60px rgba(20, 10, 20, 0.06);
}

.visit-card .visit-copy {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-card .visit-copy h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin: 10px 0 14px;
  letter-spacing: -0.3px;
}

.visit-card .visit-copy p {
  color: var(--palette-text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.visit-card .visit-copy .btn {
  align-self: flex-start;
}

.visit-card .visit-photo {
  position: relative;
  min-height: 280px;
  background: var(--palette-surface);
}

.visit-card .visit-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-card .visit-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(12, 111, 249, 0.12) 100%);
  pointer-events: none;
}

/* =====================================================================
   Responsive rules for the new sections
   ===================================================================== */
@media (max-width: 960px) {
  .commitments-grid,
  .honest-grid,
  .voices-grid,
  .constants-grid {
    grid-template-columns: 1fr;
  }

  .commitment-card,
  .commitment-card:nth-child(2),
  .commitment-card:nth-child(3) {
    border-radius: 22px 22px 22px 6px;
    padding: 28px 28px 26px 32px;
  }

  .commitment-card:nth-child(2)::before,
  .commitment-card:nth-child(3)::before {
    left: 0;
    right: auto;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-secondary) 100%);
  }

  .effort-grid,
  .tech-select-grid,
  .rhythm-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .report-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
  }

  .report-steps::before {
    display: none;
  }

  .visit-card {
    grid-template-columns: 1fr;
  }

  .visit-card .visit-photo {
    min-height: 220px;
    order: -1;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .promise-card {
    padding: 36px 24px 32px;
  }

  .promise-card::before,
  .promise-card::after {
    width: 18px;
    height: 18px;
  }

  .effort-section,
  .commitments-section,
  .voices-section,
  .report-section,
  .constants-section,
  .rhythm-section,
  .why-section {
    padding-left: 0;
    padding-right: 0;
  }

  .visit-card .visit-copy {
    padding: 32px 24px 28px;
  }
}
