@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap');

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

.hedasara-ai-elementor-section,
.hedasara-ai-elementor-section > .elementor-container,
.hedasara-ai-elementor-column,
.hedasara-ai-elementor-widget,
.hedasara-ai-elementor-widget > .elementor-widget-container {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

:root {
  --bg: #F6F8FC;
  --surface: #FFFFFF;
  --surface-soft: #EEF4FF;
  --surface-strong: #E8EEF8;
  --ink: #101828;
  --body-text: #344054;
  --muted: #667085;
  --dark: var(--bg);
  --dark-2: var(--surface);
  --dark-3: var(--surface-strong);
  --dark-4: #D9E2F1;
  --light: var(--ink);
  --light-2: var(--body-text);
  --light-3: var(--muted);
  --white: #FFFFFF;
  --accent: #2563EB;
  --accent-teal: #0F766E;
  --accent-violet: #6D28D9;
  --accent-tint: #DBEAFE;
  --text-light: var(--body-text);
  --text-muted: var(--muted);
  --border: rgba(16,24,40,0.12);
  --border-accent: rgba(37,99,235,0.28);
  --shadow-soft: 0 16px 40px rgba(16,24,40,0.08);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --radius-lg: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body-text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ===== NAVIGATION ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  box-shadow: 0 8px 28px rgba(16,24,40,0.05);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 20px;
  color: var(--ink); letter-spacing: 0;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex; gap: 32px; align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-cta {
  background: var(--accent); color: #fff;
  border: none; padding: 9px 22px;
  border-radius: 7px; font-size: 13px; font-weight: 500;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  padding: 96px 48px 80px;
  max-width: none;
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 34%, rgba(255,255,255,0.58) 62%, rgba(255,255,255,0.18) 100%),
    url("../assets/images/hero-ai-workspace.jpg");
  background-size: cover;
  background-position: center right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 0.5px solid var(--border);
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 0.5px solid var(--border-accent);
  padding: 5px 16px; border-radius: 20px; margin-bottom: 28px;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 800; line-height: 1.07;
  letter-spacing: 0; color: var(--ink);
  margin-bottom: 22px;
  max-width: 860px;
}
.hero h1 em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 17px; font-weight: 400;
  color: var(--text-light); line-height: 1.8;
  max-width: 580px; margin-bottom: 38px;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; max-width: 860px; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--accent); color: #fff;
  border: none; padding: 13px 30px;
  border-radius: 8px; font-size: 14px; font-weight: 500;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-ghost {
  background: var(--surface); color: var(--body-text);
  border: 0.5px solid var(--border);
  padding: 13px 30px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  box-shadow: 0 8px 20px rgba(16,24,40,0.05);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

.btn-teal {
  background: var(--accent-teal); color: #fff;
  border: none; padding: 13px 30px;
  border-radius: 8px; font-size: 14px; font-weight: 500;
  transition: opacity 0.2s;
}
.btn-teal:hover { opacity: 0.9; }

/* ===== METRICS STRIP ===== */
.metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: var(--surface);
}
.metric {
  padding: 32px 48px;
  border-right: 0.5px solid var(--border);
}
.metric:last-child { border-right: none; }
.metric-val {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 700;
  color: var(--ink); letter-spacing: 0;
}
.metric-val span { color: var(--accent); }
.metric-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; font-weight: 400; }

/* ===== SECTION ===== */
.section { padding: 72px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 11px; font-weight: 500; color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700; color: var(--ink);
  letter-spacing: 0; line-height: 1.18;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 15px; color: var(--text-light);
  font-weight: 400; line-height: 1.75;
  max-width: 520px; margin-bottom: 40px;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.card {
  background: var(--surface);
  padding: 32px 26px;
  transition: background 0.2s;
}
.card:hover { background: var(--surface-soft); }

.card-icon {
  width: 72px; height: 72px; border-radius: 18px;
  background: var(--surface-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 14px;
  color: var(--accent);
  font-weight: 800;
  overflow: hidden;
  border: 0.5px solid var(--border);
  box-shadow: 0 14px 32px rgba(16,24,40,0.08);
}
.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 10px;
}
.card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-weight: 400; }

