/* ── Modular Openings — Main Stylesheet ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --white:    #FFFFFF;
  --off:      #F8FAFC;
  --off2:     #F1F5F9;
  --dark:     #0F172A;
  --dark2:    #1E293B;
  --dark3:    #334155;
  --blue:     #2563EB;
  --blue2:    #3B82F6;
  --blue-dim: rgba(37,99,235,0.08);
  --blue-bd:  rgba(37,99,235,0.18);
  --text:     #475569;
  --head:     #0F172A;
  --muted:    #94A3B8;
  --border:   #E2E8F0;
  --border2:  #CBD5E1;
  --shadow:   0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow2:  0 4px 6px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.1);
  --green:    #16A34A;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }

/* ── NAV ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.07); }

.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-name { display: block; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800; letter-spacing: -0.01em; color: var(--dark); line-height: 1; }
.logo-name em { color: var(--blue); font-style: normal; }
.logo-sub { display: block; font-size: 10px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }

/* Primary Nav */
#primary-nav { display: flex; align-items: center; gap: 4px; }
#primary-nav > li { list-style: none; position: relative; }
#primary-nav > li > a,
#primary-nav > li > span {
  color: var(--dark3); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  display: block; cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
#primary-nav > li > a:hover,
#primary-nav > li > a.active,
#primary-nav > li:hover > span { color: var(--blue); background: var(--blue-dim); }

/* Dropdown */
#primary-nav .has-dropdown > span { display: flex; align-items: center; gap: 4px; }
#primary-nav .has-dropdown > span::after { content: '▾'; font-size: 11px; color: var(--muted); }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px; min-width: 220px;
  box-shadow: var(--shadow2); z-index: 300;
}
.has-dropdown:hover .dropdown-menu { display: flex; flex-direction: column; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
  color: var(--dark3); text-decoration: none; font-size: 13.5px; font-weight: 500;
  padding: 9px 12px; border-radius: 6px; display: block;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--off2); color: var(--blue); }

.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  border-radius: 7px !important; padding: 9px 20px !important;
  font-weight: 600 !important; margin-left: 8px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue2) !important; }

/* Mobile toggle */
.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: var(--dark);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--blue); color: var(--white);
  border: none; border-radius: 7px; padding: 13px 28px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-2px); color: var(--white); }
.btn-ghost {
  display: inline-block; background: transparent; color: var(--head);
  border: 1.5px solid var(--border2); border-radius: 7px; padding: 13px 28px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }
.btn-ghost-white {
  display: inline-block; background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 7px; padding: 13px 28px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); color: var(--white); }