/* ===== DIGNITY BAND ===== */
.dignity-band {
  margin: 0 48px;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  border: 0.5px solid var(--border-accent);
  padding: 48px 42px;
  display: flex; align-items: flex-start; gap: 48px; flex-wrap: wrap;
  box-shadow: var(--shadow-soft);
}
.dignity-left { flex: 1; min-width: 240px; }
.dignity-right {
  flex: 2; min-width: 280px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.dignity-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border: 0.5px solid var(--border-accent);
  border-radius: 9px;
}
.dignity-pill-icon { font-size: 13px; color: var(--accent-teal); flex-shrink: 0; font-weight: 800; }
.dignity-pill span { font-size: 13px; color: var(--body-text); font-weight: 500; }

/* ===== CTA BAND ===== */
.cta-band {
  margin: 56px 48px 48px;
  padding: 52px 48px;
  background: #111827;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  box-shadow: var(--shadow-soft);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700; color: #fff;
  letter-spacing: 0; max-width: 420px; line-height: 1.28;
}
.cta-band p { font-size: 14px; color: rgba(255,255,255,0.78); margin-top: 8px; font-weight: 400; }
.btn-white {
  background: #fff; color: #111827;
  border: none; padding: 13px 30px;
  border-radius: 8px; font-size: 14px; font-weight: 500;
  white-space: nowrap; transition: opacity 0.2s;
  font-family: var(--font-body);
}
.btn-white:hover { opacity: 0.9; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 80px 48px 64px;
  border-bottom: 0.5px solid var(--border);
  background: var(--surface);
}
.page-hero.visual-hero {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center right;
}
.page-hero.digital-dignity-hero {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 36%, rgba(255,255,255,0.62) 66%, rgba(255,255,255,0.2) 100%),
    url("../assets/images/digital-dignity-review.jpg");
}
.page-hero.ai-tools-hero {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 36%, rgba(255,255,255,0.62) 66%, rgba(255,255,255,0.2) 100%),
    url("../assets/images/ai-solutioning-workbench.jpg");
}
.page-hero.about-hero {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 36%, rgba(255,255,255,0.62) 66%, rgba(255,255,255,0.2) 100%),
    url("../assets/images/hero-ai-workspace.jpg");
}
.page-hero.solutions-hero {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 36%, rgba(255,255,255,0.62) 66%, rgba(255,255,255,0.2) 100%),
    url("../assets/images/hero-ai-workspace.jpg");
}
.page-hero .hero-tag { margin-bottom: 20px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800; line-height: 1.1;
  letter-spacing: 0; color: var(--ink);
  max-width: 720px; margin-bottom: 18px;
}
.page-hero p {
  font-size: 16px; font-weight: 400;
  color: var(--text-light); line-height: 1.8;
  max-width: 600px;
}
.page-hero-actions { margin-top: 28px; }

/* ===== TWO COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.two-col-wide {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px; align-items: start;
}

/* ===== AI STUDIO PAGE ===== */
.studio-page {
  background: var(--bg);
}
.studio-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  align-items: stretch;
  background: var(--surface);
  border-bottom: 0.5px solid var(--border);
}
.studio-hero-copy {
  padding: 92px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}
.studio-hero-copy h1 {
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 22px;
}
.studio-hero-copy p {
  max-width: 620px;
  color: var(--body-text);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 34px;
}
.studio-hero-media {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.5) 22%, rgba(255,255,255,0.02) 58%),
    url("../assets/images/ai-solutioning-workbench.jpg");
  background-size: cover;
  background-position: center;
}
.studio-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #111827;
  color: #fff;
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
}
.studio-strip div {
  padding: 30px 48px;
  border-right: 0.5px solid rgba(255,255,255,0.12);
}
.studio-strip div:last-child { border-right: none; }
.studio-strip span {
  color: #5EEAD4;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}
.studio-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 6px;
}
.studio-strip p {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.6;
  max-width: 320px;
}
.studio-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}
.studio-section-head p {
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.studio-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.studio-service-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 300px;
  box-shadow: 0 12px 28px rgba(16,24,40,0.06);
}
.studio-service-card img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 18px;
  border: 0.5px solid var(--border);
  margin-bottom: 22px;
}
.studio-service-card span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.studio-service-card h2,
.studio-service-card h3 {
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.25;
  margin-bottom: 10px;
}
.studio-service-card h2 { font-size: 24px; }
.studio-service-card h3 { font-size: 17px; }
.studio-service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.service-card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 26px;
  align-items: center;
}
.service-card-large img {
  width: 150px;
  height: 150px;
  margin-bottom: 0;
}
.studio-band {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.studio-band-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
}
.studio-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.timeline-item {
  background: var(--surface-soft);
  border: 0.5px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.timeline-item span,
.engagement-num {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}
.timeline-item h3,
.engagement-grid h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 8px;
}
.timeline-item p,
.engagement-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.engagement-grid article {
  background: var(--surface);
  padding: 28px 24px;
}
.studio-deliverables {
  background: #111827;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 38px;
  box-shadow: var(--shadow-soft);
}
.studio-deliverables .section-eyebrow { color: #93C5FD; }
.studio-deliverables .section-title {
  color: #fff;
  margin-bottom: 0;
}
.deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.deliverable-list div {
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 20px;
}
.deliverable-list strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 8px;
}
.deliverable-list p {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.6;
}

/* ===== LEGACY AI SOLUTIONING COMPONENTS ===== */
.solution-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}
.solution-feature-copy {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.solution-feature-copy p {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 14px;
}
.solution-feature-media {
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.5px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: var(--surface-soft);
}
.solution-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
}
.signal-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
}
.signal-item span {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
}
.signal-item strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  margin-bottom: 3px;
}
.signal-item p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.tool-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  min-height: 168px;
  box-shadow: 0 10px 24px rgba(16,24,40,0.04);
}
.tool-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}
.tool-name {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tool-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.track-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(16,24,40,0.05);
}
.track-image {
  height: 150px;
  background: var(--surface-soft);
  border-bottom: 0.5px solid var(--border);
}
.track-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.track-card .track-kicker {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 22px 22px 8px;
}
.track-card h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.35;
  margin: 0 22px 10px;
}
.track-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0 22px 18px;
}
.track-card ul {
  list-style: none;
  padding: 0 22px 22px;
}
.track-card li {
  color: var(--body-text);
  font-size: 12px;
  padding: 7px 0;
  border-top: 0.5px solid var(--border);
}
.track-card li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent-teal);
  vertical-align: 1px;
}

.delivery-panel {
  background: #111827;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 42px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  box-shadow: var(--shadow-soft);
}
.delivery-panel .section-title { color: #fff; margin-bottom: 0; }
.delivery-panel .section-eyebrow { color: #93C5FD; }
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.delivery-item {
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 20px;
}
.delivery-item span {
  color: #5EEAD4;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  display: block;
  margin-bottom: 12px;
}
.delivery-item h3 {
  font-family: var(--font-display);
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
}
.delivery-item p {
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  line-height: 1.6;
}

/* ===== MISSION & VISION ===== */
.mission-intro { padding-bottom: 4px; }

.statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.statement-card {
  background: var(--dark-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
}
.statement-card-accent { border-color: var(--border-accent); }
.statement-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 16px;
}
.statement-card p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 14px;
}
.statement-card p:last-child { margin-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.value-card {
  background: var(--dark-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  min-height: 184px;
  transition: border-color 0.2s, transform 0.2s;
}
.value-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-1px);
}
.value-kicker {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-teal);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.68;
  font-weight: 400;
}