.btn-sm { padding: 9px 20px !important; font-size: 13.5px !important; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 120px 48px 72px;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.page-hero-glow {
  position: absolute; top: -80px; right: -60px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { font-size: 13px; color: #64748B; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: #64748B; text-decoration: none; }
.breadcrumb a:hover { color: #94A3B8; }
.breadcrumb .sep { color: #334155; }
.page-label {
  display: inline-block; background: rgba(37,99,235,0.15); color: #93C5FD;
  border: 1px solid rgba(37,99,235,0.3); border-radius: 100px;
  padding: 4px 14px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.page-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px); font-weight: 800;
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 18px;
}
.page-h1 em { font-style: normal; color: #60A5FA; }
.page-desc { font-size: 17px; color: #94A3B8; line-height: 1.7; max-width: 620px; margin-bottom: 28px; }
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero-stats {
  display: flex; gap: 48px; margin-top: 48px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.07); flex-wrap: wrap;
}
.phs-num { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.phs-num b { color: #60A5FA; }
.phs-lbl { font-size: 12px; color: #64748B; font-weight: 500; }

/* ── LAYOUT ── */
.sw { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-tag {
  display: inline-block; background: var(--blue-dim); color: var(--blue);
  border: 1px solid var(--blue-bd); border-radius: 100px;
  padding: 4px 14px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.section-h2 {
  font-family: 'Outfit', sans-serif; font-size: clamp(26px,3vw,42px);
  font-weight: 800; color: var(--head); letter-spacing: -0.025em;
  line-height: 1.1; margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--text); max-width: 560px; line-height: 1.7; }
.dark-label {
  display: inline-block; background: rgba(37,99,235,0.2); color: #93C5FD;
  border: 1px solid rgba(37,99,235,0.3); border-radius: 100px;
  padding: 4px 14px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.dark-h2 { font-family: 'Outfit', sans-serif; font-size: clamp(26px,3vw,42px); font-weight: 800; color: var(--white); letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 14px; }
.dark-sub { font-size: 16px; color: #94A3B8; line-height: 1.7; max-width: 520px; margin: 0 auto; }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid2-cs { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.card:hover { box-shadow: var(--shadow2); transform: translateY(-4px); border-color: var(--blue-bd); }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.card:hover::before { transform: scaleX(1); }
.card-tag { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.card-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: var(--head); margin-bottom: 9px; }
.card-desc { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 14px; }
.card-link { font-size: 13.5px; font-weight: 600; color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.card:hover .card-link { gap: 8px; }

/* Checklist */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); line-height: 1.5; }
.checklist li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue-dim); border: 1.5px solid var(--blue);
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l4 4 6-6' stroke='%232563EB' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* Info box */
.info-box { background: var(--off2); border-radius: 12px; padding: 28px; border: 1px solid var(--border); }
.info-row { display: flex; justify-content: space-between; font-size: 14px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--text); }
.info-val { color: var(--head); font-weight: 600; }
.info-val-green { color: var(--green); font-weight: 700; }

/* Forms */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-label { font-size: 11px; font-weight: 700; color: var(--dark3); letter-spacing: 0.06em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  background: var(--white); border: 1.5px solid var(--border2);
  border-radius: 7px; color: var(--head);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  padding: 11px 14px; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.55; }

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th { background: var(--off2); color: var(--head); font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; padding: 12px 16px; text-align: left; border-bottom: 2px solid var(--border2); }
.spec-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: var(--off); }
.spec-badge { display: inline-block; background: var(--blue-dim); color: var(--blue); border: 1px solid var(--blue-bd); border-radius: 4px; font-size: 11px; font-weight: 600; padding: 2px 8px; }

/* Metrics */
.metrics-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); }
.metric-cell { background: rgba(255,255,255,0.03); padding: 36px 28px; text-align: center; transition: background 0.2s; }
.metric-cell:hover { background: rgba(37,99,235,0.1); }
.metric-num { font-family: 'Outfit', sans-serif; font-size: clamp(28px,3vw,44px); font-weight: 900; color: var(--white); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.metric-num b { color: #60A5FA; }
.metric-lbl { font-size: 11px; color: #64748B; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.lm-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lm { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.lm:hover { box-shadow: var(--shadow2); transform: translateY(-3px); }
.lm-num { font-family: 'Outfit', sans-serif; font-size: 44px; font-weight: 900; color: var(--blue); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.lm-lbl { font-size: 13px; color: var(--text); font-weight: 500; }

/* Case study cards */
.cs-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; display: block; text-decoration: none; }
.cs-card:hover { box-shadow: var(--shadow2); transform: translateY(-4px); }
.cs-top { background: var(--dark2); padding: 28px; position: relative; overflow: hidden; }
.cs-glow { position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 65%); pointer-events: none; }
.cs-logo { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cs-ind { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #93C5FD; background: rgba(37,99,235,0.2); border: 1px solid rgba(37,99,235,0.3); border-radius: 4px; padding: 2px 9px; }
.cs-loc { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #4ADE80; background: rgba(22,163,74,0.15); border: 1px solid rgba(22,163,74,0.3); border-radius: 4px; padding: 2px 9px; margin-left: 6px; }
.cs-metrics { display: flex; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; margin-top: 20px; }
.cs-metric { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
.cs-metric:last-child { border-right: none; }
.cs-mnum { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 3px; }
.cs-mlbl { font-size: 10px; color: #64748B; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.cs-body { padding: 24px; }
.cs-body p { font-size: 13.5px; color: var(--text); line-height: 1.6; margin-bottom: 14px; }
.cs-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.cs-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); background: var(--off2); border: 1px solid var(--border); border-radius: 4px; padding: 2px 8px; }
.cs-link { font-size: 13.5px; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.cs-card:hover .cs-link { gap: 8px; }

/* Team */
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.team-card:hover { box-shadow: var(--shadow2); transform: translateY(-3px); }
.team-av { width: 76px; height: 76px; border-radius: 50%; background: var(--blue-dim); border: 2px solid var(--blue-bd); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--blue); }
.team-name { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: var(--head); margin-bottom: 4px; }
.team-role { font-size: 12px; font-weight: 600; color: var(--blue); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
.team-bio { font-size: 13.5px; color: var(--text); line-height: 1.6; }

/* Value cards */
.val-card { padding: 28px; background: var(--off); border: 1px solid var(--border); border-radius: 12px; }
.val-num { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.val-name { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: var(--head); margin-bottom: 8px; }
.val-desc { font-size: 14px; color: var(--text); line-height: 1.65; }

/* Process steps */
.proc-step { display: grid; grid-template-columns: 72px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.proc-step:last-child { border-bottom: none; }
.proc-circle { width: 52px; height: 52px; border-radius: 50%; background: var(--blue-dim); border: 2px solid var(--blue); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 800; color: var(--blue); flex-shrink: 0; }
.proc-name { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 700; color: var(--head); margin-bottom: 6px; }
.proc-desc { font-size: 14px; color: var(--text); line-height: 1.65; }

/* Quote */
.quote-block { background: var(--dark); border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; padding: 32px 36px; }
.quote-text { font-family: 'Outfit', sans-serif; font-size: clamp(17px,2vw,22px); font-weight: 600; color: var(--white); line-height: 1.5; font-style: italic; margin-bottom: 18px; }
.quote-attr { display: flex; align-items: center; gap: 14px; }
.quote-av { width: 42px; height: 42px; border-radius: 50%; background: rgba(37,99,235,0.2); border: 1.5px solid rgba(37,99,235,0.4); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800; color: #93C5FD; flex-shrink: 0; }
.quote-name { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); }
.quote-title { font-size: 12px; color: #64748B; margin-top: 2px; }

/* CTA Section */
.cta-section { background: var(--dark); padding: 80px 48px; text-align: center; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* Trust bar */
.trust-bar { background: var(--off2); border-bottom: 1px solid var(--border); padding: 18px 48px; overflow: hidden; }
.trust-inner { display: flex; align-items: center; gap: 40px; }
.trust-label { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.trust-logos { display: flex; gap: 48px; animation: ticker 28s linear infinite; flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-logo-item { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; color: #CBD5E1; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }

/* Footer */
#site-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 48px 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 240px 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-desc { font-size: 13.5px; color: #64748B; line-height: 1.7; margin-top: 14px; }
.footer-col-title { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 13.5px; color: #64748B; text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #475569; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── HOMEPAGE HERO ── */
#hero { position: relative; min-height: 100vh; background: var(--dark); display: flex; flex-direction: column; justify-content: center; padding: 130px 48px 100px; overflow: hidden; }
.hero-glow { position: absolute; top: -80px; right: -60px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 65%); pointer-events: none; }
.hero-glow2 { position: absolute; bottom: -200px; left: -100px; width: 450px; height: 450px; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 65%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 440px; gap: 72px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3); border-radius: 100px; padding: 5px 14px; font-size: 12px; font-weight: 500; color: #93C5FD; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 28px; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: #60A5FA; animation: hpulse 2s ease-in-out infinite; }
@keyframes hpulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-h1 { font-family: 'Outfit', sans-serif; font-size: clamp(42px,5vw,70px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--white); margin-bottom: 22px; }
.hero-h1 em { font-style: normal; color: #60A5FA; }
.hero-desc { font-size: 17px; color: #94A3B8; line-height: 1.7; max-width: 500px; margin-bottom: 36px; }
.hero-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.hero-cat { font-size: 13px; font-weight: 500; border: 1px solid rgba(255,255,255,0.12); border-radius: 5px; padding: 5px 12px; color: #CBD5E1; cursor: default; transition: border-color 0.2s, color 0.2s; }
.hero-cat:hover { border-color: rgba(59,130,246,0.5); color: var(--white); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero spec card */
.hero-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.3); }
.hcard-top { background: var(--off); border-bottom: 1px solid var(--border); padding: 12px 18px; display: flex; align-items: center; gap: 8px; }
.hcard-dot { width: 9px; height: 9px; border-radius: 50%; }
.hcard-title { font-size: 12px; color: var(--muted); font-weight: 500; margin-left: 6px; letter-spacing: 0.03em; }
.hcard-body { padding: 22px; }
.hcard-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.hcard-row:last-of-type { border-bottom: none; }
.hcard-lbl { color: var(--muted); font-size: 12.5px; font-weight: 500; }
.hcard-val { color: var(--head); font-weight: 600; font-size: 13px; }
.hcard-badge { background: var(--blue-dim); color: var(--blue); border: 1px solid var(--blue-bd); border-radius: 4px; font-size: 11px; font-weight: 600; padding: 2px 9px; }
.hcard-active { color: #16A34A; font-size: 12px; display: flex; align-items: center; gap: 5px; font-weight: 600; }
.hcard-active::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #22C55E; display: inline-block; }
.hcard-chart { margin-top: 16px; padding: 14px; background: var(--off); border-radius: 7px; border: 1px solid var(--border); }
.chart-ttl { font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.brow { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.bnm { font-size: 11.5px; color: var(--text); width: 80px; text-align: right; flex-shrink: 0; }
.btrack { flex: 1; height: 5px; background: var(--border2); border-radius: 10px; overflow: hidden; }
.bfill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--blue), var(--blue2)); }
.bpct { font-size: 11px; color: var(--muted); width: 32px; text-align: right; font-weight: 500; }

.hero-stats { max-width: 1200px; margin: 72px auto 0; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,0.08); padding-top: 56px; }
.hstat { padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.08); }
.hstat:first-child { padding-left: 0; }
.hstat:last-child { border-right: none; }
.hstat-num { font-family: 'Outfit', sans-serif; font-size: 40px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -0.02em; margin-bottom: 6px; }
.hstat-num b { color: #60A5FA; }
.hstat-lbl { font-size: 13px; color: #64748B; font-weight: 500; }

/* Program cards grid */
.programs-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.prog-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s; position: relative; overflow: hidden; }
.prog-card:hover { box-shadow: var(--shadow2); transform: translateY(-4px); border-color: var(--blue-bd); }
.prog-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--blue2)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.prog-card:hover::before { transform: scaleX(1); }
.prog-num { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.prog-ico { width: 48px; height: 48px; margin-bottom: 18px; }
.prog-name { font-family: 'Outfit', sans-serif; font-size: 19px; font-weight: 700; color: var(--head); margin-bottom: 10px; }
.prog-desc { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 18px; }
.prog-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.prog-list li { font-size: 13.5px; color: var(--text); display: flex; align-items: flex-start; gap: 9px; line-height: 1.4; }
.prog-list li::before { content: ''; width: 16px; height: 16px; background: var(--blue-dim); border: 1.5px solid var(--blue); border-radius: 50%; flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l3 3 5-5' stroke='%232563EB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* How it works */
.hiw-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.hiw-steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, var(--border2), var(--blue), var(--border2), transparent); z-index: 0; }
.hiw-step { position: relative; z-index: 1; padding: 0 16px; text-align: center; }
.step-circle { width: 72px; height: 72px; border-radius: 50%; background: var(--white); border: 2px solid var(--border2); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: var(--blue); box-shadow: var(--shadow); transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.hiw-step:hover .step-circle { border-color: var(--blue); box-shadow: 0 0 0 6px var(--blue-dim); transform: scale(1.08); }
.step-name { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: var(--head); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text); line-height: 1.6; }

/* Industry cards */
.ind-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px; transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s; }
.ind-card:hover { box-shadow: var(--shadow2); transform: translateY(-4px); border-color: var(--blue-bd); }
.ind-icon-wrap { width: 48px; height: 48px; border-radius: 10px; background: var(--blue-dim); border: 1px solid var(--blue-bd); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.ind-name { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: var(--head); margin-bottom: 10px; }
.ind-desc { font-size: 13.5px; color: var(--text); line-height: 1.65; margin-bottom: 20px; }
.ind-link { font-size: 13.5px; font-weight: 600; color: var(--blue); text-decoration: none; display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.ind-card:hover .ind-link { gap: 8px; }

/* Homepage metrics dark */
.hmetrics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; }
.hmetric { background: rgba(255,255,255,0.03); padding: 40px 32px; text-align: center; transition: background 0.2s; }
.hmetric:hover { background: rgba(37,99,235,0.1); }
.hmetric-num { font-family: 'Outfit', sans-serif; font-size: clamp(32px,3.5vw,52px); font-weight: 900; color: var(--white); letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px; }
.hmetric-num b { color: #60A5FA; }
.hmetric-desc { font-size: 12px; color: #64748B; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* Specialty dark section */
.spec-dark-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.spec-dark-panel { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 28px; }
.sdp-head { font-size: 11px; font-weight: 600; color: #64748B; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sdp-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13.5px; }
.sdp-row:last-child { border-bottom: none; }
.sdp-lbl { color: #64748B; font-size: 12.5px; }
.sdp-val { color: var(--white); font-weight: 600; }
.sdp-tag { background: rgba(37,99,235,0.15); color: #93C5FD; border-radius: 4px; font-size: 11px; font-weight: 600; padding: 2px 8px; }

/* AI Spec Tool */
.spec-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.spec-form-panel { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 36px; box-shadow: var(--shadow); }
.cat-checks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.cat-check-label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 13px; color: var(--text); background: var(--off2); border: 1.5px solid var(--border); border-radius: 5px; padding: 5px 10px; transition: border-color 0.2s; }
.cat-check-label:hover { border-color: var(--blue); }
.gen-btn { width: 100%; background: var(--blue); color: var(--white); border: none; border-radius: 7px; padding: 14px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; margin-top: 20px; transition: background 0.2s; }
.gen-btn:hover { background: var(--blue2); }
.ai-panel { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.ai-panel-head { background: var(--dark); padding: 14px 20px; display: flex; align-items: center; gap: 10px; }
.ai-panel-badge { background: var(--blue); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; padding: 2px 8px; border-radius: 4px; text-transform: uppercase; }
.ai-panel-title { font-size: 12px; color: #94A3B8; font-weight: 500; }
.ai-chat { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 14px; min-height: 340px; max-height: 420px; }
.msg { font-size: 13.5px; line-height: 1.6; padding: 12px 15px; border-radius: 8px; }
.msg-ai { background: var(--off); border: 1px solid var(--border); border-radius: 4px 10px 10px 10px; color: var(--text); }
.msg-user { background: var(--blue-dim); border: 1px solid var(--blue-bd); border-radius: 10px 4px 10px 10px; color: var(--head); align-self: flex-end; max-width: 92%; }
.msg-lbl { font-size: 11px; font-weight: 700; color: var(--muted); margin-bottom: 5px; letter-spacing: 0.04em; text-transform: uppercase; }
.thinking-row { display: flex; gap: 4px; padding: 14px 16px; align-items: center; }
.tdot { width: 7px; height: 7px; border-radius: 50%; background: var(--border2); animation: tpulse 1.2s ease-in-out infinite; }
.tdot:nth-child(2) { animation-delay: 0.2s; }
.tdot:nth-child(3) { animation-delay: 0.4s; }
@keyframes tpulse { 0%,80%,100%{opacity:0.3;transform:scale(0.8)} 40%{opacity:1;transform:scale(1)} }
.ai-footer { padding: 14px 16px; border-top: 1px solid var(--border); display: flex; gap: 10px; background: var(--off); }
.ai-input-box { flex: 1; background: var(--white); border: 1.5px solid var(--border2); border-radius: 6px; color: var(--head); font-family: 'DM Sans', sans-serif; font-size: 13.5px; padding: 9px 14px; outline: none; transition: border-color 0.2s; }
.ai-input-box:focus { border-color: var(--blue); }
.ai-send-btn { background: var(--blue); border: none; border-radius: 6px; color: var(--white); cursor: pointer; padding: 9px 18px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; transition: background 0.2s; flex-shrink: 0; }
.ai-send-btn:hover { background: var(--blue2); }
.ai-send-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* Contact info items */
.contact-info-item { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--off2); border: 1px solid var(--border); border-radius: 9px; text-decoration: none; transition: border-color 0.2s; margin-bottom: 12px; }
.contact-info-item:hover { border-color: var(--blue-bd); }
.cii-icon { width: 38px; height: 38px; border-radius: 8px; background: var(--blue-dim); border: 1px solid var(--blue-bd); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cii-lbl { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.cii-val { display: block; font-size: 14px; color: var(--head); font-weight: 500; margin-top: 2px; }

/* WP specific overrides */
.wp-block-image img { border-radius: 8px; }
.aligncenter { margin: 0 auto; }
.site-main { padding-top: 70px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  #site-header { padding: 0 24px; }
  #primary-nav { display: none; }
  .menu-toggle { display: flex; }
  #primary-nav.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; z-index: 199; }
  .page-hero, .cta-section, #site-footer { padding-left: 24px; padding-right: 24px; }
  .sw { padding: 0 24px; }
  .hero-inner, .grid2, .spec-layout, .spec-dark-inner { grid-template-columns: 1fr; }
  .hero-card, .spec-dark-panel { display: none; }
  .hero-stats, .programs-grid, .hiw-steps { grid-template-columns: 1fr 1fr; }
  .hiw-steps::before { display: none; }
  .grid3, .lm-row { grid-template-columns: 1fr 1fr; }
  .grid4, .hmetrics-grid, .metrics-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .form-grid2 { grid-template-columns: 1fr; }
  .grid2-cs { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-stats, .programs-grid, .grid3, .lm-row, .grid4, .hmetrics-grid, .metrics-row, .hiw-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