.short-version {
  background: var(--surface-soft);
  border: 0.5px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
  align-items: start;
}
.short-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.short-copy-grid h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.short-copy-grid p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 400;
}

.caveat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.caveat-item {
  background: var(--surface);
  padding: 26px 24px;
}
.caveat-item h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.caveat-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

/* ===== PRINCIPLE CARDS ===== */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.principle-card {
  background: var(--dark-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s;
  box-shadow: 0 10px 24px rgba(16,24,40,0.04);
}
.principle-card:hover { border-color: var(--border-accent); }
.principle-num {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.principle-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 10px;
}
.principle-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 400; }

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--dark-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: border-color 0.2s;
  box-shadow: 0 10px 24px rgba(16,24,40,0.04);
}
.product-card:hover { border-color: var(--border-accent); }
.product-visual {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  background: var(--surface-soft);
  margin-bottom: 20px;
  box-shadow: 0 12px 28px rgba(16,24,40,0.06);
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-badge {
  display: inline-block;
  font-size: 10px; font-weight: 500;
  color: var(--accent); letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-tint);
  border: 0.5px solid var(--border-accent);
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 14px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--ink); margin-bottom: 6px; letter-spacing: 0;
}
.product-subtitle { font-size: 12px; color: var(--accent-teal); margin-bottom: 14px; font-weight: 400; }
.product-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 400; margin-bottom: 18px; }
.product-features { list-style: none; }
.product-features li {
  font-size: 12px; color: var(--muted);
  padding: 5px 0; border-top: 0.5px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.product-features li::before { content: '→'; color: var(--accent); font-size: 11px; }

/* ===== INDUSTRY GRID ===== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.industry-card {
  background: var(--surface);
  padding: 24px 20px;
  transition: background 0.2s;
}
.industry-card:hover { background: var(--surface-soft); }
.industry-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  margin-bottom: 14px;
  background: var(--surface-soft);
}
.industry-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.industry-name {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 8px;
}
.industry-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; font-weight: 400; }

/* ===== VALUES ===== */
.value-list { display: flex; flex-direction: column; gap: 1px; }
.value-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0;
  border-bottom: 0.5px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  color: var(--accent); min-width: 28px; padding-top: 2px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px;
}
.value-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 400; }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.team-card {
  background: var(--dark-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(16,24,40,0.04);
}
.team-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent-tint);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px; color: var(--accent);
}
.team-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--accent-teal); margin-bottom: 10px; }
.team-bio { font-size: 12px; color: var(--text-muted); line-height: 1.65; }

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--dark-2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.stat-item {
  padding: 28px 24px; text-align: center;
  border-right: 0.5px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700; color: var(--ink); letter-spacing: 0;
}
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-block {}
.contact-block-label {
  font-size: 11px; font-weight: 500; color: var(--accent);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px;
}
.contact-block-val { font-size: 14px; color: var(--text-light); font-weight: 400; line-height: 1.7; }
.contact-block-val a { color: var(--accent-teal); }

.contact-form {
  background: var(--dark-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.form-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 0.5px solid var(--border);
  border-radius: 7px; color: var(--ink);
  padding: 11px 14px; font-size: 14px;
  font-family: var(--font-body); font-weight: 400;
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--dark-3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ===== FOOTER ===== */
footer {
  padding: 36px 48px;
  border-top: 0.5px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--muted); }
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ===== DIVIDER ===== */
.divider { border: none; border-top: 0.5px solid var(--border); margin: 48px 0; }

/* ===== PROSE ===== */
.prose h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600; color: var(--ink);
  margin: 28px 0 10px; letter-spacing: 0;
}
.prose p { font-size: 15px; color: var(--text-light); line-height: 1.8; font-weight: 400; margin-bottom: 16px; }
.prose ul { list-style: none; margin: 16px 0; }
.prose ul li {
  font-size: 14px; color: var(--text-muted);
  padding: 6px 0; display: flex; gap: 10px; align-items: flex-start;
  border-bottom: 0.5px solid var(--border);
}
.prose ul li::before { content: '→'; color: var(--accent); font-size: 12px; padding-top: 3px; flex-shrink: 0; }

/* ===== PROCESS STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.step { background: var(--surface); padding: 28px 22px; }
.step-num {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: rgba(37,99,235,0.28); margin-bottom: 12px;
}
.step-title { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.step-desc { font-size: 12px; color: var(--text-muted); line-height: 1.65; font-weight: 400; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark-2); padding: 20px 24px; border-bottom: 0.5px solid var(--border); gap: 16px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero {
    min-height: 560px;
    padding: 60px 24px 48px;
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 54%, rgba(255,255,255,0.72) 100%),
      url("../assets/images/hero-ai-workspace.jpg");
    background-position: center right;
  }
  .hero h1 { font-size: 38px; }
  .studio-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .studio-hero-copy {
    padding: 60px 24px 34px;
  }
  .studio-hero-copy h1 {
    font-size: 38px;
  }
  .studio-hero-copy p {
    font-size: 16px;
  }
  .studio-hero-media {
    min-height: 300px;
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.08) 100%),
      url("../assets/images/ai-solutioning-workbench.jpg");
  }
  .studio-strip,
  .studio-section-head,
  .studio-service-grid,
  .studio-band-layout,
  .studio-timeline,
  .engagement-grid,
  .studio-deliverables,
  .deliverable-list {
    grid-template-columns: 1fr;
  }
  .studio-strip div {
    padding: 24px;
    border-right: none;
    border-bottom: 0.5px solid rgba(255,255,255,0.12);
  }
  .studio-strip div:last-child { border-bottom: none; }
  .studio-section-head {
    gap: 8px;
    align-items: start;
  }
  .service-card-large {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .service-card-large img {
    width: 96px;
    height: 96px;
  }
  .studio-deliverables {
    padding: 30px 24px;
  }
  .page-hero { padding: 60px 24px 48px; }
  .page-hero.visual-hero {
    min-height: 400px;
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 58%, rgba(255,255,255,0.76) 100%),
      url("../assets/images/digital-dignity-review.jpg");
    background-position: center right;
  }
  .page-hero.ai-tools-hero {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 58%, rgba(255,255,255,0.78) 100%),
      url("../assets/images/ai-solutioning-workbench.jpg");
  }
  .page-hero.digital-dignity-hero {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 58%, rgba(255,255,255,0.78) 100%),
      url("../assets/images/digital-dignity-review.jpg");
  }
  .page-hero.about-hero,
  .page-hero.solutions-hero {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 58%, rgba(255,255,255,0.78) 100%),
      url("../assets/images/hero-ai-workspace.jpg");
  }
  .page-hero h1 { font-size: 36px; }
  .section { padding: 48px 24px; }
  .section-title { font-size: 28px; }
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: none; border-bottom: 0.5px solid var(--border); padding: 24px; }
  .metric:last-child { border-bottom: none; }
  .dignity-band { margin: 0 24px; padding: 32px 24px; }
  .dignity-right { grid-template-columns: 1fr; }
  .cta-band { margin: 40px 24px; padding: 36px 28px; }
  .cta-band h2 { font-size: 22px; }
  .two-col, .two-col-wide, .contact-grid { grid-template-columns: 1fr; }
  .solution-feature, .tool-grid, .track-grid, .delivery-panel, .delivery-grid { grid-template-columns: 1fr; }
  .solution-feature-copy, .delivery-panel { padding: 28px 24px; }
  .solution-feature-media { min-height: 280px; }
  .track-image { height: 180px; }
  .statement-grid, .values-grid, .short-version, .short-copy-grid, .caveat-list { grid-template-columns: 1fr; }
  .short-version { padding: 30px 24px; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  footer { padding: 28px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
}
